ฉันต้องการเพิ่มรายละเอียดให้กับคำตอบที่มีอยู่:
# PHP error handling for development servers
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log /full/path/to/file/php_errors.log
php_value error_reporting -1
php_value log_errors_max_len 0
ให้สิทธิ์ 777 หรือ 755 กับไฟล์บันทึกจากนั้นเพิ่มรหัส
<Files php_errors.log>
Order allow,deny
Deny from all
Satisfy All
</Files>
ในตอนท้ายของ. htaccess สิ่งนี้จะปกป้องไฟล์บันทึกของคุณ
ตัวเลือกเหล่านี้เหมาะสำหรับเซิร์ฟเวอร์การพัฒนา สำหรับเซิร์ฟเวอร์ที่ใช้งานจริงคุณไม่ควรแสดงข้อผิดพลาดใด ๆ ต่อผู้ใช้ปลายทาง ดังนั้นการเปลี่ยนธงจอแสดงผลเพื่อปิด
สำหรับข้อมูลเพิ่มเติมโปรดไปที่ลิงค์นี้: Advanced PHP Error Handling ผ่าน htaccess