Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VaultWiki: A Wiki for your forum Details »»
VaultWiki: A Wiki for your forum
Version: 3.0.11 Lit, by thincom2000 thincom2000 is offline
Developer Last Online: Sep 2022 Show Printable Version Email this Page

Category: Major Additions - Version: 4.2.0 Rating:
Released: 03-29-2010 Last Update: 07-30-2013 Installs: 231
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

** THIS MOD IS NO LONGER SUPPORTED **
We are no longer developing this, a newer version is available here: https://vborg.vbsupport.ru/showthread.php?t=309676

** DOWNLOAD REMOVED **
The download attached to this thread has been removed due to known unpatched security issues: https://www.vaultwiki.org/pages/Book...-Patch-Level-2

We do not recommend using this version, and we cannot offer support for it any longer.


VaultWiki does not bridge from other wiki products (like MediaWiki, etc). It is a wiki product written just for vBulletin.

About VaultWiki
"The powerful editing options in VaultWiki allow your community to collaborate to create and publish content pages for your site. Multiple users can edit the same page, and your staff can moderate changes as they are made. VaultWiki maintains a detailed history of every page, making it just as easy to reverse unwanted changes.

Use to create general site content, user manuals, wikis... VaultWiki works by extending vBulletin's forum and permissions systems - easily create and designate forum areas for different purposes. With a little imagination, VaultWiki can be configured to do almost anything."

Features and the Full Version
The find out more about VaultWiki Lite's features or to purchase the full commercial version, see the comparison here: http://www.vaultwiki.org/features/

VaultWiki Lite cannot import data from other wiki products. If you want to do this, you'll need the full commercial version.

Requirements:
  • PHP 4.4.0 or higher
  • MySQL 4.1.2 or higher
  • vBulletin 3.6.x, 3.7.x, 3.8.x, 4.0.x, 4.1.x, 4.2.x
  • about 1 MB of space

Copyright Info
VaultWiki Lite places a copyright notice in your forum's footer on any page where wiki functions are used. You are not allowed to modify the source code or phrases to remove this copyright.

Troubleshooting and Support
While VaultWiki Lite is offered for free on vbulletin.org, you will receive faster responses to support questions made at the official VaultWiki site: http://www.vaultwiki.org/

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
BCP Hung, MichaelDance, Sage Knight

Comments
  #92  
Old 06-17-2010, 03:33 PM
Front Range Front Range is offline
 
Join Date: Apr 2008
Posts: 111
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the quick response. Clicking the edit tab did nothing, if I reloaded the browser over and over it eventually worked.

I understand the inevitability of mod conflicts and I don't use many, do you know which ones currently conflict?
Reply With Quote
  #93  
Old 06-17-2010, 03:55 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As for the sitemap problem, see if this helps. In vault/special_class_friendlyurl.php, find:
Code:
		return $urlinfo['url'] . ($query ? $amp . $query : '');
Replace with:
Code:
$url = $urlinfo['url'];
		if (
			(
				THIS_SCRIPT == 'cron' OR
				(
					VB_AREA == 'AdminCP' AND
					strpos($_SERVER['PHP_SELF'], 'sitemap.php') !== false
				)
			) AND
			$GLOBALS['runner'] AND
			is_subclass_of($GLOBALS['runner'], 'vB_SiteMapRunner')
		)
		{
			if (strpos($url, $this->registry->options['bburl']) !== false)
			{
				$url = str_replace($this->registry->options['bburl'] . '/', '', $url);
			}
			else
			{
				$thirdpos = strpos($url, '/', 9);
				$url = substr($url, $thirdpos + 1);
			}
		}

		return $url . ($query ? $amp . $query : '');
It's not a perfect fix, but I think it should catch most configurations. It's not really possible to fix completely because vBulletin didn't give us enough hook locations to work with.
Reply With Quote
  #94  
Old 06-17-2010, 04:56 PM
Stefanus Stefanus is offline
 
Join Date: Aug 2007
Location: RSA - Boerland
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by thincom2000 View Post
As for the sitemap problem, see if this helps.

It's not a perfect fix, but I think it should catch most configurations. It's not really possible to fix completely because vBulletin didn't give us enough hook locations to work with.
Thanks for the response:

Code:
<url>
<loc>http://www.site.com/forum/http://www.site.com/forum/showwiki.php?title=Johanna+Brandt</loc>
<lastmod>2010-04-14T10:25:43+02:00</lastmod>
<changefreq>yearly</changefreq>
<priority>0.5</priority>
</url>

Unfortunately this did not rectify the issue as the "base url" is stil added in the sitemap.

Even changing "Site Name / URL / Contact Details" -> "Always use Forum URL as Base Path" to No does not change anything in the sitemap.
Reply With Quote
  #95  
Old 06-17-2010, 04:58 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Front Range View Post
Thanks for the quick response. Clicking the edit tab did nothing, if I reloaded the browser over and over it eventually worked.

