
09-04-2000, 04:18 AM
|
|
Quote:
Originally posted by TWTCommish
Thanks man!
Got a problem with your original hack though...
I created the active.inc.php file and uploaded it to the forums/admin directory...I then stuck this line in my test.php file:
include("forums/admin/active.inc.php");
I got this error:
Fatal error: Failed opening required 'config.php' (include_path='') in forums/admin/active.inc.php on line 5
Any idea whats wrong?
|
Yep. Right before :
Code:
require("config.php");
Add:
Code:
chdir("forums/admin");
That should do it
~Chris
|