Konfigurer PHP -feillogging
Når du feilsøker PHP -feil , må du gjennomgå PHP -loggene dine. Hvis du ikke har PHP -logger å gjennomgå, bruker du følgende prosess for å konfigurere logging:
Note: For WordPress and Managed WordPress error logging please see Aktiver feilsøkingsmodus for WordPress for å vise feil.
- Du bør alltid sikkerhetskopiere nettstedet ditt før du gjør endringer på nettstedet ditt.
- Finn PHP -initialiseringsfilen .
- 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 er PHP -funksjonen som vil fortelle webserveren til å sende ut loggene til en ny fil.
/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) ). - Opprett en fil med navnet php_error.log i i nettroten til hosting.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Neste trinn
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Mer informasjon
- For mer informasjon om PHP -feillogger , besøk PHP.net.