• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows SQL question about setting max package.

RoHaN-OTs

RoHaN-OTs.com
Joined
Jul 28, 2010
Messages
1,594
Reaction score
82
Location
Sweden
Anyone know what the max package limit is?

Of this; SET GLOBAL max_allowed_packet = 16776192; (example)

Using xampp 1.7.3 if that matters.
 
Yes u dont need it cyko but he asked the max i just ansered the question
Also, change the my.cnf or my.ini file under the mysqld section and
Code:
set max_allowed_packet=100M
( or 16 m whatever )
or you could run these commands in a mysql console connected to that same server:
Code:
set global net_buffer_length=1000000; 
set global max_allowed_packet=1000000000;
( or whatever u need 16m )

:$
 
Last edited:
Back
Top