Página 1 de 1

Problema con mod seo

Publicado: 12 Jul 2010, 15:14
por michan
* URL: http://michan.zobyhost.com/pruebas
* Plantilla(s) usuada(s): proformell
* MODs instalados: phpBB_SEO_Ultimate_SEO_URL
* Nombre y versión del MOD: (que os da el problema)
* URL del MOD: http://www.phpbb-es.com/foro/descarga-m ... 25530.html
* Versión de phpBB: 3.0.7-PL1
* Servidor: zobyhost, gratis
* Si es una actualización desde otra versión -

Hola!
Bueno, tengo un problema con el mod seo. Lo he instalado ya, lo he configurado, he subido ya el nuevo .htaccess y he limpiado el caché y resulta que me da error.
Que podria pasar?
Saludos

Re: Problema con mod seo

Publicado: 12 Jul 2010, 16:35
por Makoto
haber podrias poner el .htaccess que te genera el mod?

seguro comienza los comandos seo asi
^pruebas/%%%%

si es asi haber prueba con cambiando esto

(si usas el notepad +++)

buscar

Código: Seleccionar todo

^pruebas/
reemplazar todos xpor te tiene q resultar 18 coincidencias :cerveza:

Re: Problema con mod seo

Publicado: 12 Jul 2010, 16:56
por michan
Ahi va el htaccess:

