+ Reply to Thread
Results 1 to 1 of 1
-
Administrator
- Join Date
- Mar 2010
- Posts
- 74
Mysql Error and 'max_allowed_packet'
Issue:
Got a packet bigger than 'max_allowed_packet' bytes
MySQL default limit for the allowed packet is set to 16M. if you need to insert the record which is larger than 16MB in size you have to modify the mysql global variable accordingly.
Fix will be
Edit file in /etc/my.cnf and added the following lines,
[mysqld]
max_allowed_packet = 30M


LinkBack URL
About LinkBacks



Reply With Quote