Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

5
  • Thank you! I use a production version of php.ini in which display_errors is Off. Commented Feb 9, 2010 at 8:14
  • 1
    I was using a PHP-Fastcgi script so when I changed to php-fpm recently. I didn't notice that the php.ini changed to FPM's version. Their version has dispaly_errors = Off so all my pages started coming up blank when an error happened! Commented Aug 22, 2011 at 20:00
  • 7
    do not forget reset php-fpm after that. (sudo service php-fpm restart) Commented Apr 25, 2012 at 8:11
  • 1
    Also don't forget to change error_level to E_ALL, and if you don't have php-fpm as a service to restart it just do sudo /etc/init.d/php5-fpm restart Commented Mar 26, 2013 at 7:52
  • Also check your PHP version and the version mentioned in fastcgi.conf file. Commented Feb 26, 2022 at 10:15