聘我网

新概念招聘3.0

display_errors问题

vote up0vote downstar

php.inidisplay_errors已经为Off,但是phpinfo()输出:

Directive       Local Value  Master Value

display_errors  On           Off

还是显示为On,这是怎么回事,还有哪里可以改变PHP的设置项?

 

1 个答复

vote up0vote downcheck

.htaccess中的php_flag也会改变设置,比如:

<Ifmodule mod_php4.c>
php_value error_log /home/softgoo/__processed_stats/softgoo.com.phplog
php_value upload_max_filesize 2M
php_value max_execution_time  30
php_value max_input_time  60
php_value memory_limit  32M
php_value post_max_size  8M
php_flag register_globals  on
php_flag display_errors  on
php_flag file_uploads  on
php_flag log_errors  on
php_flag output_buffering  on
php_flag register_argc_argv  on
php_flag magic_quotes_gpc   off
php_flag magic_quotes_runtime  off
php_flag magic_quotes_sybase  off
php_flag mysql.allow_persistent  off
php_flag register_long_arrays  on
php_flag allow_url_fopen  on
php_flag cgi.force_redirect  on
php_flag enable_dl  on
</Ifmodule>
<Ifmodule mod_php5.c>
php_value error_log /home/softgoo/__processed_stats/softgoo.com.phplog
php_value upload_max_filesize 2M
php_value max_execution_time  30
php_value max_input_time  60
php_value memory_limit  32M
php_value post_max_size  8M
php_flag register_globals  on
php_flag display_errors  off
php_flag file_uploads  on
php_flag log_errors  on
php_flag output_buffering  on
php_flag register_argc_argv  on
php_flag magic_quotes_gpc   off
php_flag magic_quotes_runtime  off
php_flag magic_quotes_sybase  off
php_flag mysql.allow_persistent  off
php_flag register_long_arrays  on
php_flag allow_url_fopen  on
php_flag cgi.force_redirect  on
php_flag enable_dl  on
</Ifmodule>
链接

您的回答





不是您要找的问题? 浏览其他含有标签 的问题或者 自己问个.