• 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 Discussion
    • General Discussion
    • Dbseo and ValutWiki

    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.

    Results 1 to 12 of 12

    Thread: Dbseo and ValutWiki

    • Thread Tools
      • Show Printable Version
    1. November 9, 2014 #1
      migratoria
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      migratoria is offline
      Regular Member
      Join Date
      July 26, 2014
      Posts
      64
      Rep Power
      149

      Exclamation Dbseo and ValutWiki

      I have installed Vaultwiki in vbseo it's all ok
      I have installed in dbseo Vaultwiki does not work. When I click on wiki_index.php me page not found


      I have:

      Modified my .htaccess adding "|wiki|yui"

      Code:
      <IfModule mod_rewrite.c>
      RewriteEngine On
      
      # If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
      # Options -MultiViews
      
      RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api|\.php|reviewpost/|classifieds/|photopost/|wiki|yui)
      RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      RewriteRule ^(.+)$ dbseo.php [L,QSA]
      </ifmodule>

      If uncomment this part the forum generate error 404

      Code:
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      RewriteRule ^(.+)$ dbseo.php [L,QSA]
      In config.php i have modified:
      Code:
      if (file_exists('dbseo.php'))
      {
      	/**
      	 * Use vBSEO as the default script:
      	*/
      
      	define('VW_DEFAULT_SCRIPT', 'dbseo.php');
      }
      My forum it's in mysite.it/forum and Valut its' in mysyte.it/forum/vault

      I know where I wrong? I repeated the operation many times following your guide :-(
      Reply With Quote Reply With Quote

    2. November 10, 2014 #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,959
      Blog Entries
      18
      Rep Power
      688
      Where are the wiki rewrite rules? According to the snippet you pasted they are missing entirely. Please see the Apache section of our section for the lines you have to add.

      Also, according to the guide, you should have removed this section:
      Code:
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      RewriteRule ^(.+)$ dbseo.php [L,QSA]
      Or worded it so that 'dbseo.php' is replaced by 'wiki_index.php'
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. November 10, 2014 #3
      migratoria
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      migratoria is offline
      Regular Member
      Join Date
      July 26, 2014
      Posts
      64
      Rep Power
      149
      Hi pegasus

      In my htaccess i have add only |wiki|yui

      Rules for apache are all disabled

      Code:
      <IfModule mod_rewrite.c>
      RewriteEngine On
      
      RewriteBase /
      
      # If filename is not 'wiki_index', replace WIKI_FILE and uncomment the following line (skip this for XenForo)
      # RewriteRule ^WIKI_FILE.php wiki_index.php [L,QSA]
      
      # If URL format is /wiki/path uncomment the following line
      #RewriteRule ^yui-combo/([^/]+)/(.+)$ yui_loader.php?v=$1&f=$2 [L,QSA]
      
      # If URL format is /wiki/path or replaces a catch-all rule, uncomment the following 3 lines (skip this for XenForo)
      #RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteCond %{REQUEST_FILENAME} !-d
      #RewriteRule ^(.*)?$ wiki_index.php [L,QSA]
      
      # If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
      #Options -MultiViews
      
      RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api|\.php|reviewpost/|classifieds/|photopost/|wiki|yui)
      RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
      
      #RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteCond %{REQUEST_FILENAME} !-d
      #RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      #RewriteRule ^(.+)$ dbseo.php [L,QSA]
      </ifmodule>

      My installation it's www.mysite/forum/
      And Wiki index it's standard files: wiki_index.php

      If i disabled this, forum generate error 404. If enabled forum works but vaultwiki not work

      Code:
      #RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteCond %{REQUEST_FILENAME} !-d
      #RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      #RewriteRule ^(.+)$ dbseo.php [L,QSA]
      where am I wrong?
      Reply With Quote Reply With Quote

    4. November 10, 2014 #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,959
      Blog Entries
      18
      Rep Power
      688
      You should have this:
      Code:
      # If URL format is /wiki/path uncomment the following line
      RewriteRule ^yui-combo/([^/]+)/(.+)$ yui_loader.php?v=$1&f=$2 [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      RewriteRule ^(.*)?$ wiki_index.php [L,QSA]
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    5. November 10, 2014 #5
      migratoria
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      migratoria is offline
      Regular Member
      Join Date
      July 26, 2014
      Posts
      64
      Rep Power
      149
      Works...

      The error was add in my .htaccess this string

      Code:
      RewriteBase /
      Removed. All ok
      Reply With Quote Reply With Quote

    6. April 13, 2015 #6
      Delfi_r1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Delfi_r1 is offline
      Junior Member
      Join Date
      March 26, 2012
      Location
      Barcelona
      Posts
      46
      Rep Power
      176
      I plan to use DBseo on top a vaultwiki installation plain installation

      Should I add the code as posted?

      Quote Originally Posted by pegasus View Post
      You should have this:
      Code:
      # If URL format is /wiki/path uncomment the following line
      RewriteRule ^yui-combo/([^/]+)/(.+)$ yui_loader.php?v=$1&f=$2 [L,QSA]
      
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
      RewriteRule ^(.*)?$ wiki_index.php [L,QSA]
      Reply With Quote Reply With Quote

    7. April 13, 2015 #7
      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,959
      Blog Entries
      18
      Rep Power
      688
      Yes, you should use wiki_index.php instead of dbseo.php in the rewrite urles as you have quoted above, and set dbseo.php as the DEFAULT_SCRIPT in vault/config.php too.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    8. April 15, 2015 #8
      Delfi_r1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Delfi_r1 is offline
      Junior Member
      Join Date
      March 26, 2012
      Location
      Barcelona
      Posts
      46
      Rep Power
      176
      Thanks for your reply, I'll try
      Reply With Quote Reply With Quote

    9. July 30, 2015 #9
      Desita
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Desita is offline
      Junior Member
      Join Date
      July 28, 2015
      Posts
      6
      Rep Power
      0
      Hello

      I'm also using dbseo

      I want my wiki urls to look something like this:

      /Wiki/Angelic-Saga

      But instead it looks like this

      /wiki_index/Wiki-Pages/Angelic-Saga

      Is there a way to fix the urls to how I want them? I'm not all that familiar with rewriting these things.
      Reply With Quote Reply With Quote

    10. August 2, 2015 #10
      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,959
      Blog Entries
      18
      Rep Power
      688
      If your rewrites are already working and like above there are no separate wiki rules (the words dbseo.php were replaced by wiki_index.php), then all you should need to do is:

      1. Change the Filename of the Wiki PHP File in the Site Config settings.
      2. You do not rename the file at all.
      3. Uncomment or add the rewrite rule:
      Code:
      RewriteRule ^WIKI_FILE.php wiki_index.php [L,QSA]
      So that:
      Code:
      RewriteRule ^wiki.php wiki_index.php [L,QSA]
      And that should be it.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    11. August 2, 2015 #11
      Desita
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Desita is offline
      Junior Member
      Join Date
      July 28, 2015
      Posts
      6
      Rep Power
      0
      Just to add to that, it may be necessary to go to Maintenance -> URL counters, and "Rebuild Content URLs". This was the reason it wasn't working for me.
      Reply With Quote Reply With Quote

    12. August 12, 2015 #12
      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,959
      Blog Entries
      18
      Rep Power
      688
      Yes, VaultWiki uses a cron job to rebuild those counters automatically after a setting change, but it is not triggered until the next minute after making the change. Also if you have a lot of wiki URLs already, it might take several minutes more to rebuild them in the background like this. It is also possible that other jobs are already scheduled before it.

      So if you have a lot of articles or there are already other tasks, the Maintenance route you mentioned may be the best option. I think we should put this explanation back in the description for the related settings. It was there when Maintenance was required, but we took it out when the cron job was added.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    Similar Threads

    1. [Integration with VaultWiki] VaultWiki - DBSEO Sitemap Integration
      By pegasus in forum vBulletin 4.x Addons
      Replies: 2
      Last Post: August 28, 2016, 9:44 AM
    2. Extension to support DBSEO? (Similar to the one for VBSEO)
      By SubaruClub in forum VaultWiki Questions
      Replies: 0
      Last Post: December 21, 2014, 5:41 PM
    3. Function in valutwiki 4.x
      By migratoria in forum General Discussion
      Replies: 4
      Last Post: August 23, 2014, 7:36 AM

    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 6:47 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 © 2025 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
    Copyright © 2008 - 2024 VaultWiki Team, Cracked Egg Studios, LLC.