XF 1.5 Installing second forum?

Sam F

Active member
Installing second forum?

Hi I was told that I could install a second forum?

how is this done?

www.domain dot com/forums/forumname #two/ ?

not sure how to do this?
Please advice.
Thanks
 
Don't forget you can set up "do not use email" as a setting in config.php, so if you clone your site you don't accidentally flood your members with email subscriptions for stuff they can't access.
 
That's covered in the guide:

  • Add the code below to the bottom of your new /test directory /library/config.php file
PHP:
$config['enableMail'] = false;

$config['cookie'] = array(
'prefix' => 'test_',
'path' => '/',
'domain' => ''
);
 
Top Bottom