这告诉我一些日志文件在windows\temp中的位置:
<?php
phpinfo();
?>
然而,当我打开该文件时,我得到:
[06-Feb-2013 11:01:34] PHP Warning: PHP Startup: Unable to load dynamic library 'C:\Program Files (x86)\PHP\ext\php_mssql.dll' - The specified module could not be found.
in Unknown on line 0
[06-Feb-2013 11:04:37
在php中使用时,我已经将下面的检查放在我的.php文件中的某个地方
AbcController.php
if(isset($_COOKIE['auth'])){
//server side logging code
//...some code here
但是,当fetching the Access logs for AbcController.php with 'auth' cookie集(grep 'auth')时,服务器端计数与访问日志计数不同。请帮帮我,因为这是我搞不懂的。
(Access Log Count > Ser
当我在ProcessMaker中运行一个进程时,我收到了错误消息"Fatal error in trigger",然后我检查了错误日志,发现了以下内容
PHP Parse error: syntax error, unexpected '}' in /opt/processmaker/workflow/engine/classes/class.pmScript.php(216) : eval()'d code on line 9.
有人能告诉我我该怎么做吗?非常感谢你的帮助。代码如下:
public function executeAndCatchEr
我在IIS上有个网站。该网站运行PHP。当PHP中发生错误时,该错误应该出现在Windows中(因为php.ini中的D1设置设置为syslog)。
如果匿名用户使用IUSR帐户,则错误不会出现在事件日志中。如果匿名用户使用Application Pool Identity帐户,则错误将出现在事件日志中。
为什么Application Pool Identity帐户可以写入事件日志,而不能写入IUSR帐户呢?请注意,PHP并不是在写入自定义源。还请注意,IUSR帐户位于IIS_IUSRS帐户中,该帐户可以完全访问Windows的应用程序源。