I have just installed phpBB3 version 3.0.9, and tried to install SEO Ultimate v. 0.6.6 with Automod 1.0.0.1.
Unfortunately I get an error on the following instruction:
- Code: Select all
includes/session.php
[Find]
if (isset($_GET['sid']))
{
redirect(build_url(array('sid')));
}
[Replace with]
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
// This part will be fixed in 3.0.9 (see http://tracker.phpbb.com/browse/PHPBB3-9908)
// But as is or updated, it will not mix well with USU and Zero Duplicate (which already removes them)
// Bot user, if they have a SID in the Request URI we need to get rid of it
// otherwise they'll index this page with the SID, duplicate content oh my!
/*if (isset($_GET['sid']))
{
redirect(build_url(array('sid')));
}*/
// www.phpBB-SEO.com SEO TOOLKIT END
My question is: can I safely "patch" the SEO install.xml so that the FIND block appears so (with the REPLACE WITH block modified properly):
- Code: Select all
[Find]
if ($bot && isset($_GET['sid']))
{
send_status_line(301, 'Moved Permanently');
redirect(build_url(array('sid')));
}
[Replace with]
Thanks.

English |
French
