PDA

View Full Version : Forum as home page


jkcerda
03-22-2010, 03:15 PM
anyway to accomplish that? been getting tons of e-mails since I upgraded, thanks.

mandingo
03-22-2010, 03:37 PM
Check your index.php, the instructions are in there.

jkcerda
03-22-2010, 03:42 PM
Check your index.php, the instructions are in there.

thank you, Ill have a look see.

jkcerda
04-03-2010, 05:27 PM
ok, so I would change


Use the CMS as the default script:
*/

require('content.php');


/**
* Use the forum as the default script:
*/

// require('forum.php');




to


Use the CMS as the default script:
*/

//require('content.php');


/**
* Use the forum as the default script:
*/

require('forum.php');



like this?

borbole
04-03-2010, 05:30 PM
Yes, that should do it.

jkcerda
04-03-2010, 05:32 PM
Yes, that should do it.

thanks.