Home > Database > phpMyAdmin > body text

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

coldplay.xixi
Release: 2020-07-21 15:22:14
Original
6194 people have browsed it

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 <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">$cfg[&amp;#39;OBGzip&amp;#39;]= FALSE;</pre><div class="contentsignin">Copy after login</div></div>

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template