MySQL Error 1153

Got a packet bigger than 'max_allowed_packet' bytes

1

Change the my.cnf or my.ini file

set global net_buffer_length=1000000; 
set global max_allowed_packet=1000000000;

Last updated