Maybe Bug or Error

Socius Decennalis
Decennium
Joined
Mar 14, 2010
Messages
511
Reaction score
27
i've got this error when i replay to others feedback


PHP Warning: mysqli_query(): MySQL server has gone away in ..../includes/class_core.php on line 1393

PHP Warning: mysqli_query(): Error reading result set's header in ..../includes/class_core.php on line 1393

PHP Warning: mysqli_query(): (HY000/2006): MySQL server has gone away in ..../includes/class_core.php on line 1393
 
What is the content you're attempting to post and in what thread?
Looking at docs:
https://dev.mysql.com/doc/refman/5.0/en/gone-away.html
Meaning its the configuration of your MySQL (MariaDB I believe you are using right now). Usually it is caused when packet is too large, means that he tried to post a really huge content.

A possible fix is to increase the maximal packet size limit "max_allowed_packet" in my.cnf file, eg. set max_allowed_packet = 128M or more.

Good luck.
 
Back