Página 1 de 2

phpbb gallery problema en foro/gallery/index.php

Publicado: 07 Jun 2010, 18:01
por luisjosue
Cuando estoy en http://escrambiando.com/foro/gallery/index.php todo me apunta como por ejemplo si quiero ver view recent images http://escrambiando.com/gallery/search. ... _id=recent cuando debe ser http://escrambiando.com/foro/gallery/se ... _id=recent y asi me pasa con casi todos los url de la pagina

si necesitan log pues user: testuser pass: testuser

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 07 Jun 2010, 19:24
por Makoto
creo este mod "Primetime" puede ser haber deshabilitado y prueba de nuevo

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 07 Jun 2010, 21:53
por luisjosue
Eso lo intente y siguio igual yo tengo otro foro de prueba y no tiene el phpbb seo y lo de la galeria funciona bien con el primetime y todo, lo unico que no tiene es el phpbb seo

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 00:34
por Makoto
ya veo pues el error esta en la configuracion del SEO u_U
pues me genera url asi

Código: Seleccionar todo

http://escrambiando.com/noticias-eventos/
y creo q debe generar asi pues

Código: Seleccionar todo

http://escrambiando.com/foro/noticias-eventos/
le falta el foro

haber cheka la configuracion del foro de pruebas si tienen la misma configuracion en el SEO

edicion
eh me he olvidado supongo q has instalado la edicion para q las url de la galeria sean compatibles con SEO no?
si no es asi pues en la web del autor esta el install

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 01:44
por luisjosue
es que en mi forto de prueba no tengo puesto el seo

eso ultimo de lo de la edicion no lo entendi no e instalado nada del gallery para que sea compatible con seo me dices que en la pagina del autor pero cual la del autor de la galleria o del autor del SEO?

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 01:51
por Makoto

Código: Seleccionar todo

http://downloads.phpbb-seo.com/phpbb-seo-toolkit-11/seo-url-phpbb-gallery-70.html

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 04:00
por luisjosue
gracias lo baje y lo instale pero me sigue dando el error entonces si hago lo de
Spoiler
.htaccess :
____________

On the phpBB SEO ACP module, go to the ".htaccess" page and generate a new .htacccess.
If the gallery mod and the SEO URL patch are properly installed, it will add the gallery rewriterules automatically.

You will though need to alter this rewriterules in your .htaccess :

# FIX RELATIVE PATHS : FILES
RewriteRule ^.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /$1 [QSA,L,NC,R=301]

Should be changed to :

# FIX RELATIVE PATHS : FILES
RewriteRule ^(?!galerie)/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ $2 [QSA,L,NC,R=301]

Note that this rewriterule may look a bit different, it can for example include the phpBB directory :

# FIX RELATIVE PATHS : FILES
RewriteRule ^phpBB/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /phpBB/$1 [QSA,L,NC,R=301]

which should then be changed to :

# FIX RELATIVE PATHS : FILES
RewriteRule ^phpBB/(?!gallery)/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /phpBB/$1 [QSA,L,NC,R=301]

You just MUST keep the paths and slashes and ONLY replace ".+" with "(?!gallery)" in this rewriterule.
You can also comment / delete it if you experience further trouble.
no me habre el foro desde un principio asi que lo dejo asi
RewriteRule ^phpBB/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /phpBB/$1 [QSA,L,NC,R=301]


pero como quiera sigue dandome los mismos errores queria preguntar existe alguna otro MOD de galeria como esa que no sea phpbb gallery a ver si me funciona

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 18:37
por Makoto
puedes postear tu .htaccess?

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 20:56
por luisjosue
aqui esta mi .htaccess que esta dentro de www.escrambiando.com/ una pregunta tiene que estar ahi o dentro del foro es que lo puse ahi para que me funcionara el ultimate seo aqui bueno aqui esta
Spoiler
# 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} !^escrambiando\.com$ [NC]
# RewriteRule ^(.*)$ http://escrambiando.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 ^forum\.html$ /foro/index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /foro/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$ /foro/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$ /foro/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$ /foro/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /foro/download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES THROUGH USERNAME
RewriteRule ^member/([^/]+)/?$ /foro/memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
# USER MESSAGES THROUGH USERNAME
RewriteRule ^member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /foro/search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /foro/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /foro/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^active-topics(-([0-9]+))?\.html$ /foro/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^unanswered(-([0-9]+))?\.html$ /foro/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^newposts(-([0-9]+))?\.html$ /foro/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# UNREAD POSTS
RewriteRule ^unreadposts(-([0-9]+))?\.html$ /foro/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
# THE TEAM
RewriteRule ^the-team\.html$ /foro/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

#####################################################
# GYM Sitemaps & RSS
# Global channels
RewriteRule ^foro/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?/?$ /foro/gymrss.php?channels&$2&$4&$6 [QSA,L,NC]
# HTML Global news & maps
RewriteRule ^foro/(news|maps)/?(page([0-9]+)\.html)?$ /foro/map.php?$1&start=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################

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

