web-dev-qa-db-ja.com

Nginx-stderrで送信されたFastCGI: "PHPメッセージ:PHP通知:未定義の変数

Ngnixサーバーをインストールして、次のように構成しました。

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name localhost;

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ =404;
            # Uncomment to enable naxsi on this location
            # include /etc/nginx/naxsi.rules
    }

    # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
    #location /RequestDenied {
    #       proxy_pass http://127.0.0.1:8080;    
    #}
    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
    location = / {
      # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
    #       # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #
    #       # With php5-cgi alone:
    #       fastcgi_pass 127.0.0.1:9000;
    #       # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #       deny all;
    #}

}

私はこれらのエラーを受け取ります(私のerror.logからコピーされます):

    *9 FastCGI sent in stderr: "PHP message: PHP Notice:  Undefined variable: confMsg in /usr/share/nginx/html/admin-interface/login.php on line 196" while reading upstream, client: 127.0.0.1, server: localhost, request: "GET /admin-interface/login.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", Host: "localhost"

2015/12/16 00:27:37 [エラー] 952#0:* 9 FastCGIがstderrに送信されました: "PHPメッセージ:PHP通知:未定義のインデックス:/ usr/share /のユーザー名245行目のnginx/html/admin-interface/login.php PHP message:PHP Notice:Undefined index:username in/usr/share/nginx /アップストリームの読み取り中のhtml/admin-interface/login.php on 249 "クライアント、127.0.0.1、サーバー:localhost、リクエスト:" GET /admin-interface/login.php HTTP/1.1 "、アップストリーム:" fastcgi:/ /unix:/var/run/php5-fpm.sock: "、ホスト:" localhost "

Ngnixサーバーを使用してこの環境を構成しようとしていますが、この環境は別のホスティングを使用しても機能します。私のphp.iniでcgi.fix_pathinfo = 0を変更しました

私の構成には何が欠けていますか?

7
ohadsas

errorではなく、-noticeです。

スクリプト/usr/share/nginx/html/admin-interface/login.phpは、その時点では存在しない変数$confMsgにアクセスしています。

php.iniでエラー報告レベルを変更するか(他のスクリプトにも影響し、通知をオフにしたくない場合)、スクリプト内の誤った変数アクセスを修正します。

2番目のソリューションは、$confMsg = '';を初期化するだけでよいので、より簡単です。

6
Daniel W.