• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Database Migration from MAMP failing

Bram

New Pleskian
Hello,

A Wordpress website i have been working on in MAMP and on my personal hosting needs to go live on a Plesk server. However the Plesk server was outdated so data migration was doomed to fail. Now after they got their plesk server up to date i am still failing to import the database. Only a few tables from a plugin called Revolution slider are getting imported.

There must be something obvious i am missing and any help is much appreciated.

Kind regards,

Bram
 
Hi Bram,

unfortunately, you don't provide informations how you were trying to import the database. A basic command from the command line would be:

  1. Login as root over ssh
  2. use the command :
mysql -uadmin -p`cat /etc/psa/.psa.shadow` -D database_name < database_name.sql

or

mysql -uadmin -p`cat /etc/psa/.psa.shadow` --database=database_name < database_name.sql

( where "database_name.sql" should be either located at the current path, when you perform the command, or you choose the complete path, where "database_name.sql" is located on your server... i.e. "/var/www/vhosts/YOUR-DOMAIN.COM/httpdocs/db-upload/database_name.sql" )
 
Back
Top