How are you checking your get vars ?
are you using $_GET ? or $HTTP_GET_VARS
$_GET only works after a certain version of PHP (4.0.1 i think - not sure).
I had a similar problem where my dev server and live server were running different versions of php
If $GET / $POST etc are not available simply try the following
if(!$_GET)
{
$_GET = array($HTTP_GET_VARS);
}
That'll work fine (also consider doing this for all the other super globals)
HTH
GM