#####################################################
# PHPBB GALLERY REWRITE RULES
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2009/01/15
# ALBUM INDEX
RewriteRule ^gallery/$ /foro/gallery/index.php [QSA,L,NC]
# ALBUM
RewriteRule ^gallery/[a-z0-9_-]*-a([0-9]+)/?(page([0-9]+)\.html)?$ /foro/gallery/album.php?album_id=$1&start=$3 [QSA,L,NC]
# PERSONAL ALBUMS
RewriteRule ^gallery/user-albums/?(page([0-9]+)\.html)?$ /foro/gallery/index.php?mode=personal&start=$2 [QSA,L,NC]
# PIC PAGE
RewriteRule ^gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-p([0-9]+)(-([0-9]+))?\.html$ /foro/gallery/image_page.php?album_id=$2&image_id=$3&start=$5 [QSA,L,NC]
# JGP
RewriteRule ^gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-i([0-9]+)\.jpg$ /foro/gallery/image.php?album_id=$2&image_id=$3 [QSA,L,NC]
# JGP THUMBNAILS
RewriteRule ^gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-t([0-9]+)\.jpg$ /foro/gallery/image.php?mode=thumbnail&album_id=$2&image_id=$3 [QSA,L,NC]
# JGP MEDIUM
RewriteRule ^gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-m([0-9]+)\.jpg$ /foro/gallery/image.php?mode=medium&album_id=$2&image_id=$3 [QSA,L,NC]
# END PHPBB GALLERY
#####################################################


