Solution to the blank display when accessing phpmyadmin: 1. Unlock the [ob_gzhandler] function ban; 2. Set [$cfg['OBGzip']= FALSE in phpmyadmin's [config.inc.php]; 】.
How to set up a blank space when accessing phpmyadmin:
I always thought that some people would see a blank space when accessing phpmyadmin. At first I thought it was related to the IE version, but it is true that some IE versions will have this problem, but they can't always change browsers, so I debugged it and later found out that php was disabled The reason for ob_gzhandler
.
For some reasons, the ob_gzhandler function was disabled, that is, sending encrypted html was prohibited, and phpmyadmin set up to send this.
This situation occurs as follows:
First, the ob_gzhandler function is disabled in php.ini;
Second, $cfg[ in config.inc.php of phpmyadmin 'OBGzip']= 'auto';
Solution:
One way is to unblockob_gzhandler
Function prohibition
Another way is Set <pre class="brush:php;toolbar:false">$cfg[&#39;OBGzip&#39;]= FALSE;</pre>
config.inc.phpof phpmyadmin Recommended related tutorials: phpmyadmin
The above is the detailed content of What should I do if a blank page appears when accessing phpmyadmin?. For more information, please follow other related articles on the PHP Chinese website!