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");