MyBB Community Forums

Full Version: Moving my whole forum to a new folder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well, I have my forum in just the root, but how can I transfer everything to /forum/?
Select all the files in root, move to a directory in /forum. And then change your board location in /inc/settings.php and your cookie information. Simple. Smile
(2013-03-08, 01:18 AM)pandaa Wrote: [ -> ]Select all the files in root, move to a directory in /forum. And then change your board location in /inc/config.php and your cookie information. Simple. Smile

How can I change my cookie information?
Specifically find these lines. (btw, I meant settings.php)

$settings['bburl'] = "http://localhost";

$settings['cookiedomain'] = "";
$settings['cookiepath'] = "/";
$settings['cookieprefix'] = "";
So it should look something like this?:
$settings['cookiedomain'] = ".uniquefx.me/forum";
$settings['cookiepath'] = "/forum";
$settings['cookieprefix'] = ".forum";
Cookie prefix doesn't need to be .forum, but it will work. Smile
(2013-03-08, 01:24 AM)pandaa Wrote: [ -> ]Cookie prefix doesn't need to be .forum, but it will work. Smile

Okay, and my bburl says:

$settings['bburl'] = "http://www.uniquefx.me";

Should I switch that to $settings['bburl'] = "http://www.uniquefx.me/forum/";
Yes, that is what your new URL will be!