How can I export a database using phpMyAdmin?

Log into phpMyAdmin from your Control Panel->Database  Manager section using your Database Username and Database Password. Once you are inside the phpMyAdmin application click on the Export link and choose to export the database in SQL file. Last you should click...

How can I export a database using SSH?

You need to create an SSH account from your Control Panel > Hosting Tools > SSH Manager section. To export a database use your configured SSH account by executing the following command through SSH: mysqldump -h [DB HOST] -u [DB USER] -p[DB PASS] [DB NAME] >...

How to import a database using phpMyAdmin?

Log into phpMyAdmin from your Control Panel -> Website Manager section using your Database Username and Database Password. Once you are inside the phpMyAdmin click the import button and select the database which you would like to import. Note: You might have to...

How can I import a database using SSH?

You need to create an SSH account from your Control Panel > Hosting Tools > SSH Manager section. Your database backup/dump can be imported using your configured SSH account by executing the following command through SSH: mysql -h [DB HOSTNAME] -u [DB USERNAME]...