#####################################################
# GYM Sitemaps & RSS
# HTML Module additional modes
RewriteRule ^foro/(news|maps)/([a-z0-9_-]+)(/([a-z0-9_-]+))?/?(page([0-9]+)\.html)?$ /foro/map.php?$2=$4&$1&start=$6 [QSA,L,NC]
# Main feeds & channels
RewriteRule ^foro/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?(/([a-z0-9_-]+))?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?$9=$8&$2&$4&$6&gzip=$10 [QSA,L,NC]
# Module feeds
RewriteRule ^foro/[a-z0-9_-]*-[a-z]{1,2}([0-9]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?$8=$1&$3&$5&$7&gzip=$9 [QSA,L,NC]
# Module feeds without ids
RewriteRule ^foro/([a-z0-9_-]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?nametoid=$1&$3&$5&$7&modulename=$8&gzip=$9 [QSA,L,NC]
# Google SitemapIndex
RewriteRule ^foro/sitemapindex\.xml(\.gz)?$ /foro/sitemap.php?gzip=$1 [QSA,L,NC]
# Module cat sitemaps
RewriteRule ^foro/[a-z0-9_-]+-([a-z]{1,2})([0-9]+)\.xml(\.gz)?$ /foro/sitemap.php?module_sep=$1&module_sub=$2&gzip=$3 [QSA,L,NC]
# Module sitemaps
RewriteRule ^foro/([a-z0-9_]+)-([a-z0-9_-]+)\.xml(\.gz)?$ /foro/sitemap.php?$1=$2&gzip=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 21:10
por Makoto

Código: Seleccionar todo

RewriteRule ^gallery/[a-z0-9_-]*(-a([0-9]+)/
creo q debe ser haci

Código: Seleccionar todo

RewriteRule ^foro/gallery/[a-z0-9_-]*(-a([0-9]+)/
supongo q tu foro esta en un carpeta no osea no esta en public_html si no en public_html/foro

si es haci esta mal configurado el seo pues

hay una opcion del seo para emular el public_html, es decir te quita lo de foro, desactiva esa opcion

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 21:20
por luisjosue
mi .htaccess ahora esta asi
Spoiler
# 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} !^escrambiando\.com$ [NC]
# RewriteRule ^(.*)$ http://escrambiando.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 ^forum\.html$ /foro/index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /foro/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$ /foro/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$ /foro/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$ /foro/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /foro/download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES THROUGH USERNAME
RewriteRule ^member/([^/]+)/?$ /foro/memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
# USER MESSAGES THROUGH USERNAME
RewriteRule ^member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /foro/search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /foro/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /foro/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^active-topics(-([0-9]+))?\.html$ /foro/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^unanswered(-([0-9]+))?\.html$ /foro/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^newposts(-([0-9]+))?\.html$ /foro/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# UNREAD POSTS
RewriteRule ^unreadposts(-([0-9]+))?\.html$ /foro/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
# THE TEAM
RewriteRule ^the-team\.html$ /foro/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

#####################################################
# GYM Sitemaps & RSS
# Global channels
RewriteRule ^foro/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?/?$ /foro/gymrss.php?channels&$2&$4&$6 [QSA,L,NC]
# HTML Global news & maps
RewriteRule ^foro/(news|maps)/?(page([0-9]+)\.html)?$ /foro/map.php?$1&start=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################

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

#####################################################
# PHPBB GALLERY REWRITE RULES
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2009/01/15
# ALBUM INDEX
RewriteRule ^foro/gallery/$ /foro/gallery/index.php [QSA,L,NC]
# ALBUM
RewriteRule ^foro/gallery/[a-z0-9_-]*-a([0-9]+)/?(page([0-9]+)\.html)?$ /foro/gallery/album.php?album_id=$1&start=$3 [QSA,L,NC]
# PERSONAL ALBUMS
RewriteRule ^foro/gallery/user-albums/?(page([0-9]+)\.html)?$ /foro/gallery/index.php?mode=personal&start=$2 [QSA,L,NC]
# PIC PAGE
RewriteRule ^foro/gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-p([0-9]+)(-([0-9]+))?\.html$ /foro/gallery/image_page.php?album_id=$2&image_id=$3&start=$5 [QSA,L,NC]
# JGP
RewriteRule ^foro/gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-i([0-9]+)\.jpg$ /foro/gallery/image.php?album_id=$2&image_id=$3 [QSA,L,NC]
# JGP THUMBNAILS
RewriteRule ^foro/gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-t([0-9]+)\.jpg$ /foro/gallery/image.php?mode=thumbnail&album_id=$2&image_id=$3 [QSA,L,NC]
# JGP MEDIUM
RewriteRule ^foro/gallery/[a-z0-9_-]*(-a([0-9]+)/)?[a-z0-9_-]*-m([0-9]+)\.jpg$ /foro/gallery/image.php?mode=medium&album_id=$2&image_id=$3 [QSA,L,NC]
# END PHPBB GALLERY
#####################################################


#####################################################
# GYM Sitemaps & RSS
# HTML Module additional modes
RewriteRule ^foro/(news|maps)/([a-z0-9_-]+)(/([a-z0-9_-]+))?/?(page([0-9]+)\.html)?$ /foro/map.php?$2=$4&$1&start=$6 [QSA,L,NC]
# Main feeds & channels
RewriteRule ^foro/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?(/([a-z0-9_-]+))?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?$9=$8&$2&$4&$6&gzip=$10 [QSA,L,NC]
# Module feeds
RewriteRule ^foro/[a-z0-9_-]*-[a-z]{1,2}([0-9]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?$8=$1&$3&$5&$7&gzip=$9 [QSA,L,NC]
# Module feeds without ids
RewriteRule ^foro/([a-z0-9_-]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /foro/gymrss.php?nametoid=$1&$3&$5&$7&modulename=$8&gzip=$9 [QSA,L,NC]
# Google SitemapIndex
RewriteRule ^foro/sitemapindex\.xml(\.gz)?$ /foro/sitemap.php?gzip=$1 [QSA,L,NC]
# Module cat sitemaps
RewriteRule ^foro/[a-z0-9_-]+-([a-z]{1,2})([0-9]+)\.xml(\.gz)?$ /foro/sitemap.php?module_sep=$1&module_sub=$2&gzip=$3 [QSA,L,NC]
# Module sitemaps
RewriteRule ^foro/([a-z0-9_]+)-([a-z0-9_-]+)\.xml(\.gz)?$ /foro/sitemap.php?$1=$2&gzip=$3 [QSA,L,NC]
# END GYM Sitemaps & RSS
#####################################################
y como quiera estas opciones siguen igual buscando en ...escrambiando.com/gallery/... * View recent images • View random images • View recent comments • View top rated images • View your images me tiene frustrado esto jajaja

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 21:24
por luisjosue
aqui esta mi carpeta por si acaso para que veas donde tengo el .htaccess
mi carpeta.JPG
mi carpeta.JPG (118.16 KiB) Visto 2772 veces

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 21:53
por Makoto
acp/Configuración del servidor/Forzar parámetro URL:

Nombre de dominio: www.escrambiando.com

Ruta de phpBB: /foro


esta ahci en tu configuracion en el acp?

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 08 Jun 2010, 22:09
por luisjosue
primero que todo gracias por tu ayuda


si asi mismo esta en la fonfiguracion del server lo de la galleria no se ya me tiene mal jajajaj y que pensaba sacar el foro para el publico a mediados de mes espero tener eso listo que es lo mas importante que me esta faltando y no quiero tener la pagina sin el seo

Re: phpbb gallery problema en foro/gallery/index.php

Publicado: 09 Jun 2010, 16:41
por luisjosue
si alguien me podria ayudar e estado al borde de cambiarme a otro tipo de foro como smf o no se cual mas porque en realidad necesito sacar el foro en este mes y todo me hba bien solo cuando pongo lo del gallery es que me dio problemas y lo malo es que la galeria es una de las cosas mas necesaria para el foro y el phpbb seo tambien si alguien tiene alguna recomendacion se lo agradeceria