我在无法访问错误日志的服务器上运行PHP脚本。我可以在运行时(或使用.htaccess)更改日志位置,因此它存储在我可以访问的其他目录中吗?
如果无法做到这一点,您会推荐其他解决方案吗? (我无法在浏览器窗口中看到错误,因为从远程Web服务调用脚本。)
答案 0 :(得分:4)
假设您拥有php.ini
的权限,则可以在root .htaccess中使用此代码:
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_value error_log /path/to/PHP_errors.log