Einrichten der PHP-Fehlerprotokollierung
Wenn Sie PHP-Fehler beheben möchten, sollten Sie Ihre PHP-Protokolle überprüfen. Wenn Sie keine PHP-Protokolle überprüfen möchten, richten Sie die Protokollierung wie folgt ein:
Note: For WordPress and Managed WordPress error logging please see Aktivieren Sie den Debug-Modus von WordPress, um Fehler anzuzeigen..
- Sie sollten Ihre Site immer sichern, bevor Sie Änderungen an Ihrer Site vornehmen.
- Suchen Sie Ihre PHP-Initialisierungsdatei .
- Edit the file. (Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting)
- Place the following line in your initialization file:
error_log = /path/to/your/webroot/php_error.log
- error_log ist die PHP-Funktion, die den Webserver anweist, Ihre Protokolle in einer neuen Datei auszugeben.
/path/to/your/webroot/php_error.log
is the path to your new log.
- Make sure to replace
/path/to/your/webroot
with the actual path your hosting account uses. - What is my absolute path? (
Web Hosting (cPanel) / Windows Hosting (Plesk) ). - Erstellen Sie eine Datei namens php_error.log im Webroot Ihres Hostings.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Nächste Schritte
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Weitere Informationen
- Weitere Informationen zu PHP-Fehlerprotokollen finden Sie unter PHP.net .