• Register
    • Help

    striker  0 Items
    Currently Supporting
    • Home
    • News
    • Forum
      • Try XenForo Demo
      • New Posts
      • FAQ
      • Calendar
      • Community
        • Groups
        • Albums
        • Member List
      • Forum Actions
        • Mark Forums Read
      • Quick Links
        • Today's Posts
        • Who's Online
      • Sponsor
        • Sponsor a Feature
        • List of Donors
    • Wiki
    • Support
    • What's New?
    • Buy Now
    • Manual
    • 
    • Forum
    • VaultWiki How-Tos
    • VaultWiki Questions
    • vbseo integration

    1. Welcome to VaultWiki.org, home of the wiki add-on for vBulletin and XenForo!

      VaultWiki allows your existing forum users to collaborate on creating and managing a site's content pages. VaultWiki is a fully-featured and fully-supported wiki solution for vBulletin and XenForo.

      The VaultWiki Team encourages you to join our community of forum administrators and check out VaultWiki for yourself.

    Page 1 of 2 12 Next LastLast
    Results 1 to 15 of 30

    Thread: vbseo integration

    • Thread Tools
      • Show Printable Version
    1. April 27, 2009 #1
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198

      vbseo integration

      Hello,

      I want my url's to look nice. This is why I bought vbSEO.
      I have read some posts and some notes about the VaultWiki and vbSEO integration, but unfortunately I have been unable to get it working right.

      What I want to do is to have a url structure like:

      /wiki/Title+of+Article.html

      Any help is appreciated.

      Regards,

      Taco
      Reply With Quote Reply With Quote

    2. April 27, 2009 #2
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      For .htaccess help, please see this article.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. May 3, 2009 #3
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      Quote Originally Posted by pegasus View Post
      For .htaccess help, please see this article.
      I followed that document, but can not get anything to work in Vault WIki even though I know my vbSEO and mod rewrite works just fine.

      Here is what I have been haking at unsuccessfully:
      Code:
      # Comment the following line (add '#' at the beginning)
      # to disable mod_rewrite functions.
      # Please note: you still need to disable the hack in
      # the vBSEO control panel to stop url rewrites.
      RewriteEngine On
      
      # Some servers require the Rewritebase directive to be
      # enabled (remove '#' at the beginning to activate)
      # Please note: when enabled, you must include the path
      # to your root vB folder (i.e. RewriteBase /forums/)
      RewriteBase /forum/
      
      #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
      #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
      
      RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
      
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
      RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
      RewriteRule ^(.+)$ vbseo.php [L,QSA]
      
      ##############################
      # Vault Wiki rewrite settings:
      
      #RewriteRule ^wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule ^showwiki.php?title=(.*)$ filename/$1 [L,R=301]
      
      RewriteRule ^filename/Default:(.*)$ filename/$1 [L,R=301]
      ##RewriteRule ^showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule ^filename/(.*)?$ showwiki.php?pretty=1 [QSA]
      
      # For SEO integration:
      #RewriteCond %{REQUEST_URI} filename [NC]
      
      #RewriteRule ^filename(.*)?$ filename$1 [S=X]
      ##############################
      Reply With Quote Reply With Quote

    4. May 3, 2009 #4
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      1) As it says in the htaccess article, all the VaultWiki rules have to appear BEFORE your SEO rules.
      2) You commented out the rules that help. [S=X] is supposed to be S=a number.
      3) You have "filename" littered throughout, which is supposed to match one of your settings in VaultWiki.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    5. May 3, 2009 #5
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      Quote Originally Posted by pegasus View Post
      1) As it says in the htaccess article, all the VaultWiki rules have to appear BEFORE your SEO rules.
      2) You commented out the rules that help. [S=X] is supposed to be S=a number.
      3) You have "filename" littered throughout, which is supposed to match one of your settings in VaultWiki.
      SO I keep reading that page again.
      I have hacked every possibility I think:
      Code:
      # Comment the following line (add '#' at the beginning)
      # to disable mod_rewrite functions.
      # Please note: you still need to disable the hack in
      # the vBSEO control panel to stop url rewrites.
      RewriteEngine On
      
      # Some servers require the Rewritebase directive to be
      # enabled (remove '#' at the beginning to activate)
      # Please note: when enabled, you must include the path
      # to your root vB folder (i.e. RewriteBase /forums/)
      RewriteBase /forum/
      
      ##############################
      # Vault Wiki rewrite settings:
      
      [B]RewriteRule ^wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule ^showwiki.php?title=(.*)$ wiki/$1 [L,R=301]
      
      RewriteRule ^wiki/Default:(.*)$ wiki/$1 [L,R=301]
      #RewriteRule ^showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule ^wiki/(.*)?$ showwiki.php?pretty=1 [QSA][/B]
      
      # For SEO integration:
      RewriteCond %{REQUEST_URI} wiki [NC]
      
      RewriteRule ^wiki(.*)?$ wiki$1 [S=3]
      ##############################
      
      
      #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
      #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
      
      RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
      
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
      RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
      RewriteRule ^(.+)$ vbseo.php [L,QSA]
      Still nothing!
      http://www.blincmagazine.com/forum/base-wiki/
      Reply With Quote Reply With Quote

    6. May 3, 2009 #6
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      If you want it to be forum/base-wiki you need to use "base-wiki" as your filename. Also try removing the ^ from the last wiki line.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    7. May 3, 2009 #7
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      Code:
      # Comment the following line (add '#' at the beginning)
      # to disable mod_rewrite functions.
      # Please note: you still need to disable the hack in
      # the vBSEO control panel to stop url rewrites.
      RewriteEngine On
      
      # Some servers require the Rewritebase directive to be
      # enabled (remove '#' at the beginning to activate)
      # Please note: when enabled, you must include the path
      # to your root vB folder (i.e. RewriteBase /forums/)
      RewriteBase /forum/
      
      ##############################
      # Vault Wiki rewrite settings:
      
      RewriteRule ^base-wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule ^showwiki.php?title=(.*)$ base-wiki/$1 [L,R=301]
      
      RewriteRule ^base-wiki/Default:(.*)$ base-wiki/$1 [L,R=301]
      #RewriteRule ^showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule ^base-wiki/(.*)?$ showwiki.php?pretty=1 [QSA]
      
      # For SEO integration:
      RewriteCond %{REQUEST_URI} base-wiki [NC]
      
      RewriteRule base-wiki(.*)?$ base-wiki$1 [S=3]
      ##############################
      
      
      #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
      #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
      
      RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
      
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
      RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
      RewriteRule ^(.+)$ vbseo.php [L,QSA]
      Reply With Quote Reply With Quote

    8. May 3, 2009 #8
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      I changed the setting Name of Wiki File to base-wiki
      And turned on Simplify Wiki Links?

      And still using this .htaccess:
      Code:
      # Comment the following line (add '#' at the beginning)
      # to disable mod_rewrite functions.
      # Please note: you still need to disable the hack in
      # the vBSEO control panel to stop url rewrites.
      RewriteEngine On
      
      # Some servers require the Rewritebase directive to be
      # enabled (remove '#' at the beginning to activate)
      # Please note: when enabled, you must include the path
      # to your root vB folder (i.e. RewriteBase /forums/)
      RewriteBase /forum/
      
      ##############################
      # Vault Wiki rewrite settings:
      
      RewriteRule ^base-wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule ^showwiki.php?title=(.*)$ base-wiki/$1 [L,R=301]
      
      RewriteRule ^base-wiki/Default:(.*)$ base-wiki/$1 [L,R=301]
      #RewriteRule ^showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule ^base-wiki/(.*)?$ showwiki.php?pretty=1 [QSA]
      
      # For SEO integration:
      RewriteCond %{REQUEST_URI} base-wiki [NC]
      
      RewriteRule base-wiki(.*)?$ base-wiki$1 [S=3]
      ##############################
      
      
      #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
      #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
      
      RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
      
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
      RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
      RewriteRule ^(.+)$ vbseo.php [L,QSA]
      So now I get the links correctly:
      http://www.blincmagazine.com/forum/base-wiki/Main_Page

      But there is now a 404 error.
      Reply With Quote Reply With Quote

    9. May 3, 2009 #9
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      Did you physically rename the showwiki.php file? If you did, change it back to showwiki.php. You only need the settings to "rename" it.

      It's also possible that you need to remove all the ^
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    10. May 3, 2009 #10
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      No I did not rename the file itself. I just set the option in the settings.

      Code:
      RewriteRule base-wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule showwiki.php?title=(.*)$ base-wiki/$1 [L,R=301]
      
      RewriteRule base-wiki/Default:(.*)$ base-wiki/$1 [L,R=301]
      #RewriteRule showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule base-wiki/(.*)?$ showwiki.php?pretty=1 [QSA]
      
      # For SEO integration:
      RewriteCond %{REQUEST_URI} base-wiki [NC]
      
      RewriteRule base-wiki(.*)?$ base-wiki$1 [S=3]
      Reply With Quote Reply With Quote

    11. May 3, 2009 #11
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      You know what...

      This line:
      Code:
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
      Replace with:
      Code:
      RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|base-wiki)
      And this:
      Code:
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
      Replace with:
      Code:
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images|base-wiki)/
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    12. May 3, 2009 #12
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      Not the corre ct outcome I think:

      http://www.blincmagazine.com/forum/b...i/General+Book
      Reply With Quote Reply With Quote

    13. May 3, 2009 #13
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      Looks like you changed the filename to "wiki". You need to change your htaccess rules as well.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    14. May 3, 2009 #14
      mickknutson
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      mickknutson is offline
      Regular Member
      Join Date
      April 29, 2009
      Posts
      91
      Rep Power
      189
      Code:
      ##############################
      # Vault Wiki rewrite settings:
      
      RewriteRule ^wiki.php(.*)$ showwiki.php$1 [QSA]
      RewriteRule showwiki.php?title=(.*)$ wiki/$1 [L,R=301]
      
      RewriteRule ^wiki/Default:(.*)$ wiki/$1 [L,R=301]
      #RewriteRule ^showwiki.php?title=Default:(.*)$ showwiki.php?title=$1 [L,R=301]
      
      RewriteRule ^wiki/(.*)?$ showwiki.php?pretty=1 [QSA]
      
      # For SEO integration:
      RewriteCond %{REQUEST_URI} wiki [NC]
      
      RewriteRule ^wiki(.*)?$ wiki$1 [S=3]
      ##############################
      
      
      #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
      #RewriteRule (.*) http://www.yourdomain.com/forum/$1 [L,R=301]
      
      RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
      
      [B]RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)[/B]
      RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images|wiki)/
      RewriteRule ^(.+)$ vbseo.php [L,QSA]
      The bold line above is the one that does this.
      with |wiki causes a redirect loop, without causes not found error.
      Last edited by mickknutson; May 3, 2009 at 5:50 PM.
      Reply With Quote Reply With Quote

    15. May 3, 2009 #15
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      A redirect loop is better because you actually are bypassing vbSEO. Then download the ZIP once more and try replacing vault/special_plugins.php.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    Page 1 of 2 12 Next LastLast

    Similar Threads

    1. [Integration with VaultWiki] VaultWiki - vBSEO Sitemap Integration (VW4)
      By pegasus in forum vBulletin 4.x Addons
      Replies: 18
      Last Post: August 19, 2020, 2:45 PM
    2. [Integration with VaultWiki] VaultWiki - vBSEO Sitemap Integration (VW3)
      By pegasus in forum vBulletin 4.x Addons
      Replies: 17
      Last Post: March 30, 2016, 6:22 AM
    3. [Integration with VaultWiki] VaultWiki - vBSEO SiteMap Integration
      By pegasus in forum vBulletin 3.x Addons
      Replies: 12
      Last Post: April 28, 2012, 2:56 AM
    4. I can't get vaultwiki to work with vbseo
      By chromeossite in forum VaultWiki Questions
      Replies: 4
      Last Post: October 17, 2010, 3:10 PM
    5. .htaccess + vbseo
      By Mondi in forum VaultWiki Questions
      Replies: 1
      Last Post: April 27, 2010, 10:38 PM

    Tags for this Thread

    able, about, admincp, after, all, also, another, any, appears, are, base, because, been, before, being, better, but, can, changed, changes, com, come, comment, correct, could, did, disable, does, due, enabled, every, example, filename, first, for, forumid, from, get, gets, getting, google, have, hello, help, here, how, http, integration, its, javascript, keep, know, last, like, line, load, longer, look, looking, looks, more, most, must, name, need, new, next, notes, now, one, only, other, out, php, place, please, possible, pre, properly, proxy, quick, quote, removing, request, rewrite, right, see, seo, server settings, should, showwiki, sitemap, solution, some, something, specific, sure, that, the, them, there, this, today, try, type, use, using, vbseo, was, were, what, when, why, will, with, within, without, would, www, you, your

    View Tag Cloud

    Bookmarks

    Bookmarks
    • Submit to Digg Digg
    • Submit to del.icio.us del.icio.us
    • Submit to StumbleUpon StumbleUpon
    • Submit to Google Google

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •  
    • BB code is On
    • Smilies are On
    • [IMG] code is Off
    • [VIDEO] code is
    • HTML code is Off

    Forum Rules

    • Contact Us
    • License Agreement
    • Privacy
    • Terms
    • Top
    All times are GMT -4. The time now is 3:10 PM.
    This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Learn more… Accept Remind me later
  • striker
    Powered by vBulletin® Version 4.2.5 Beta 2
    Copyright © 2023 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2023 DragonByte Technologies Ltd.
    Copyright © 2008 - 2013 VaultWiki Team, Cracked Egg Studios, LLC.