hehe, I downloaded a fresh copy of phpbb 3.0.5 and opened the viewforum.php file, and compared the U_LAST_POST variable in both files, and noticed the difference...
The code in my viewforum.php file
- Code: Select all
'U_LAST_POST' => $view_topic_url . '&p=' . $row['topic_last_post_id'] . '#p' . $row['topic_last_post_id'],
The code in the fresh viewforum.php file
- Code: Select all
'U_LAST_POST' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", $view_topic_url_params . '&p=' . $row['topic_last_post_id']) . '#p' . $row['topic_last_post_id'],
So, I replaced the variable in my viewforum.php with the code from the fresh file, and uploaded it. And to my suprise, the forums work great now!
So, I just want to thank you for your help! If it hadn't been for you I would probably have just kept the seo mod disabled

it's a fantastic mod!