Código: Seleccionar todo


    # Lines That should already be in your .htacess
    <Files "config.php">
    Order Allow,Deny
    Deny from All
    </Files>
    <Files "common.php">
    Order Allow,Deny
    Deny from All
    </Files>

    # You may need to un-comment the following lines
    # Options +FollowSymlinks
    # To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
    # Options -MultiViews
    # REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
    RewriteEngine On
    # Uncomment the statement below if you want to make use of
    # HTTP authentication and it does not already work.
    # This could be required if you are for example using PHP via Apache CGI.
    # RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
    # REWRITE BASE
    RewriteBase /
    # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
    # RewriteCond %{HTTP_HOST} !^michan\.zobyhost\.com$ [NC]
    # RewriteRule ^(.*)$ http://michan.zobyhost.com/$1 [QSA,L,R=301]

    # DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    #####################################################
    # PHPBB SEO REWRITE RULES ALL MODES
    #####################################################
    # AUTHOR : dcz www.phpbb-seo.com
    # STARTED : 01/2006
    #################################
    # FORUMS PAGES
    ###############
    # FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
    # RewriteRule ^pruebas/forum\.html$ /pruebas/index.php [QSA,L,NC]
    # FORUM ALL MODES
    RewriteRule ^pruebas/(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewforum.php?f=$2&start=$4 [QSA,L,NC]
    # TOPIC WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^pruebas/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
    # GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^pruebas/announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
    # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
    RewriteRule ^pruebas/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
    # PHPBB FILES ALL MODES
    RewriteRule ^pruebas/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /pruebas/download/file.php?id=$2&t=$1 [QSA,L,NC]
    # PROFILES ALL MODES WITH ID
    RewriteRule ^pruebas/(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /pruebas/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
    # USER MESSAGES ALL MODES WITH ID
    RewriteRule ^pruebas/(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /pruebas/search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
    # GROUPS ALL MODES
    RewriteRule ^pruebas/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /pruebas/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
    # POST
    RewriteRule ^pruebas/post([0-9]+)\.html$ /pruebas/viewtopic.php?p=$1 [QSA,L,NC]
    # ACTIVE TOPICS
    RewriteRule ^pruebas/active-topics(-([0-9]+))?\.html$ /pruebas/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
    # UNANSWERED TOPICS
    RewriteRule ^pruebas/unanswered(-([0-9]+))?\.html$ /pruebas/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
    # NEW POSTS
    RewriteRule ^pruebas/newposts(-([0-9]+))?\.html$ /pruebas/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
    # UNREAD POSTS
    RewriteRule ^pruebas/unreadposts(-([0-9]+))?\.html$ /pruebas/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
    # THE TEAM
    RewriteRule ^pruebas/the-team\.html$ /pruebas/memberlist.php?mode=leaders [QSA,L,NC]
    # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

    # FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
    # THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^pruebas/([a-z0-9_-]+)(-([0-9]+))\.html$ /pruebas/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^pruebas/([a-z0-9_-]+)\.html$ /pruebas/viewforum.php?forum_uri=$1 [QSA,L,NC]
    # FIX RELATIVE PATHS : FILES
    RewriteRule ^pruebas/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /pruebas/$1 [QSA,L,NC,R=301]
    # FIX RELATIVE PATHS : IMAGES
    RewriteRule ^pruebas/.+/(styles/.*|images/.*)/$ /pruebas/$1 [QSA,L,NC,R=301]
    # END PHPBB PAGES
    #####################################################


Re: Problema con mod seo

Publicado: 12 Jul 2010, 20:03
por Makoto

Código: Seleccionar todo

        # Lines That should already be in your .htacess
        <Files "config.php">
        Order Allow,Deny
        Deny from All
        </Files>
        <Files "common.php">
        Order Allow,Deny
        Deny from All
        </Files>

        # You may need to un-comment the following lines
        # Options +FollowSymlinks
        # To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
        # Options -MultiViews
        # REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
        RewriteEngine On
        # Uncomment the statement below if you want to make use of
        # HTTP authentication and it does not already work.
        # This could be required if you are for example using PHP via Apache CGI.
        # RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
        # REWRITE BASE
        RewriteBase /
        # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
        # RewriteCond %{HTTP_HOST} !^michan\.zobyhost\.com$ [NC]
        # RewriteRule ^(.*)$ http://michan.zobyhost.com/$1 [QSA,L,R=301]

        # DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
        RewriteCond %{REQUEST_FILENAME} -f
        RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule . - [L]
        #####################################################
        # PHPBB SEO REWRITE RULES ALL MODES
        #####################################################
        # AUTHOR : dcz www.phpbb-seo.com
        # STARTED : 01/2006
        #################################
        # FORUMS PAGES
        ###############
        # RewriteRule ^forum\.html$ /pruebas/index.php [QSA,L,NC]
        # FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
        # FORUM ALL MODES
        RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewforum.php?f=$2&start=$4 [QSA,L,NC]
        # TOPIC WITH VIRTUAL FOLDER ALL MODES
        RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
        # GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
        RewriteRule ^announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
        # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
        RewriteRule ^([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /pruebas/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
        # PHPBB FILES ALL MODES
        RewriteRule ^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /pruebas/download/file.php?id=$2&t=$1 [QSA,L,NC]
        # PROFILES ALL MODES WITH ID
        RewriteRule ^(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /pruebas/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
        # USER MESSAGES ALL MODES WITH ID
        RewriteRule ^(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /pruebas/search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
        # GROUPS ALL MODES
        RewriteRule ^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /pruebas/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
        # POST
        RewriteRule ^post([0-9]+)\.html$ /pruebas/viewtopic.php?p=$1 [QSA,L,NC]
        # ACTIVE TOPICS
        RewriteRule ^active-topics(-([0-9]+))?\.html$ /pruebas/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
        # UNANSWERED TOPICS
        RewriteRule ^unanswered(-([0-9]+))?\.html$ /pruebas/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
        # NEW POSTS
        RewriteRule ^newposts(-([0-9]+))?\.html$ /pruebas/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
        # UNREAD POSTS
        RewriteRule ^unreadposts(-([0-9]+))?\.html$ /pruebas/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
        # THE TEAM
        RewriteRule ^the-team\.html$ /pruebas/memberlist.php?mode=leaders [QSA,L,NC]
        # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

        # FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
        # THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^([a-z0-9_-]+)(-([0-9]+))\.html$ /pruebas/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^([a-z0-9_-]+)\.html$ /pruebas/viewforum.php?forum_uri=$1 [QSA,L,NC]
        # FIX RELATIVE PATHS : FILES
        RewriteRule ^.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /pruebas/$1 [QSA,L,NC,R=301]
        # FIX RELATIVE PATHS : IMAGES
        RewriteRule ^.+/(styles/.*|images/.*)/$ /pruebas/$1 [QSA,L,NC,R=301]
        # END PHPBB PAGES
        #####################################################

rpueba con este

Re: Problema con mod seo

Publicado: 12 Jul 2010, 20:20
por michan
Gracias!!
Ahora cuando entro a un post me sale esto:
Spoiler
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1832: include(./includes/prime_quick_reply.php) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1832: include(./includes/prime_quick_reply.php) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /viewtopic.php on line 1832: include() [function.include]: Failed opening './includes/prime_quick_reply.php' for inclusion (include_path='.')
Supongo que me habre equivocado en algo en el archivo viewtopic, lo revisare :D

Re: Problema con mod seo

Publicado: 12 Jul 2010, 22:11
por jakk
el problema que te indica ahora es con el mod prime quick reply, no encuentra el archivo /includes/prime_quick_reply.php

Re: Problema con mod seo

Publicado: 12 Jul 2010, 22:41
por michan
Uhh!! Ya me va!! :P
Ahora toca hacer lo mismo, pero en el bueno xD
Gracias... si me sucede lo mismo con el bueno, os volvere a pedir el .htaccess... o tendre que usar el mismo si uso la misma configuracion??