
12-30-2002, 02:00 AM
|
|
|
Join Date: Oct 2001
Location: New York
Posts: 1,834
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by Velocd
For those of you having chdir() problems, the only code you should need inside the chdir() is the following:
PHP Code:
chdir("../forums");
require("global.php");
Given that your config.php is located in your public_html folder in a new directory (as the instructions say), but above your forums directory.
If you have the new directory located inside your forums directory, use this:
PHP Code:
chdir("../");
require("global.php");
|
Excellent, works for me
|