My experience with subdomains like that is the subdomain would be called "forum".
@Rafterman, But either way, it's something for you to try.
to test it, you can make a test page where your non-forum index page is located it put this in it
- Code: Select all
<?php
$phpbb_root_path = '';//this is where you would try all those paths until you get one that works.
if (!file_exists($phpbb_root_path . 'config.php'))
{
die('sorry, no config file here, try again');
}
else
{
die('DUDE! you like, so totally found the right root path');
}
?>
Then browse to that test page, and mess with the root path until it gives you the config file found message.










