In an attempt to get the spiders running throughout a phpbb that I have, I have made for SE friendly urls etc, etc, etc... I heard there was an archive mod that would create either and xml or other type of archive of posts. Has anyone seen this or have an idea where to get it? I have looked at the phpbb board, but I see nothing. The only one I could find is not working...
I have this hack and it works perfectly! Open includes/sessions.php #-----[ FIND ]------------------------------------------ global $SID; if ( !empty($SID) && !preg_match('#sid=#', $url) ) #-----[ REPLACE WITH]------------------------------------------ global $SID, $HTTP_SERVER_VARS; if ( !empty($SID) && !eregi('sid=', $url) && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'Googlebot') && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'slurp@inktomi.com;')) #-----------------------SAVE and UPLOAD------------------ Code (markup):
This may be a little old but here is the one I used: http://www.phpbb.com/phpBB/viewtopic.php?t=236489 Hope that helps, Greg