
January 18th, 2013, 12:28 PM
|
 |
Contributing User
|
|
|
|
Unfortunately this quick fix didn't work, but at least I know why it's happening, I think.
I went so far as to do this at the top of my script:
PHP Code:
Original
- PHP Code |
|
|
|
$_GET['init'] = 'JIT INIT';
I've also tried:
PHP Code:
Original
- PHP Code |
|
|
|
ini_set('auto_globals_jit', 'Off');
As well as going into the php.ini file turning it off there and restarting the server. No difference. I also have a var_dump($_GET); and that shows that there is stuff in the $_GET array.
Last edited by WrinkledCheese : January 18th, 2013 at 12:39 PM.
|