Disable Gzip in vbulletin

Chris S

Retired
Messages
2,055
Reaction score
1
Points
38
Disable Gzip in Vbulletin

Step 1. Open phpMyAdmin in your web browser

Step 2. Run this code on your vbulletin table

Code:
UPDATE `setting` SET `value` = '0' WHERE  `varname` = 'gziplevel' LIMIT 1 ;

Step 3. Browse to this page
Code:
http://yourdomain.com/forum/admincp/options.php?do=options&dogroup=http
Look for
Code:
GZIP HTML Output

And turn it to the off position
 

Chris S

Retired
Messages
2,055
Reaction score
1
Points
38
Add On. In the topic where i got this from I was told that didn't work

So here is something else
Colin F at vbulliten.com said:
In phpMyAdmin, goto your datastore table and edit the options row.
Find:
Code:
"gzipoutput";s:1:"1";

and change it to
Code:
"gzipoutput";s:1:"0";

You'll still have to change the setting in your vBulletin Options afterwords though.
 

echo_unlimited

Active Member
Messages
1,266
Reaction score
0
Points
36
I know this is an old thread, but out of interest why would you wana disable gzip?
 

James

Banned
Messages
1,062
Reaction score
0
Points
0
becuse you gave to, for vbull to run on the free server.
Its not a problem for u as ur on paid.
 

Media

New Member
Messages
2
Reaction score
0
Points
0
Do you mean we have to disable GZIP if we are running on a FREE one??
 
Top