Posts

Showing posts from February, 2014

File not Found error in Plesk while exporting database through PHPMyAdmin

Issue: Sometimes, exporting database from WebAdmin in Plesk, you might end up with following error: File not Found can’t find the file at https://xx.xx.xx.xx:8443/domains/databases/phpMyAdmin/export.php  Fix: The issue occurs when you try to export large size database with low "memory_limit" in your server. You need to increase the "memory_limit" module in the 'php.ini' file, in order to fix the issue. You can follow the steps mentioned below to increase the "memory_limit" value in your server: 1) Login to the server as root user. 2) Go to /usr/local/psa/admin/conf/ # cd /usr/local/psa/admin/conf/ 3) Open php.ini file in any of your editor # vi php.ini 4) Increase the memory_limit say 512MB and save the file 5) restart plesk service # /etc/init.d/psa restart Try exporting the database now. The issue should have fixed. :)