How To Fix

09/27/2016 12:10 ballza#1
[Only registered and activated users can see links. Click Here To Register...]
09/27/2016 12:36 Veni/Marius#2
Quote:
Originally Posted by ballza View Post
[Only registered and activated users can see links. Click Here To Register...]
You have to change the Max allowed packets for it. Had the Same issue sometimes.

Just search on Google "mysql Max allowed packet error" than you should find something
09/27/2016 15:10 ballza#3
Fix linux(ContOS 6.8)
09/27/2016 15:52 EEOI#4
mysql -u root -p
set global max_allowed_packet=100000000;
09/28/2016 15:26 Lee Ki-Hwan#5
If you trying to import a database on Centos i would suggest using this command:
mysql -u username -p DATA-BASE-NAME < data.sql
10/02/2016 08:21 ballza#6
Thank all