ubuntu – 在stderr中发送的FastCGI:无法打开主脚本

前端之家收集整理的这篇文章主要介绍了ubuntu – 在stderr中发送的FastCGI:无法打开主脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

情况:

服务器A&服务器B安装了相同的Ubuntu 14.04,相同的Nginx版本(1.4.6),相同的虚拟主机(domain.com)和joomla文件夹(rsync-ed从服务器A到B)

但是服务器A只能显示首页,并且会在任何菜单项上显示“未指定文件输入”.

如果我在/ etc / hosts中更改服务器A的IP将在服务器B测试后使用domain.com,则它不会立即失败.只有几分钟后才会出现错误.

Nginx错误日志上有一些消息,如下所示:

  1. 2015/02/23 12:01:57 [error] 15515#0: *260609 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined property: JPagination::$pagesTotal in /var/www/joomla/templates/ashton/html/com_content/featured/default.PHP on line 76" while reading response header from upstream,client: 10.224.202.152,server: www.domain.com,request: "GET / HTTP/1.1",upstream: "fastcgi://unix:/var/run/PHP5-fpm.sock:",host: "www.domain.com"
最佳答案
通过添加“fastcgi_param SCRIPT_FILENAME”解决了这个问题

示例如下

  1. server {
  2. listen 80;
  3. root /var/www/joomla;
  4. index index.PHP index.html index.htm;
  5. server_name www.domain.com;
  6. location / {
  7. try_files $uri $uri/ /index.PHP?q=$request_uri;
  8. }
  9. location ~ \.PHP${
  10. fastcgi_split_path_info ^(.+\.PHP)(/.+)$;
  11. fastcgi_pass unix:/var/run/PHP5-fpm.sock;
  12. fastcgi_index index.PHP;
  13. include fastcgi_params;
  14. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  15. }
  16. }

猜你在找的Nginx相关文章