Wrong permissions on configuration file, should not be world writable问题解决办法

今天在linux VPS服务器上安装配置完vsftpd之后,ftp根目录指定到网站根目录/home/www/,权限给以777,之后再次访问http://SERVER_IP_ADDRESS/phpMyAdmin,无法打开phpMyAdmin出现这样的提示:
Wrong permissions on configuration file, should not be world writable!
查资料一看,原来phpMyAdmin要在755权限下才能正常访问(777权限不可以正常访问) 。
【Wrong permissions on configuration file, should not be world writable问题解决办法】解决办法:
SSH(putty 6.0);->;cd /home/www/;->;chmod -R 755 phpMyAdmin;->;OK

    推荐阅读