Reputation: 13
I'm trying to import my database via PLESK and still have the same errors:
I tried to enlarge memory_limit and upload_max_filesize in PLESK PHP Settings but it still doesn't work. I've also checked version of my MySQL (5.5.2) because I found it might be not supported by the latest version of Plesk, but it seems to be OK.
I am beginner in such subjects and I really don't know what to do. Please, rescue me :(
Upvotes: 1
Views: 2308
Reputation: 543
Hi Todra,
if you desire to increase the "wait-timeout", you have to define for example in your "my.cnf":
AFTER => [mysqld]
interactive_timeout=60
wait_timeout=60
In addition, you might consider to set as well:
mysql -uadmin -p`cat /etc/psa/.psa.shadow` -e"SET GLOBAL wait_timeout=60; SET GLOBAL interactive_timeout=60"
Upvotes: 2
Reputation: 1211
It is timeout issue. I would suggest increasing wait_timeout in my.cnf
Upvotes: 2