duancong7573 2015-02-23 16:56
浏览 45
已采纳

phpMyAdmin显示白页,没有错误

Im using FreeBSD with nginx, php & mysql. Everything fine until i decided to upgrade my php to 5.6. Then i installed phpMyAdmin from ports. My problem is phpMyAdmin won't show up. It displays white screen with no error, even i set error to be displayed in php.ini. Websites & mysql is running well. I can even echoed out something in index.php (phpmyadmin folder). Here is my config.inc.php setting:

$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;
  • 写回答

1条回答 默认 最新

  • duanhuihui2705 2015-02-24 05:06
    关注

    Make sure mbstring is installed and loaded in php.ini

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?