• 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.

Phpmyadmin database upload issues

Xavier12

Regular Pleskian
Hey guys,

We are having an issue upload a 300mb mysql database to phpmyadmin.. With direct mysql file, t stops and only copies a few tables, stating to reupload to continue (which it doesn't and states that there are pre-existing tables). With zip file, it does the same.. at one point at 504 error occurred.

A customers site is down because of this. Please advise, thanks.
 
Last edited:
Hi UFHH01

Thanks for reaching back quickly. Going the command line route for now as mentioned. A part from that, how can we resolve the issue with phpmyadmin to upload via the console without any issues with php script timeout, 504 issues or part of the tables uploading?

Please advise, thanks
 
Hi Xavier12,

please increase your settings at "fcgid.conf" for your apache webserver from the standard "45" seconds to something like "3600" seconds.
It could be as well a good idea to increase some standard php - settings ( max_execution_time, max_input_time, upload_size, etc. ... in your php.ini's located on your server, to avoid your described issue ).

... or/and add/edit your "config.inc.php" for phpMyAdmin, located at: "/opt/psa/admin/htdocs/domains/databases/phpMyAdmin" ( but be aware that updates/upgrades/patches may re-change your settings! ). The standard settings are:

$cfg['ExecTimeLimit'] = 300;

and you could change it to:​

$cfg['ExecTimeLimit'] = 0;
 
Last edited by a moderator:
Back
Top