标签:分享图片 open RoCE ble epo 位置 info adl loaded
查看php配置文件位置/usr/local/php/bin/php -i|grep -i "loaded configuration file"
需要查看那个站点的配置文件,去站点的目录下,创建phpinfo();
具体:
<?php
phpinfo();
date.timezone #定义时区,Asia/Shanghai
disable_functions #安全函数
eval,assert,popen,passthru,escapeshellarg,escapeshellcmd,passthru,exec,system,chroot,scandir,chgrp,chown,escapeshellcmd,escapeshellarg,shell_exec,proc_get_status,ini_alter,ini_restore,dl,pfsockopen,openlog,syslog,readlink,symlink,leak,popepassthru,stream_socket_server,popen,proc_open,proc_close
error_log, log_errors, display_errors, error_reporting #危险的函数,以逗号隔开,生产中,就禁止phpinfo
这种提示,代表被禁掉
会将错误信息,显示在页面上,如上图所示,会暴露目录,需要改成off,页面会变成空白
是否打开错误日志
定义错误日志生成路径![
定义error_log级别,生产中,一般使用E_ALL & ~ E_NOTICE
open_basedir #安全选项,各个网站目录的隔离
php_admin_value open_basedir "/data/wwwroot/111.com:/tmp/" #虚拟主机配置文件。可以针对不同的虚拟主机进行配置
标签:分享图片 open RoCE ble epo 位置 info adl loaded
原文地址:http://blog.51cto.com/13451715/2319598