Re: [PHP-INSTALL] auto_globals_jit breaks $_SERVER var

2006-08-15 Thread Rasmus Lerdorf
Peter Hodge wrote: Hi, Try: There is. You specify which ones you want with the variables_order setting in the ini file. -Rasmus

Re: [PHP-INSTALL] auto_globals_jit breaks $_SERVER var

2006-08-15 Thread Peter Hodge
Hi, Try: wrote: > I have the following in my php.ini: > register_globals = Off > register_long_arrays = Off > register_argc_argv = Off > auto_globals_jit = On > > The following PHP code prints nothing: > $webroot = $_SERVER['DOCUMENT_ROOT']; > $server = $_SERVER["HOST"]; >