hmmm, change this line:
[php]
$_SERVER['REQUEST_URI'] = substr($_SERVER['PHP_SELF'],1 );
[php]
to:
[php]
$_SERVER['REQUEST_URI'] = $_SERVER['PHP_SELF'];
[php]
yes, if you run into this issue again, you can reuse the code i provided. the problem is that your server does not define the REQUEST_URI server variable, this code is used to define it manually.