View Single Post
Old 01-25-2004, 02:27 PM   #13
GhostFaceKillaz
Guest
 
Posts: n/a
Default Solution !!!

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
  Reply With Quote