Exporting / Migrating out a Drupal database "correctly" via "new version" of PHPMyAdmin -


i've made screenshot of settings; have of right if intend on migrating drupal on separate server? plan import again through ssh preferably may use phpmyadmin.

screenshot

if have ssh access, highly recommend use mysqldump command export , use mysql command import. have bad experiences of using phpmyadmin export , import drupal db (e.g timeout issue). note mysqldump/mysql lot more faster.

export:

mysqldump -u=xxx -p=xxx mydb > dump.sql  

import:

mysql -u=xxx -p=xxx mydb < dump.sql 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -