On 7 November 2012 13:50, Robert Schneider <[email protected]> wrote: > I have found out now that the PHP behaviour seems to be odd. For some reason > the $_SERVER variable is Null. If I put an > $any_variable_name_that_you_dont_need = $_SERVER; > at the begin of the script $_SERVER is set and the warning doesn't apprear > anymore.
Hi Robert. Could you check if you have "S" in your variables_order setting in php.ini? If you don't then $_SERVER will not be populated. Check out the docs: http://www.php.net/manual/en/ini.core.php#ini.variables-order Regards, Ivan
