candir() has been disabled for security reasons
解决办法:
- 进入到php的配置目录,
编辑php.ini
cd /usr/local/php/etc
vi php.ini - 搜索scandir (/scandir )后删掉,保存退出。
- 重启nginx和php-fpm。再刷新查看,OK啦!
service nginx restart
service php-fpm restart
file_put_contents ......... permission denied
解决方法:
-
chmod 777 runtime -R (-R很重要)
将网站根目录设置到public目录下,网站白屏500错误
解决方法:
- lnmp1.2以上需要进入以下链接
https://lnmp.org/faq/lnmp-vhost-add-howto.html#user.ini
执行:LNMP 1.4上也可以直接使用lnmp1.4/tools/ 目录下的 ./remove_open_basedir_restriction.sh 进行移除。
打开网址,显示404
解决方法:
- 在网站.conf文件添加 include wordpress.conf;
- 重启nginx service nginx restart
参考文档:https://lnmp.org/faq/lnmp-vhost-add-howto.html (lnmp官网)