MyBB Community Forums

Full Version: Change forum/admin address
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Our current CP Admin URL is ..../fourm/admin. What need to be done to change admin to a different address.
Use a FTP program to find your MyBB installation, rename the "admin" directory to whatever name you'd like. Next go into the "inc" directory to edit the config.php file.

In it find:

$config['admin_dir'] = 'admin';

Replace 'admin' with your new admin directory name. Example:

$config['admin_dir'] = 'mynewdirectoryname';

Save changes.
(2012-03-11, 07:06 AM)Xstrike Wrote: [ -> ]Use a FTP program to find your MyBB installation, rename the "admin" directory to whatever name you'd like. Next go into the "inc" directory to edit the config.php file.

In it find:

$config['admin_dir'] = 'admin';

Replace 'admin' with your new admin directory name. Example:

$config['admin_dir'] = 'mynewdirectoryname';

Save changes.

It's successfully done. Thanks.