Nginx problem can anyone help me ?

1 replies
How can i remove this error ?

2014/05/04 01:20:36 [error] 6012#0: *8803 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined variable: error in /var/www/billing/index.php on line 230" while reading upstream, client: 10.32.5.158, server: localhost, request: "GET /?account=Tx23nBAWVKYq5hw HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "abc.com", referrer: "https://localhost/abc/index.php?account=r5CwaUmXGePdp4D"
#nginx #problem
  • Profile picture of the author tutu8
    It's a minor PHP error. You can either fix the error or turn off error reporting.

    To fix it, right before line 230 in the /var/www/billing/index.php file
    add this
    if (!isset($error)) { $error = ''; }
    {{ DiscussionBoard.errors[9162709].message }}

Trending Topics