Also don't forget to double check your index.php file and change the default script if required:
Code:
/**
* Use the CMS as the default script:
*/
require('content.php');
/**
* Use the forum as the default script:
*/
// require('forum.php');
So to use the forum as default remove the // in front and to comment out the CMS add in // in front of the content.php snippet of code

.
New example:
Code:
/**
* Use the CMS as the default script:
*/
// require('content.php');
/**
* Use the forum as the default script:
*/
require('forum.php');