Php error reporting: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Laemmi (Diskussion | Beiträge) Die Seite wurde neu angelegt: „Category:PHP == Script == error_reporting(E_ALL); ini_set('display_startup_errors', 'on'); ini_set('display_errors', 'on'); ini_set('html_errors', 'on'…“ |
(kein Unterschied)
|
Aktuelle Version vom 22. September 2021, 19:36 Uhr
Script
error_reporting(E_ALL);
ini_set('display_startup_errors', 'on');
ini_set('display_errors', 'on');
ini_set('html_errors', 'on');
htaccess
php_flag display_startup_errors on php_flag display_errors on php_flag html_errors on
.user.ini
error_reporting = E_ALL display_startup_errors = On display_errors = On html_errors = On