You need to reboot the server, but it is not necessary to turn globals on to get at $PHP_SELF. You can get at it through your code with either of these commands on top of your page:
extract($_SERVER);
OR
$PHP_SELF=($_SERVER['PHP_SELF']);
EDIT: OH, you already DID reboot the server. I dunno 'bout that one then...