I am hosted on a shared linux server with storminternet.co.uk. Recently, they rebooted the server and the errors seem (to me) to have appeared more often since the reboot. After contacting storminternet, they said 'This seems to be problem with your script execution time and or your script is closing mysql connection.'
Now I haven't changed any script execution time or altered anything else since I installed v.1.5.5.1 back in August last year. I have a suspicion that this is storminternet's problem but I don't really know enough about SQL or PHP to know what to say to them.
Am I correct in thinking this is a hosting issue or is there something wrong with my php.ini file (I have copied the contents below)?
This error is beginning to cause problems, as the other day I was adding products to my store and it kept timing out and throwing up the error. It took forever to get 4 products added to the store.
Error:
Code: Select all
PHP Notice: Error: MySQL server has gone away<br />Error No: 2006<br />SELECT * FROM `language` WHERE status = '1' in /home/mydomain/public_html/system/database/mysql.php on line 50
Code: Select all
magic_quotes_gpc = Off;
register_globals = Off;
default_charset = UTF-8;
memory_limit = 64M;
max_execution_time = 36000;
upload_max_filesize = 999M;
safe_mode = Off;
mysql.connect_timeout = 20;
session.use_cookies = On;
session.use_trans_sid = Off;
session.gc_maxlifetime = 172800;
allow_url_fopen = on;
;display_errors = 0;
;error_reporting = E_ALL;
max_input_vars = 9999