Hi @ll
This error only occures when "register_globals" is set to off.
What hopefully is set

There's a small tiny error in file: /admin/db_inc.php
*** REPLACE LINE 476 IN FILE /admin/db_inc.php ****
Code:
if ((ini_get(register_globals)) == "0") {
*** WITH ***
Code:
if ((ini_get(register_globals)) == false) {
greets GhostFaceKillaz