php – 为什么codeigniter没有记录错误!

由于某种原因,我无法让错误记录工作,我正在获得死亡的白屏,我希望错误日志能够揭示情况!

我的index.PHP

使用error_reporting(E_ALL);

我还确保system / logs目录具有适当的权限,

如果页面无法加载,如果发生了什么,甚至GET记录错误?如果它不是我有大量的代码,我将不得不搜索语法错误,任何关于如何使PHP错误吐出的建议将有所帮助!

另外,这是我的配置

`
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| If you have enabled error logging,you can set an error threshold to 
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging,Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 1;

/*
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| system/logs/ folder.  Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
`

我系统/日志中的所有内容都是index.html,其中包含403错误.

如果页面由于解析错误而无法加载,那么它将永远不会执行
error_reporting(E_ALL);

所以你的脚本永远不会知道输出错误.编辑您的PHP.ini文件以确保您拥有:

error_reporting = E_ALL
error_log = "/path/to/some/apache/writable/file"

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...