Joomla Y Vbseo

Esta es una discusión para el tema Joomla Y Vbseo en el foro vBSEO, bajo la categoría Soporte para Productos/Plugins; Muy buenas :cool: a ver si alguién me saca de mis dudas existenciales. Primero en el dominio principal tengo instalado Joomla y el modulo URLS amigables En joomla todo funciona a la perfección. Pero despues ...
Página:


Resultados 1 al 3 de 3

Temas similares

  1. Por lord_noko en el foro vBulletin 3 - Preguntas, Problemas y Soluciones
  2. Vbseo Respuestas: 6
    Por FIM en el foro vBSEO
  3. problema con vbseo Respuestas: 1
    Por biogames en el foro vBSEO
  4. Duda con VBseo Respuestas: 0
    Por webroot123 en el foro vBSEO
  5. vbSEO e index.php Respuestas: 1
    Por nasser en el foro vBSEO
  1. #1
    Miembro Array
    Fecha de ingreso
    18 sep, 06
    Mensajes
    10
    Gustado
    0 Veces
    Me Gustan
    0 Veces

    Exclamation Joomla Y Vbseo

    Muy buenas :cool: a ver si alguién me saca de mis dudas existenciales.
    Primero en el dominio principal tengo instalado Joomla y el modulo URLS amigables
    En joomla todo funciona a la perfección.
    Pero despues en el subdirectorio nodo he instalado el vbulletin y las seo y las seo no funcionan o pirulan.

    He puesto el .htaccess tal como indica y nada no pirula nada y las instrucciones estaan bién claritas y faciles por lo que creo es un conflicto entre el .htaccess en el directorio principal joomla COPIO AQUI MI .HTACCESS DE JOOMLA Y MI .HTACCESS de vbulletin

    A la espera de un benefactor un saludo
    ************.HTACCESS SEO VBULLETIN DIRECTORIO NODO
    RewriteEngine On
    RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    ****************.htaccess JOOMLA DIRECTORIO PRINCIPAL
    ##
    # @version $Id: htaccess.txt 4085 2006-06-21 16:03:54Z stingrey $
    # @package Joomla
    # @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
    # @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    # Joomla! is Free Software
    ##


    ################################################## ###
    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
    #
    # The line just below this section: 'Options FollowSymLinks' may cause problems
    # with some server configurations. It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file. If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url's. If they work,
    # it has been set by your server administrator and you do not need it set here.
    #
    # Only use one of the two SEF sections that follow. Lines that can be uncommented
    # (and thus used) have only one #. Lines with two #'s should not be uncommented
    # In the section that you don't use, all lines should start with #
    #
    # For Standard SEF, use the standard SEF section. You can comment out
    # all of the RewriteCond lines and reduce your server's load if you
    # don't have directories in your root named 'component' or 'content'
    #
    # If you are using a 3rd Party SEF or the Core SEF solution
    # uncomment all of the lines in the '3rd Party or Core SEF' section
    #
    ################################################## ###

    ##### SOLVING PROBLEMS WITH COMPONENT URL's that don't work #####
    # SPECIAL NOTE FOR SMF USERS WHEN SMF IS INTEGRATED AND BRIDGED
    # OR ANY SITUATION WHERE A COMPONENT's URL's AREN't WORKING
    #
    # In both the 'Standard SEF', and '3rd Party or Core SEF' sections the line:
    # RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
    # May need to be uncommented. If you are running your Joomla/Mambo from
    # a subdirectory the name of the subdirectory will need to be inserted into this
    # line. For example, if your Joomla/Mambo is in a subdirectory called '/test/',
    # change this:
    # RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
    # to this:
    # RewriteCond %{REQUEST_URI} ^(/test/component/option,com) [NC,OR] ##optional - see notes##
    #
    ################################################## ###


    ## Can be commented out if causes errors, see notes above.
    Options FollowSymLinks

    #
    # mod_rewrite in use

    RewriteEngine On
    RewriteRule ^(sitemap.*\.(xml\.gz|txt))$ nodo/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    # Uncomment following line if your webserver's URL
    # is not directly related to physical file paths.
    # Update Your Joomla/MamboDirectory (just / for root)

    # RewriteBase /


    ########## Begin - Joomla! core SEF Section
    ############# Use this section if using ONLY Joomla! core SEF
    ## ALL (RewriteCond) lines in this section are only required if you actually
    ## have directories named 'content' or 'component' on your server
    ## If you do not have directories with these names, comment them out.
    #
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    #RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
    RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]

    RewriteRule ^(content/|component/) index.php
    #
    ########## End - Joomla! core SEF Section



    ########## Begin - 3rd Party SEF Section
    ############# Use this section if you are using a 3rd party (Non Joomla! core) SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc
    RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    #
    RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
    RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule (.*) index.php
    #
    ########## End - 3rd Party SEF Section

  2. #2
    Miembro especial Miembro de diamante Array Avatar de Hell³
    Fecha de ingreso
    09 nov, 05
    Mensajes
    566
    Gustado
    1 Veces
    Me Gustan
    0 Veces

    Predeterminado Re: Joomla Y Vbseo

    Tu htaccess de los foros no tiene nada referente a un URL rewrite, es solo el edit del vbseo google/yahoo sitemap.

    Cabe la aclaracion que vbseo y vbseo google/yahoo sitemap son dos mods diferentes.

  3. #3
    Miembro Array
    Fecha de ingreso
    18 sep, 06
    Mensajes
    10
    Gustado
    0 Veces
    Me Gustan
    0 Veces

    Lightbulb Re: Joomla Y Vbseo deacuerdo pero

    GRACIAS por tu respuesta eso lo he entendido perfectamente y he solventado de inmediato las URL amigables pero volviendo al asunto tengo puesto también las google/yahoo sitemaps y dentro del ADMIN CP cuando le digo ejecutar la tarea me dice lo siguiente
    vBSEO - Create Google/Yahoo Sitemap
    Cannot run sitemap generator directly: you should set "Run from vB Scheduled Tasks Manager ONLY" to "No" in admincp to allow this.

    En mi configuracion de tarea tengo esto para ejecutar siempre a ver si pirula pero nada
    "Nombre de Archivo: ./vbseo_sitemap/vbseo_sitemap.php"
    guardo y le doy ejecutar y sale el mensaje anterior
    GRACIAS DE ANTEMANO por alguna respuesta