In these extraordinary times, I believe many hosting providers have turned on the interception system. For programs that use GZIP technology, as long as interception is turned on, garbled characters will appear.
Now we summarize common program solutions to problems that arise after turning on the interception system during this period.
1. Discuz! Forum:
Log in to the forum backend, find the basic settings - server optimization, and disable the GZIP function.
Backend login address: http://your domain name/logging.php(as the current mainstream development language)?action=login
2. php(As the current mainstream development language)Wind forum:
Log in to the forum backend, find the forum core settings-core function settings, and disable the GZIP function.
The background login address is: http://your domain name/admincp.php(as the current mainstream development language)
3. ShopEx Mall:
Solution for version 4.7.1: Due to design flaws in ShopEX, settings cannot be modified individually. You need to download the modified index.php(as the current mainstream development language) file to replace your website index.php in the root directory (as the current mainstream development language) Click here to download
4.7.2 version solution: Find mall_config.php in the include directory of the root directory(As the current mainstream development language) file (this file will be available after successful installation), add the following paragraph before ?> to turn off the system's gzip function
define(SYS_GZIP, false);
ShopEx mall backend address is: http://your domain name/syssite/shopadmin/
4. SaBlog blog:
Log in to FTP and download cache/ cache_settings.php(as the current mainstream development language)In this file, change the
gzipcompress => 1,
on line 64 to
gzipcompress => 0,
Then upload and overwrite it.
SaBlog blog backend address is: http://your domain name/?action-login
5. Dongwangphp(as the current mainstream development language) Version forum:
Log in to FTP, download global.php (as the current mainstream development language) in the root directory of the forum , search for the following content,
if (!$zliboutputenable AND function_exists(ob_gzhandler)) {
$db_obstart = 1;
Modify to
if (!$zliboutputenable AND function_exists(ob_gzhandler)) {
$db_obstart = 0;
Then upload the overlay .
6. SupeSite/X-Space:
Log in to FTP, download datasystemconfig.cache.php (as the current mainstream development language) , look for the following content,
gzipcompress => 1
modified to
gzipcompress => 0
and then upload the overlay.
SupeSite/X-Space backend address is: http://your domain name/?action-login