web-dev-qa-db-ja.com

stderrで送信されたFastCGI:プライマリスクリプトを開けません

状況:

サーバーAとサーバーBに同じUbuntu 14.04、同じnginxバージョン(1.4.6)、同じ仮想ホスト(domain.com)、joomlaフォルダー(サーバーAからBにrsync-ed)をインストールしました

しかし、サーバーAはそのフロントページを表示することしかできず、どのメニュー項目にも「ファイル入力が指定されていません」と表示されます。

/ etc/hostsを変更して、サーバーBのテスト後にサーバーAのIPがdomain.comを使用するようにした場合、すぐには失敗しません。数分後にのみ、そのエラーが表示されます。

Nginxのエラーログには、次のようなメッセージがいくつかあります。

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" 
3
grepmaster

「fastcgi_param SCRIPT_FILENAME」を追加して解決しました

以下の例

server {
    listen 80;
    root /var/www/joomla;
    index index.php index.html index.htm;
    server_name www.domain.com;

    location / {
        try_files $uri $uri/ /index.php?q=$request_uri;
    }

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}
5
grepmaster