path_error_log
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
path_error_log [2009/08/19 09:11] – angelegt ag | path_error_log [2020/06/24 14:33] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
---|---|---|---|
Zeile 19: | Zeile 19: | ||
display_startup_errors = off | display_startup_errors = off | ||
====== Welche Fehlermeldungen werden in das Log geschrieben ====== | ====== Welche Fehlermeldungen werden in das Log geschrieben ====== | ||
- | ; E_ALL - All errors and warnings (doesn' | + | **E_ALL**\\ |
- | ; E_ERROR | + | All errors and warnings (doesn' |
- | ; E_WARNING | + | \\ |
- | ; E_PARSE | + | **E_ERROR**\\ |
- | ; E_NOTICE | + | fatal run-time errors\\ |
- | ; from a bug in your code, but it's possible that it was\\ | + | \\ |
- | ; intentional (e.g., using an uninitialized variable and\\ | + | **E_WARNING**\\ |
- | ; relying on the fact it's automatically initialized to an\\ | + | run-time warnings (non-fatal errors)\\ |
- | ; empty string)\\ | + | \\ |
- | ; E_STRICT - run-time notices, enable to have PHP suggest changes\\ | + | **E_PARSE**\\ |
- | ; to your code which will ensure the best interoperability\\ | + | compile-time parse errors\\ |
- | ; and forward compatibility of your code\\ | + | \\ |
- | ; E_CORE_ERROR | + | **E_NOTICE**\\ |
- | ; E_CORE_WARNING | + | run-time notices (these are warnings which often result\\ |
- | ; initial startup\\ | + | from a bug in your code, but it's possible that it was\\ |
- | ; E_COMPILE_ERROR | + | intentional (e.g., using an uninitialized variable and\\ |
- | ; E_COMPILE_WARNING | + | relying on the fact it's automatically initialized to an\\ |
- | ; E_USER_ERROR | + | empty string)\\ |
- | ; E_USER_WARNING | + | \\ |
- | ; E_USER_NOTICE | + | **E_STRICT**\\ |
- | ;\\ | + | run-time notices, enable to have PHP suggest changes\\ |
- | ; Examples: | + | to your code which will ensure the best interoperability\\ |
- | ;\\ | + | and forward compatibility of your code\\ |
- | ; | + | \\ |
- | ;\\ | + | **E_CORE_ERROR**\\ |
- | ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT\\ | + | fatal errors that occur during PHP's initial startup\\ |
- | ;\\ | + | **E_CORE_WARNING**\\ |
- | ; | + | warnings (non-fatal errors) that occur during PHP' |
- | ;\\ | + | initial startup\\ |
- | ;error_reporting = E_ALL & ~E_NOTICE\\ | + | \\ |
- | ;\\ | + | **E_COMPILE_ERROR**\\ |
- | ; | + | fatal compile-time errors\\ |
- | ;\\ | + | \\ |
- | ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR\\ | + | **E_COMPILE_WARNING**\\ |
- | ;\\ | + | compile-time warnings (non-fatal errors)\\ |
- | ; | + | \\ |
- | ;\\ | + | **E_USER_ERROR**\\ |
+ | user-generated error message\\ | ||
+ | \\ | ||
+ | **E_USER_WARNING**\\ | ||
+ | user-generated warning message\\ | ||
+ | \\ | ||
+ | **E_USER_NOTICE**\\ | ||
+ | user-generated notice message\\ | ||
+ | \\ | ||
+ | Examples: | ||
+ | Show all errors, except for notices and coding standards warnings\\ | ||
+ | error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT\\ | ||
+ | \\ | ||
+ | Show all errors, except for notices\\ | ||
+ | error_reporting = E_ALL & ~E_NOTICE\\ | ||
+ | \\ | ||
+ | Show only errors\\ | ||
+ | error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR\\ | ||
+ | \\ | ||
+ | Show all errors and warnings | ||
'' | '' | ||
**php.ini**\\ | **php.ini**\\ |
path_error_log.1250673065.txt.gz · Zuletzt geändert: 2020/06/24 14:33 (Externe Bearbeitung)