Configura la registrazione degli errori PHP
Quando si risolvono errori PHP , è necessario rivedere i registri PHP. Se non hai registri PHP da rivedere, utilizza la seguente procedura per configurare la registrazione:
Note: For WordPress and Managed WordPress error logging please see Abilita la modalità di debug in WordPress per visualizzare gli errori.
- È sempre necessario eseguire il backup del sito prima di apportare modifiche al sito.
- Individua il file di inizializzazione PHP .
- 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 è la funzione PHP che indicherà al server web di inviare i log in un nuovo file.
/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) ). - Crea un file denominato php_error.log nella radice web del tuo hosting.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Passaggi successivi
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Altre informazioni
- Per ulteriori informazioni sui registri di errore PHP, visita PHP.net .