Jue Sep 13, 2012 7:00 pm • a través de Web
MOD: cBB Portal v1.0.1
Error: Al instalar el MOD "SEO Ultimate" junto con cBB Portal y activar el portal como página principal no se puede ver el Índice General del foro, en su lugar sale el portal.
Solución:
1.
Abrir /phpbb_seo/phpbb_seo_class.php2. Buscar:
- Código: Seleccionar todo
var $seo_ext = array( 'forum' => '.html', 'topic' => '.html', 'post' => '.html', 'user' => '.html', 'group' => '.html', 'index' => '', 'global_announce' => '/', 'leaders' => '.html', 'atopic' => '.html', 'utopic' => '.html', 'npost' => '.html', 'urpost' => '.html', 'pagination' => '.html', 'gz_ext' => '');
var $seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => '', 'global_announce' => 'announces', 'leaders' => 'the-team', 'atopic' => 'active-topics', 'utopic' => 'unanswered', 'npost' => 'newposts', 'urpost' => 'unreadposts', 'pagination' => 'page', 'gz_ext' => '.gz' );
3. Reemplazar por:
- Código: Seleccionar todo
var $seo_ext = array( 'forum' =>'.html', 'topic' => '.html', 'post' => '.html', 'user' => '.html', 'group' => '.html', 'index' => '.html', 'global_announce' => '/', 'leaders' => '.html', 'atopic' => '.html', 'utopic' => '.html', 'npost' => '.html', 'urpost' => '.html', 'pagination' => '.html', 'gz_ext' => '');
var $seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => 'forum', 'global_announce' => 'announces', 'leaders' => 'the-team', 'atopic' => 'active-topics', 'utopic' => 'unanswered', 'npost' => 'newposts', 'urpost' => 'unreadposts', 'pagination' => 'page', 'gz_ext' => '.gz' );
4.
Abrir /.htaccess5. Buscar:
- Código: Seleccionar todo
# RewriteRule ^phpbb3/pruebas/forum.html$ /phpbb3/pruebas/index.php [QSA,L,NC]
6. Reemplazar por:
- Código: Seleccionar todo
RewriteRule ^phpbb3/pruebas/forum.html$ /phpbb3/pruebas/index.php [QSA,L,NC]