How to disable error output in php 5.6, the pictures processed by some scripts are not shown, when I had enough in .htaccess to do this before:
php_flag log_errors Off php_flag display_errors Off php_flag display_startup_errors Off Now it does not help anymore and in php.ini I didn’t quite understand how to turn off error output altogether, but in index.php I registered this error_reporting( E_ERROR ) ;
error_reporting(0);,display_errors(false);? - Alexey Shimansky