PHP -foutregistratie instellen
Wanneer je PHP -fouten oplost , moet je je PHP -logboeken bekijken. Als je geen PHP -logboeken hebt om te bekijken, gebruik je het volgende proces om logboekregistratie in te stellen:
Note: For WordPress and Managed WordPress error logging please see Schakel WordPress-foutopsporingsmodus in om fouten weer te geven.
- Je moet altijd een back -up van je site maken voordat je wijzigingen aanbrengt op je site.
- Zoek je PHP -initialisatiebestand .
- 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 is de PHP -functie die de webserver vertelt om je logboeken uit te voeren naar een nieuw bestand.
/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) ). - Maak een bestand met de naam php_error.log in de webroot van je hosting.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Volgende stappen
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Meer informatie
- Ga naar PHP.net voor meer informatie over PHP -foutenlogboeken.