Forum Moderators: open
Here are some good threads that explain how to make phpbb google friendly:
phpbb, sessions & google [google.com]
At the following thread i posted a working code for session.php to allow google to crawl your board:
[webmasterworld.com...] (msg#:7)
Re: Crawling login areas:
With some advanced modification of phpbb's authorization routines / sessions, you might be able to let google even crawl restricted areas that require users to login. However, it doesn't make much sense since people could look at google's cache of your board pages without logging in. You'd have to cloak to avoid this.
Code:#
#-----[ OPEN ]------------------------------------------
#
includes/sessions.php#
#-----[ FIND ]------------------------------------------
#
$SID = 'sid=' . $session_id;#
#-----[ REPLACE WITH ]------------------------------------------
#
if ( $userdata['session_user_id']!= ANONYMOUS ){
$SID = 'sid=' . $session_id;
} else {
$SID = '';
}
hi, the above is the code i tried and it works well unless anonymous posting is allowed.
There is a good thread on automated site map genration with pros and cons , and meta tags generation for each post at the following url
[phpbb.com...]