Results 1 to 3 of 3

Second Vbulletin board.

This is a discussion on Second Vbulletin board. within the General Discussion forums, part of the vBSEO SEO Plugin category; I have vbulletin with Vbseo on mysite.com. I would like to install an additional vbulletin test board on mysite.com/test/ with ...

  1. #1
    wac
    wac is offline
    Senior Member
    Real Name
    toto
    Join Date
    Apr 2009
    Posts
    134
    Liked
    0 times

    Second Vbulletin board.

    I have vbulletin with Vbseo on mysite.com. I would like to install an additional vbulletin test board on mysite.com/test/ with no Vbseo

    Will there be any conflicts between the test board, vbseo and the vbulletin installed on root? I read something awhile ago about Vbseo's .htaccess causing trouble with other installations but can't remember if the setup was this way.

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Each Web.config file applies configuration settings to its own directory and all the sub directories below it. As long as you install the site above or next to your current site, ie

    inetpub/site1
    inetpub/site2

    site1's config will have no bearing on site 2.

    putting it in
    inetpub/site1/test/, it will inherit and you will need to disable test/ from being re-written.


    You can probably add it to the exclude list

    Code:
      <add input="{URL}" negate="true" pattern="(admincp/|modcp/|cron|vbseo_sitemap)" ignoreCase="false" />
    to
    Code:
      <add input="{URL}" negate="true" pattern="(admincp/|modcp/|cron|vbseo_sitemap|test/)" ignoreCase="false" />
    and

    Code:
      <add input="{REQUEST_FILENAME}" negate="true" pattern="/(admincp|modcp|clientscript|cpstyles|images)/" ignoreCase="false" />
    to
    Code:
      <add input="{REQUEST_FILENAME}" negate="true" pattern="/(admincp|modcp|clientscript|cpstyles|images|test)/" ignoreCase="false" />

  3. #3
    wac
    wac is offline
    Senior Member
    Real Name
    toto
    Join Date
    Apr 2009
    Posts
    134
    Liked
    0 times
    Quote Originally Posted by Brian Cummiskey View Post
    Each Web.config file applies configuration settings to its own directory and all the sub directories below it. As long as you install the site above or next to your current site, ie

    inetpub/site1
    inetpub/site2

    site1's config will have no bearing on site 2.
    Thanks Brian.

Similar Threads

  1. Looking to buy a BIG BOARD
    By BlankTopic in forum Forum Marketplace
    Replies: 12
    Last Post: 06-22-2010, 01:04 PM
  2. Replies: 2
    Last Post: 03-11-2010, 04:18 PM
  3. Replies: 1
    Last Post: 10-24-2009, 09:18 AM
  4. Replies: 0
    Last Post: 12-17-2005, 01:11 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •