Do you still get the red error notification? When you go back into the admin panel, is URL rewriting still set to "yes" and "advanced"? It sounds like a cache problem to me so far.
Did you install Ultimate SEO URL or phpBB SEO Premod?
Could you post the contents of the file forumroot/phpbb_seo/cache/phpbb_cache.php? It's not a security risk, and it may help me figure out what's wrong, This is what mine looks like:
phpbb_cache.php
- Code: Select all
<?php
if (!defined('IN_PHPBB')) {
exit;
}
$this->cache_config['settings'] = array ( 'url_rewrite' => true, 'modrtype' => 3, 'sql_rewrite' => true, 'profile_inj' => true, 'profile_vfolder' => true, 'profile_noids' => true, 'rewrite_usermsg' => true, 'rewrite_files' => false, 'rem_sid' => true, 'rem_hilit' => true, 'rem_small_words' => true, 'virtual_folder' => true, 'cache_layer' => true, 'rem_ids' => true, 'copyrights' => array ( 'img' => true, 'txt' => '', 'title' => '', ), 'no_dupe' => array ( 'on' => true, ), 'zero_dupe' => array ( 'on' => true, 'strict' => false, 'post_redir' => 'post', ), );
$this->cache_config['forum'] = array ( 1 => 'shoutcast-streaming', 2 => 'centova-cast', 3 => 'deleted', 4 => 'winamp', 5 => 'sam-broadcaster', 7 => 'database-options', 6 => 'virtual', 22 => 'code-snippets', 8 => 'second-life', 9 => 'second-life-djs', 10 => 'second-life-hud', 11 => 'second-life-scripts', 12 => 'safe-zone', 13 => 'other-products', 14 => 'rental-system', 15 => 'laptop', 16 => 'supplies', 17 => 'marketplace', 18 => 'web-design', 19 => 'php-scripts', 20 => 'phpbb', 21 => 'html-and-css', 23 => 'administration', 25 => 'site-help', 24 => 'team-forum', );
?>