• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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