Siapkan pencatatan kesalahan PHP
Saat memecahkan masalah kesalahan PHP , Anda mungkin ingin meninjau log PHP Anda. Jika Anda tidak memiliki log PHP untuk ditinjau, gunakan proses berikut untuk menyiapkan pembuatan log:
Note: For WordPress and Managed WordPress error logging please see Aktifkan mode debug WordPress untuk menampilkan kesalahan.
- Anda harus selalu membuat cadangan situs Anda sebelum melakukan perubahan apa pun pada situs Anda.
- Cari file inisialisasi PHP Anda .
- 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 adalah fungsi PHP yang akan memberi tahu server web untuk mengeluarkan log Anda ke file baru.
/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) ). - Buat file bernama php_error.log di webroot hosting Anda.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
Langkah-langkah berikutnya
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
Info selengkapnya
- Untuk informasi selengkapnya tentang log kesalahan PHP, kunjungi PHP.net .