Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VaultWiki Lite 4.x: Wiki for vBulletin Forums Details »»
VaultWiki Lite 4.x: Wiki for vBulletin Forums
Version: 4.0.21 PL1, by thincom2000 thincom2000 is offline
Developer Last Online: Sep 2022 Show Printable Version Email this Page

Category: Major Additions - Version: 4.2.x Rating:
Released: 03-18-2014 Last Update: 03-15-2018 Installs: 35
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

VaultWiki allows your existing forum users to work together on creating and managing a site's content pages, rather than competing to make popular threads. VaultWiki is a fully-featured and fully-supported wiki add-on solution for vBulletin.

Encourage Users to Work Together
VaultWiki allows 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.

Create All Kinds of Content
With VaultWiki, you can create general site content, user manuals for your products, wikis, eBooks, eCommerce product pages, and more. With a little imagination, VaultWiki can be purposed to do almost anything.

Seamlessly Integrates With Your Community
At its core, VaultWiki is an add-on product for your vBulletin forum platform. Its pages all meld with the forum's existing style. Users write new content with the same editor and BB-Codes they are already familiar with. The content is indexed by your forum's built-in search engine. And each user's contributions are acknowledged on his or her profile.

Attract New Membership
VaultWiki creates content and content URLs that are designed to drive new traffic to your site. With guides for search engines embedded in every page, each page preserves its value when it comes to generating traffic.

Fast, Responsive Support
Subscriptions come with free support in our forums and bug tracker system, and documentation is available online at all times. Paid installation and upgrade services can be ordered via our web site.

Active Development
The team at VaultWiki.org are actively involved in the development process. VaultWiki is constantly updated to be compatible with the newest forum software releases, to meet web standards, and to incorporate new technologies. Bugs are fixed promptly and new features come out all the time.

Demo
Demo link: https://www.vaultwiki.org/pages/
Depending on our mood each day, the demo may be the full version or the Lite version.

License
For licensing details, please see the relevant "VaultWiki Lite" sections of the VaultWiki License Agreement here: https://www.vaultwiki.org/pages/Info...ense-Agreement

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

Requirements
The following requirements are based on the full version. The Lite version has fewer MySQL tables, fewer files, and takes up less disk space.

PHP: 5.3+ (5.4+ recommended, 5.5+ recommended for big boards)
MySQL: 4.4.1+ (5.1+ recommended)
MySQL tables: 75+ (for some shared hosts)
MySQL max_allowed_packet: ?M+ (500K + expected language row length)
Disk Space: 12M+ (1G+ recommended)
iNodes: 5000+ (for some shared hosts)
Memory limit: 32M+ (128M+ recommended for vBulletin)

Copyright Info
VaultWiki Lite places a copyright notice in your forum's footer on any page where wiki functions are used. It also places a few nag screens that admin users can see. You are not allowed to modify the source code or phrases to remove this copyright or the nag screens.

You can purchase an Ad Removal and/or Branding Removal license for VaultWiki Lite from the official VaultWiki support site. Simply register an account there to access VaultWiki Lite downloads and extras such as these.

Technical Support
You will probably receive faster responses to support questions if you post at the official support site: https://www.vaultwiki.org/support/4X/

Using an old version? You should check here periodically to make sure there are no known security issues affecting that version: https://www.vaultwiki.org/pages/Book...rable-Versions

Download Now

File Type: zip vaultwiki_lite_images_and_fonts.zip (611.4 KB, 68 views)
File Type: zip vaultwiki_lite_4021p1b1_vb.zip (2.54 MB, 59 views)

Screenshots

