Hi,
I finally figured out about the MAX Packet Size.
This is actually a MySQL Setting
This solved my issue:
The max_allowed_packet variable can be set simply by running a query, either for a particular session/connection or globally.
However, if you do not change it in the my.ini file (as dragon112 suggested), the value will reset when the server restarts, even if you set it globally.
To set the value for just your session (you can do this even if you are not the administrator):
SET SESSION max_allowed_packet=1073741824;
To set it for everyone, until the server restarts (or they change it for their own session):
SET GLOBAL max_allowed_packet=1073741824;
reference to http://stackoverflow.com/questions/8062 ... cket-size#