MyBB Community Forums

Full Version: I need help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I want to covert portal.php as index.php. I want to put portal.php outside of the forums directory. So how can i do it.

Please help me
Move portal.php to wherever you want and also rename it to whatever you want. (index.php)

Then you need to open it up and find the line:
// set the path to your forums directory here (without trailing slash)
$forumdir = "./";

You need to change the value of $forumdir to the (relative) path to your forums

For example if your forums were inside /forums/ and you had your portal at /index.php the line would read:
$forumdir ="./forums/";

Regards,
Chris