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.

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
Post a Comment