我的共享托管服务拒绝在php.ini中查看PHP中的错误。
因此,我想编写自己的php.ini文件并将其放在我自己的子目录中。这可能吗?
我试过这个教程无济于事。
http://www.washington.edu/itconnect/web/publishing/php-ini.html#create
PHP只是不在我的目录中查找php.ini文件。它仍然坚持/etc/php5/cgi/php.ini中的那个。
答案 0 :(得分:4)
您可以尝试使用.htaccess文件启用错误记录/报告。
的.htaccess
# enable PHP error logging
php_flag log_errors on
php_value error_log /home/path/public_html/domain/PHP_errors.log
答案 1 :(得分:2)
您可以使用给定配置选项的ini_set
到set the value。
答案 2 :(得分:1)
确保在系统中php.ini以下设置是否启用用户定义的INI文件:
;;;;;;;;;;;;;;;;;;;;
; php.ini Options ;
;;;;;;;;;;;;;;;;;;;;
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
user_ini.filename = ".user.ini"
; To disable this feature set this option to empty value
;user_ini.filename =