千家信息网

phpMyAdmin常见报错的解决方案

发表于:2025-01-29 作者:千家信息网编辑
千家信息网最后更新 2025年01月29日,1、权限过大,提示配置文件不能有写的权限I get this error when I try to access localhost/phpmyadmin:Wrong permissions on
千家信息网最后更新 2025年01月29日phpMyAdmin常见报错的解决方案


1、权限过大,提示配置文件不能有写的权限

I get this error when I try to access localhost/phpmyadmin:

Wrong permissions on configuration file, should not be world writable!

解决办法:

sudo chmod 755 /opt/lampp/phpmyadmin/config.inc.php

OK,success!


2、声明:MySQL和phpMyAdmin不在同一主机

  • 登陆时提示"无法登录MySQL服务器"。

解决方法:

若MySQL和phpMyAdmin不在同一主机,需要修改配置文件phpMyAdmin/libraries/config.default.php中的两项:

//allow login to any user entered server in cookie based authentication 配置是否允许你登陆任何使用cookie登陆的服务器。

$cfg['AllowArbitraryServer'] = true;

//MySQL hostname or IP address

$cfg['Servers'][$i]['host'] = '172.16.0.35';//此项也可不修改

修改后再次登陆phpMySQL时会多出"服务器"一项,在此输入MySQL服务器的IP即可(注意:是http服务器访问MySQL的IP地址):

3、登录后提示"配置文件现在需要一个短语密码":

解决方法:

修改phpMyAdmin/config.inc.php:

$cfg['blowfish_secret'] = 'oimec';//此处的oimec为任意短语,作用cookie认证时作为AES加密算法的密钥


4、登录后提示"phpMyAdmin高级功能尚未完成设置,部分功能激活。":

解决方法:

将Web服务器中phpMyAdmin/sql/create_tables.sql脚本文件从phpMyAdmin中导入执行。

再次登陆phpMyAdmin,查看已无提示,并且,已经创建"phpmyadmin"数据库。




0