Log in

View Full Version : How to remove Home completely?


dvL-den
10-10-2011, 10:10 PM
Hi.
How can I remove vBulletin home completely?
I removed it only from navbar, but still its available for access.

If I type my domain name it opens up that home page directly and not /forum.php

So what I need is, removing home page and making forum.php as main page on load.

Help me please as soon as possible. Thank you.

Lynne
10-10-2011, 11:37 PM
Disable the vBulletin CMS Product under Plugins & Products > Manage Products.

HMBeaty
10-11-2011, 04:00 AM
Also, edit your index.php file and change:
require('content.php');
And
// require('forum.php');
To:
// require('content.php');
And
require('forum.php');

dvL-den
10-11-2011, 04:59 PM
Disable the vBulletin CMS Product under Plugins & Products > Manage Products.

Done and it works perfectly. Thank you.


Also, edit your index.php file and change:
require('content.php');
And
// require('forum.php');
To:
// require('content.php');
And
require('forum.php');

I don't understand HMBeaty. I guess you mean to replace:
require('content.php'); with require('forum.php');[/QUOTE]
// require('content.php'); with // require('forum.php');

But what is it for ;) ?