Home  >  Article  >  Database  >  What should I do if a blank page appears when accessing phpmyadmin?

What should I do if a blank page appears when accessing phpmyadmin?

coldplay.xixi
coldplay.xixiOriginal
2020-07-21 15:22:146176browse

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]; 】.

What should I do if a blank page appears when accessing phpmyadmin?

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_gzhandlerFunction prohibition

Another way is Set <pre class="brush:php;toolbar:false">$cfg[&amp;#39;OBGzip&amp;#39;]= FALSE;</pre>

in
config.inc.php

of 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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn