Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

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
  #62  
Old 04-28-2010, 06:24 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's working correctly for me. Make sure that .ratingBox in template vw-tabbed.css has:
Code:
	float: {vb:stylevar right};
Also if you edited any of the CSS templates before upgrading, they pretty much all need to be reverted because the CSS was rewritten.

For a close-enough list of template changes, compare to the important change list for "3.0.0 RC 2" here: http://www.vaultwiki.org/threads/2109/
Reply With Quote
  #63  
Old 04-29-2010, 04:08 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
It's working correctly for me. Make sure that .ratingBox in template vw-tabbed.css has:
Code:
	float: {vb:stylevar right};
Also if you edited any of the CSS templates before upgrading, they pretty much all need to be reverted because the CSS was rewritten.

For a close-enough list of template changes, compare to the important change list for "3.0.0 RC 2" here: http://www.vaultwiki.org/threads/2109/
Thanks thincom2000, but the problem is with "Store CSS Stylesheets as Files?" if "Yes" the css problems occurs.


1.) Links in footnotes gets rendered in capital letters:
Code:
[FOOTNOTE] Military History Society [/FOOTNOTE]
Gets renderd as:
Code:
http://samilitaryhistory.org/VOL022JO.HTML
This renders the links quite useless.

2.) Links of the footnotes say [1] does not link to the footnote but revert to the main CMS page.
The link in the footnote box work fine.
Reply With Quote
  #64  
Old 04-30-2010, 02:22 AM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1) In vault/special_class_bbcode.php, find:
Code:
		$linkbits = explode('|', strtoupper($link));
		$link = $linkbits[0];
		unset($linkbits[0]);
Replace with:
Code:
		$linkbits = explode('|', $link);
		$link = $linkbits[0];
		unset($linkbits[0]);
		$linkbits = array_map('strtoupper', $linkbits);
2) Same file, find:
Code:
		if ($this->registry->options['vault_seo'])
		{
			$return_value .= $_SERVER['REQUEST_URI'];
		}
Replace with:
Code:
		$relpath = special_fetch_url();
		$return_value .= $relpath;
Reply With Quote
  #65  
Old 04-30-2010, 09:31 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
1) In vault/special_class_bbcode.php, find:
Thanks :up:

Now only the "Store CSS Stylesheets as Files?" problem that is causing some havoc.
Reply With Quote
  #66  
Old 04-30-2010, 09:50 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It wouldn't make a difference what the setting is, it would pull from the same CSS templates. Also, my test board has CSS stored as files...

What is your vB version, this may have some effect? Your profile says 3.7.4...
Also, if you are using a CDN or have a far future expires header, your browser may not be loading the new CSS - try clearing your browser cache.
Reply With Quote
  #67  
Old 04-30-2010, 09:58 PM
Leica.Robbiani Leica.Robbiani is offline
 
Join Date: Sep 2007
Location: South Germany
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi thincom2000,

thanks for all, I did the file edits, now it seems everything is working fine.

But one thing:
The additional buttons (reflist, footnote, redirect etc.) are also present in any other forum, but without any function. I think for some users this circumstance looks like an issue.

There are two ways now:
One idea is, the wiki-editor with the additional buttons is only present in the wiki-forum, the other idea is to get the functions of these buttons to all forums. So nobody get's worry about buttons which are not working. I know my members, what they find, they will use.

I don't know, what's easier to do.

best regards

L.R.
Reply With Quote
  #68  
Old 05-01-2010, 06:25 AM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It is much easier to remove them from the non-wiki editor. Using them outside wiki forums is not possible in the Lite release because normal vB uses the regular BB-Code parser and not the parser I included with the wiki.

I will work on this and release a patch with the change and the previous few pages of file edits some time this weekend.
Reply With Quote
  #69  
Old 05-02-2010, 06: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
It wouldn't make a difference what the setting is, it would pull from the same CSS templates. Also, my test board has CSS stored as files...

What is your vB version, this may have some effect? Your profile says 3.7.4...
Also, if you are using a CDN or have a far future expires header, your browser may not be loading the new CSS - try clearing your browser cache.
Hi,
Version: vBulletin 4.0.3 Patch Level 1

There is a definite correlation between CSS stored as files or not, causing the problem, or aggravating the problem from somewhere else as when this is saved as files the problem occurs otherwise not.

No CDN, nor any far future expires headers used.
Reply With Quote
  #70  
Old 05-02-2010, 06:59 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
It is much easier to remove them from the non-wiki editor. Using them outside wiki forums is not possible in the Lite release because normal vB uses the regular BB-Code parser and not the parser I included with the wiki.

I will work on this and release a patch with the change and the previous few pages of file edits some time this weekend.
Thanks :up:
Reply With Quote
  #71  
Old 05-03-2010, 03:06 AM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update released. Includes all bug fixes (see the included changelog).
Reply With Quote
Reply

Thread Tools

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 06:30 PM.


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.04831 seconds
  • Memory Usage 2,322KB
  • 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
  • (8)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