I have very strange problem which I can't fix for over a week now. It's about this warning
PHP Warning: Adding option (Name: allow_url_include Value: 0) (17, 1) failed! in Unknown on line 0
I don't have the allow_url_include option set in any of the files or in .htaccess.
On my local version, I don't have such problem
PHP Version 5.3.1
On production machine I got the above error, and version of PHP there is also 5.3.1.
I try to set the option in different ways, but nothing removes the warning
php_flag allow_url_include "yes"
php_flag allow_url_include "1"
php_flag allow_url_include "no"
php_flag allow_url_include "0"
And above 4 examples, but without quotes.
Everything works and I don't see any problems, but I have also
php_flag log_errors "yes"
So in combination with that and the warning from above it turns kinda bad, since it fills my log errors file with those warnings when someone open the site and for me it's hard to lookup in the file for other problems.
Any help is appreciated...
allow_url_include? Enabling it can result in a huge security hole.