|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-06-27 16:52 UTC] tozz at kijkt dot tv
Hello, In my php.ini I've set 'display_errors = Off'. Also safe mode is off by default. In my vhosts (<VirtualHost ip.here>) I add php_admin_value safe_mode 1 for each vhost that has to be restricted with safemode restrictions. This works perfect. However, when I set 'display_errors = On', it doesn't work. Output is not beeing sent to the browser's output. I dont know if this is by design, but it looks like a bug to me. I'm unable to overrule this setting in httpd.conf while I can overrule other configuration options. Bye Tozz PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 04:00:02 2025 UTC |
Hey Yes in php.ini it works fine. But I am unable to overrule this setting in apache.conf E.g. I normally use this for each vhost: <VirtualHost 123.123.123.123> DocumentRoot /website ServerName www.domain.com ServerAlias domain.com php_admin_value safe_mode 1 php_admin_value open_basedir /website </VirtualHost> This works fine, but if I add php_admin_value display_errors on This doesn't work. And it works for all the other settings i've tried.