MyBB Community Forums

Full Version: Is it possible? index.php and registrations
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

I'm wanting to do two things with my board that I'm not sure how to (or if I can)

So is it possible to:

1. Have anyone post, so noone has to register?

2. Bypass the index.php page? I'm only setting up one category at this stage so would like the first page people see, and be redirected to (espically if they have to sign up) to be just a list of threads.

Thanks for any help
1. You can set this up under the Group Permissions setting in the AdminCP. Just set "Unregistered/Not Logged In" to have all permissions.

2. Get the URL to the forum (list of threads) that you want people to see. Let's say it's www.yourforum.com/forumdisplay.php?fid=2. Now, through your FTP client, rename index.php to index.php.old or something like that. Now create a new index.php file that contains only the following:

<?php
header("Location: forumdisplay.php?fid=2");
?>

Of course, replace the location with the real location for your forum. That should do it.
Thanks for that, works perfectly Big Grin