File Type: png screen-wiki-index.png (177.2 KB, 0 views)
File Type: png screen-wiki-pages.png (392.0 KB, 0 views)
File Type: png screen-wiki-area-cp.png (173.3 KB, 0 views)
File Type: png screen-wiki-permissions.png (220.6 KB, 0 views)
File Type: png screen-version-history-vb.png (248.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 06-15-2014, 02:33 PM
ywwz ywwz is offline
 
Join Date: Jul 2009
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah.... I got this when trying vault/install/index.php
Quote:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /home3/name/public_html/mywebsite/forum/vault/core/model/vw.php on line 308
My PHP version is 5.4.29
What should I do ah@@
Reply With Quote
  #23  
Old 06-15-2014, 04:06 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You might have PHP 5.4.29 installed on your server as you say, but apparently your server also has PHP < 5.3 installed, and it is using that instead for vBulletin. You will have to make sure in your Apache, nginx, or other config, that it is using the correct path to the PHP 5.4.29 binary when a .php request comes in.

If you maintain multiple versions of PHP, it is usually easier to keep track of this if the PHP path has the version number in it. But I have found that it is sometimes possible to update the wrong PHP location if you forget to set your prefixes properly when you compile the update.

If this error did not occur, then the loaded page should tell you that the PHP version is too low, and the actual PHP version that is executing the page. You can try to get at least that far, so it can give you some clues about your version, by editing vault/core/model/vw.php. Find:
Code:
$classname::select_child($class, $file, $depends);
Replace with:
Code:
call_user_func_array(array($classname, 'select_child'), array(&$class, &$file, $depends));
Reply With Quote
  #24  
Old 06-17-2014, 12:43 AM
ywwz ywwz is offline
 
Join Date: Jul 2009
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by thincom2000 View Post
You might have PHP 5.4.29 installed on your server as you say, but apparently your server also has PHP < 5.3 installed, and it is using that instead for vBulletin. You will have to make sure in your Apache, nginx, or other config, that it is using the correct path to the PHP 5.4.29 binary when a .php request comes in.

If you maintain multiple versions of PHP, it is usually easier to keep track of this if the PHP path has the version number in it. But I have found that it is sometimes possible to update the wrong PHP location if you forget to set your prefixes properly when you compile the update.

If this error did not occur, then the loaded page should tell you that the PHP version is too low, and the actual PHP version that is executing the page. You can try to get at least that far, so it can give you some clues about your version, by editing vault/core/model/vw.php. Find:
Code:
$classname::select_child($class, $file, $depends);
Replace with:
Code:
call_user_func_array(array($classname, 'select_child'), array(&$class, &$file, $depends));
Thank you so much for your professional help, I'll try these code first and contact my site hoster if necessary. All the best!
Reply With Quote
  #25  
Old 07-09-2014, 01:12 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The Gamma 7 version of VaultWiki Lite has been posted today, above. Here are some details of the release:

(released July 1, 2014)
  • HTML5 MicroData in Wiki Pages
  • vw_additional.css for easier CSS overrides
  • Opt Wiki Areas In/Out of Web Search Results
  • Improved CSS caching
  • CSS separated into multiple templates for easier management
  • fatal error searching wiki content in vB3
  • word wrap occurs in CODE blocks
  • word wrap is not multi-byte safe
  • About 25 other bugs that weren't limited to vBulletin are fixed
Reply With Quote
  #26  
Old 07-09-2014, 10:25 PM
halkum halkum is offline
 
Join Date: Feb 2006
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Getting this error when installing:

Fatal error: Configuration: You must insert a value for dirs.core in /vault/core.php in /home/uta/public_html/forum/vault/core/model/vw.php on line 109

Looked and there is no core.php in my vault folder.
Reply With Quote
  #27  
Old 07-10-2014, 06:28 AM
halkum halkum is offline
 
Join Date: Feb 2006
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind, I was running PHP 5.2. Updated and looks to be working correctly now.
Reply With Quote
  #28  
Old 07-10-2014, 03:48 PM
halkum halkum is offline
 
Join Date: Feb 2006
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Running PHP 5.4 currently.

VaultWiki has been installed. I have yet to do any post installation configuration though. It seems when the VaultWiki plugin is enabled on my forums, suddenly BBCode does not display correctly on the forums. It just shows the tags around the text.

I disable VaultWiki, and suddenly BBCode parses correctly.

Screenshot of example of what I mean attached.
Attached Images
File Type: jpg Screen Shot 2014-07-10 at 9.44.34 AM.jpg (98.2 KB, 0 views)
Reply With Quote
  #29  
Old 07-12-2014, 06:34 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I cannot reproduce the problem on my Lite wiki. If you can, I would advise you to submit a Support Ticket through the Members area at vaultwiki.org, so that a developer can resolve this for you.
Reply With Quote
  #30  
Old 07-12-2014, 07:20 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by halkum View Post
Getting this error when installing:

Fatal error: Configuration: You must insert a value for dirs.core in /vault/core.php in /home/uta/public_html/forum/vault/core/model/vw.php on line 109

Looked and there is no core.php in my vault folder.
The error message refers to an incorrect file name, but the message means that VaultWiki is having trouble automatically finding your vBulletin root directory.

If you had some sort of open_basedir restriction which jails PHP to the vBulletin directory, this would be confusing to VaultWiki. However, from the error message, I don't see such a restriction.

If you have a Windows server with PHP 5.2.4 - 5.2.6 installed, the behavior of the PHP function realpath is inconsistent in this environment. In all PHP versions below 5.3.0, realpath randomly fails to return a value, and in 5.3.1, it only works in some cases.

I have logged a bug report at vaultwiki.org so that the developers can implement a workaround for these versions. Even if your PHP version is too low, VaultWiki is supposed to load far enough to tell you "your PHP version is too low"...
Reply With Quote
  #31  
Old 07-28-2014, 05:51 PM
thincom2000 thincom2000 is offline
 
Join Date: May 2006
Location: Bronx, NY
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Release Candidate 1 has been posted today. Here are some of the changes in this release:
(released July 28, 2014)
  • History updated: more detailed and user-friendly
  • Fixed setting rebuilds in Debug Mode
  • Fixed fatal error subscribing via tab
  • Fixed sample area being invisible
  • Fixed signatures failing to parse
  • Fixed database error previewing new pages
  • About 35 other bugs that weren't limited to vBulletin are fixed
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 06:19 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05075 seconds
  • Memory Usage 2,358KB
  • Queries Executed 26 (?)
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
  • (3)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
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)postbit_attachment
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete