The Linux system I use, when using phpmyadmin today, an error message appeared: Wrong permissions on configuration file, should not be world writable!
After checking the information, it turns out that phpMyAdmin needs to be under 755 permissions to work properly (777 does not work) ).
So here comes the solution:
cd to the upper level directory of phpMyAdmin,
The code is as follows
|
Copy code
|
||||
chmod -R 755 phpMyAdmin
| Used in my linux system
http: //www.bkjia.com/PHPjc/632180.html