South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
<?php
phpinfo()
?>
php_admin_flag display_errors on
php_admin_value error_reporting 6143
If you can use a .htaccess file (should do with wordpress), you can add the following:
Code:php_admin_flag display_errors on php_admin_value error_reporting 6143
If that doesn't cause a bunch of errors to show up on the screen, PHP is probably segfaulting.
Remember to remove those settings again - they can cause information disclosure if left in place.
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
// Report all PHP errors
error_reporting(-1);
// Same as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);