An option that can help you in such case is the virtual root option, which will simulate root url for all rewritten forum urls with phpBB installed in a sub dir.
Then, I don't see how the above method could fail, with only the firt edit :
- Code: Select all
'index' => ''
to :
- Code: Select all
'index' => 'forum'
in :
- Code: Select all
$this->seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => '', 'global_announce' => 'announces', 'leaders' => 'the-team', 'atopic' => 'active-topics', 'utopic' => 'unanswered', 'npost' => 'newposts', 'pagination' => 'page', 'gz_ext' => '.gz' );
You should end up with forum.html for the forum index, you need the second one to use forum.php, in both cases you need to generate a new .htaccess once done to have the new url working.
For the server setting update, if you did this using phpmyadmin, you need to clear phpbb's cache before the new settings will be usable. You'll may need to properly chmod the cache/ dir in case you changed the physical location of the files too.
Proper domain settings when phpbb installed in sub.example.com/phpBB/ (where sub. could be www. or nothing, and phpBB/ something else or nothing) is :
- Code: Select all
server domain :sub.example.com
script path: /phpBB
cookie domain:.example.com
with the dot for the cookie.