今天遇到 一个问题现象:
安装完毕PHP之后,执行phpinfo() 发现页面无法打开
查看apache的error.log信息,发现报错:
[Sun Apr 25 13:40:37 2010] [error] [client 192.168.0.145] PHP Warning: phpinfo() has been disabled for security reasons in /usr/local/apache2/htdocs/index.php on line 3
[Sun Apr 25 13:40:39 2010] [error] [client 192.168.0.145] File does not exist: /usr/local/apache2/htdocs/favicon.ico
这个错误很少见,phpinfo尽然无法执行,这样我都无法判断服务器php版本。头痛的
问题原因:
由于在php.ini中disable了 phpinfo 函数,所以导致了这个问题,disable是为了安全性考虑。只需要打开就可以了。
解决办法:
打开/etc/php.ini 文件
修改:
;disable_functions = phpinfo,passthru,exec,system,popen,chroot,escapeshellcmd,escapeshellarg,shell_exec,proc_open,proc_get_status,ini_restore
为:
disable_functions =
重新启动apache就可以了