当我去PhpMyAdmin的index.php时,我总是得到一个白色屏幕。当我回应"你好"时,它出现在屏幕上。文件存在,没有错误。配置文件:
<?php
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '***';
$cfg['Servers'][$i]['password'] = '***';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Servers'][$i]['controluser'] = 'DBName';
$cfg['Servers'][$i]['controlpass'] = 'DBPass';
$cfg['PmaAbsoluteUri'] = 'http://kennemerboeken.nl/phpadmin/';
$cfg['SendErrorReports'] = 'always';
$cfg['Servers'][$i]['pmadb'] = 'DBName';
$cfg['ServerDefault'] = 'DBName';
?>
答案 0 :(得分:0)
问题在于它正在将主体标签的样式设置为“ display:none”。通过将以下配置添加到路径C:\ wamp \ apps \ phpmyadmin4.1.14中的文件 config.inc.php 或任何phpmyadmin安装路径中,可以解决此问题。
$ cfg ['AllowThirdPartyFraming'] = true;
答案 1 :(得分:0)
PhpMyadmin应用程序没有日志文件,但是您可以执行以下操作: Ih应用程序文件夹中存在一个php脚本,该脚本在执行时将返回带有您发现的错误的结果。 在Ubuntu Server上,文件位于:
/usr/share/phpmyadmin/error_report.php
然后您必须输入该文件夹并运行
php error_report.php
这将返回Phpmyadmin所具有的错误,大多数情况下,它们是配置文件 config.inc.php
中的错误