I understand the inevitability of mod conflicts and I don't use many, do you know which ones currently conflict?
I think vBEnterprise Translator won't do anything on wiki pages, it will just redirect to the regular wiki page. Wiki pages have to be translated manually using their built-in tools.

I think there's one feature of vBSEO that has to be turned off if you want to use certain wiki features. This is discussed in the doc pages for the wiki. Old versions of vBSEO (pre-3.3.0) won't let you use friendly wiki URLs.

I haven't really run into many other "conflicts" myself.
Reply With Quote
  #96  
Old 06-17-2010, 05:07 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stefanus View Post
Unfortunately this did not rectify the issue as the "base url" is stil added in the sitemap.
This is not something that can be altered, but perhaps it can be worked with. What method did you use to rebuild the sitemap? If you ran the cron from the Scheduled Task Manager, this would not work.

Go to XML Sitemap > Rebuild Sitemap. This worked for me. I will work on fixing the cron in the mean time.
Reply With Quote
  #97  
Old 06-17-2010, 05:36 PM
Stefanus Stefanus is offline
 
Join Date: Aug 2007
Location: RSA - Boerland
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by thincom2000 View Post
This is not something that can be altered, but perhaps it can be worked with. What method did you use to rebuild the sitemap? If you ran the cron from the Scheduled Task Manager, this would not work.

Go to XML Sitemap > Rebuild Sitemap. This worked for me. I will work on fixing the cron in the mean time.
Thanks,
Jip used the cron from the Scheduled Task Manager, using XML Sitemap > Rebuild Sitemap works!
Reply With Quote
  #98  
Old 06-19-2010, 10:19 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Uploaded 3.0.5 Lite, which fixes some more RTL issues and every variation of the XML Sitemap URL issue.
Reply With Quote
  #99  
Old 06-20-2010, 12:00 AM
niko236 niko236 is offline
 
Join Date: Sep 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,
Thanks for this Mod, but i have an issue when i try to click on the discussion tab.
In fact when i try to click on the discusison tab, i have this database error:
Code:
Database error in vBulletin 4.0.4:
 
Invalid SQL:
 
	SELECT
		post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
		user.*, userfield.*, usertextfield.*,
		icon.title as icontitle, icon.iconpath,
		avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
		spamlog.postid AS spamlog_postid,
		deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
		editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
		editlog.reason AS edit_reason, editlog.hashistory, 
		postparsed.pagetext_html, postparsed.hasimages,
		sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
		sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
		IF(user.displaygroupid=0, user.usergroupid, user.displaygroupid) AS displaygroupid
		, user.infractiongroupid
		
		
	FROM forum_post AS post
	LEFT JOIN forum_user AS user ON (user.userid = post.userid)
	LEFT JOIN forum_userfield AS userfield ON (userfield.userid = user.userid)
	LEFT JOIN forum_usertextfield AS usertextfield ON (usertextfield.userid = user.userid)
	
	LEFT JOIN forum_icon AS icon ON (icon.iconid = post.iconid)
	
	LEFT JOIN forum_avatar AS avatar ON (avatar.avatarid = user.avatarid)
	LEFT JOIN forum_customavatar AS customavatar ON (customavatar.userid = user.userid)
	
	LEFT JOIN forum_spamlog AS spamlog ON (spamlog.postid = post.postid)
	LEFT JOIN forum_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
	LEFT JOIN forum_editlog AS editlog ON (editlog.postid = post.postid)
	LEFT JOIN forum_postparsed AS postparsed ON (postparsed.postid = post.postid AND postparsed.styleid = 4 AND postparsed.languageid = 2)
	LEFT JOIN forum_sigparsed AS sigparsed ON (sigparsed.userid = user.userid AND sigparsed.styleid = 4 AND sigparsed.languageid = 2)
	LEFT JOIN forum_sigpic AS sigpic ON (sigpic.userid = post.userid)
		
	WHERE post.postid IN (0Array,7557)
	ORDER BY post.dateline;
 
MySQL Error   : Unknown column '0Array' in 'where clause'
Error Number  : 1054
Request Date  : Sunday, June 20th 2010 @ 02:51:12 AM
Error Date    : Sunday, June 20th 2010 @ 02:51:12 AM
Script        : http://***********/forum/showwiki.php?title=Titres+Modern+Warfare+2&do=comments
Referrer      : 
IP Address    : ***********
Username      : ************
Classname     : vB_Database
MySQL Version : 5.0.90
Reply With Quote
  #100  
Old 06-20-2010, 12:14 AM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You are using some other mod that is causing a conflict. The mod uses hook showthread_query_postids. Let me know what it is.
Reply With Quote
  #101  
Old 06-20-2010, 10:24 AM
niko236 niko236 is offline
 
Join Date: Sep 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes I found, it was this mod: First post on all pages

I have deactivated this mod for the Wiki and it works

Thanks
Reply With Quote
Reply


Posting Rules
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 On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:03 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05009 seconds
  • Memory Usage 2,327KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete