Konfigurer PHP -fejllogning
Når du foretager fejlfinding på PHP -fejl , skal du gennemgå dine PHP -logfiler. Hvis du ikke har PHP -logfiler til gennemgang, skal du bruge følgende proces til at konfigurere logning:
Note: For WordPress and Managed WordPress error logging please see Aktivér fejlfindingstilstand i WordPress for at få vist fejl.
- Du bør altid sikkerhedskopiere dit site, før du foretager ændringer på dit site.
- Find din PHP -initialiseringsfil .
- 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 den PHP -funktion, som fortæller webserveren at outputte dine logfiler 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) ). - Opret en fil med navnet php_error.log i webroot'en til din hosting.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Næste trin
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Flere oplysninger
- Du kan få flere oplysninger om PHP -fejllogfiler på PHP.net.