php项目由apache转nginx遇到的坑

今天在把项目由apache升级到nginx时总报错

 FastCGI sent in stderr: "PHP message: PHP Warning:  require(): open_basedir restriction in effect

上网搜了资料让我去改php.ini里面的open_basedir  实测无效

然后去改nginx下虚拟域名的配置文件,加了一行open_basedir  实测还是无效

然后去改nginx下的fastcgi.conf 

里面有一行

fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";

 

我把这行注释了,不行。。。。。

 

最后改为fastcgi_param PHP_ADMIN_VALUE "open_basedir=";

这样就可以,爬坑留念。。

 

 

顺便存一下折腾了一天的几个命令

vim /usr/local/php/etc/php.ini
service php-fpm restart
service nginx restart

你可能感兴趣的:(php项目由apache转nginx遇到的坑)