• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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