vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - VaultWiki: A Wiki for your forum (https://vborg.vbsupport.ru/showthread.php?t=239377)

thincom2000 05-02-2012 09:48 AM

I don't think you're using VaultWiki Lite, as that code does not exist in the vaultwiki_namespace.php file and there is no mention of a "special" BB-Code anywhere in the files. If you are using the full paid version, please seek help at their web site.

If you ARE still using VaultWiki Lite, then your files are not up to date.

axix20xx 05-02-2012 10:14 AM

Quote:

Originally Posted by thincom2000 (Post 2325450)
I don't think you're using VaultWiki Lite, as that code does not exist in the vaultwiki_namespace.php file and there is no mention of a "special" BB-Code anywhere in the files. If you are using the full paid version, please seek help at their web site.

If you ARE still using VaultWiki Lite, then your files are not up to date.

thats correct i didnt upload FTP files ....

ywwz 05-04-2012 02:30 PM

I paid for a pro version but Problem, so I am still using a lite version...sad....

thincom2000 05-05-2012 07:33 AM

If you're having a problem with the full version, please post at the VaultWiki site and they will help you.

axix20xx 05-07-2012 02:37 AM

I Upload all ftp file ...
but it didnt respond again ...
then again uninstall it & again go to install process and this database error again :

Code:

Database error in vBulletin 4.1.9:

Invalid SQL:

                        ALTER TABLE usergroup
                       
        ADD COLUMN vault_permissions INT(11) UNSIGNED NOT NULL DEFAULT '0';

MySQL Error  : Duplicate column name 'vault_permissions'
Error Number  : 1060
Request Date  : Monday, May 7th 2012 @ 07:55:49 AM
Error Date    : Monday, May 7th 2012 @ 07:55:49 AM
Script        : http://and-roid.ir/Forum/vault/install/install.php?step=2
Referrer      : http://and-roid.ir/Forum/vault/install/install.php?step=1
IP Address    : 82.99.229.131
Username      : RealUnknown
Classname    : vB_Database_MySQLi
MySQL Version : 5.6.5-m8


AusPhotography 05-07-2012 04:48 AM

Quote:

Originally Posted by michaelbang (Post 2324873)
Am I not getting the point, or is VaultWiki basically just an extra forum with a new tab?

Err no.

Oversimplification: It is a wiki, i.e. many people can edit the same item vs posting replies in a thread.
While based on vB it adds all the bits to have a Wiki integrated into a vB forum.
It is quite seamless!

We have Pro and it works very well.
See http://www.ausphotography.net.au/forum/showlibrary.php

thincom2000 05-07-2012 06:28 AM

Quote:

Originally Posted by axix20xx (Post 2326919)
I Upload all ftp file ...
but it didnt respond again ...
then again uninstall it & again go to install process and this database error again :

I just installed a test, uninstalled it, and reinstalled it with absolutely no problems. You are either doing something out of the ordinary in the process, or this is caused by another error that you haven't already reported.

You will have to be very specific about the steps you took to "uninstall" the product, including any error messages along the way, because the normal way is working fine for me. I have a feeling you just keep deleting all the vault_ tables from the database manually, expecting that to work, rather than running the Uninstall option in vBulletin's Product Manager.

Also, you can easily just skip steps in the install process by commenting the section out in the files. Modify vault/install/mysql-alter.php to remove the usergroup/vault_permissions part if you're getting an already-exists error.

axix20xx 05-07-2012 07:35 AM

Quote:

Originally Posted by thincom2000 (Post 2326960)
I just installed a test, uninstalled it, and reinstalled it with absolutely no problems. You are either doing something out of the ordinary in the process, or this is caused by another error that you haven't already reported.

You will have to be very specific about the steps you took to "uninstall" the product, including any error messages along the way, because the normal way is working fine for me. I have a feeling you just keep deleting all the vault_ tables from the database manually, expecting that to work, rather than running the Uninstall option in vBulletin's Product Manager.

Also, you can easily just skip steps in the install process by commenting the section out in the files. Modify vault/install/mysql-alter.php to remove the usergroup/vault_permissions part if you're getting an already-exists error.

Thanks again ,
I do the ordinary as you do ...
I delete :

Code:

###### USERGROUP ######
vw_alter_table('usergroup', "
        ADD COLUMN vault_permissions INT(11) UNSIGNED NOT NULL DEFAULT '0'
");

from mysql-alter.php

and in step 3 again i recieve database error and delete :

Code:

###### FORUM ######
vw_alter_table('forum', "
        ADD COLUMN vault_type INT(1) UNSIGNED NOT NULL DEFAULT '0',
        ADD COLUMN vault_lastthread INT(11) UNSIGNED NOT NULL DEFAULT '0',
        ADD COLUMN vault_lastedit INT(11) UNSIGNED NOT NULL DEFAULT '0',
        ADD INDEX vault_type (vault_type)
");

installation ended with no errors but after :

Code:

Only admins can see this error. Other users can visit the site normally, but your immediate attention is needed in the AdminCP.

Invalid default namespace ID detected. Make sure that you have set up the default namespace via the Namespace Manager. If you have, it is possible that the Namespace Cache is not up to date because of a recent change or VaultWiki upgrade. To solve this issue, simply go to the Namespace Manager and select [Rebuild All Namespaces].

If you still receive this error after rebuilding namespaces, contact VaultWiki support.

I have only one namespace and its the defaul one , rebuilt it serveral time but same error in my forum

i try to upgrade the wiki , but again the same error

help plz

thincom2000 05-07-2012 09:14 AM

This message is correct, it's telling you that you didn't finish setup yet. You still need to edit the Default or Wiki namespace, however it is named, and give it a forum to save in.

The following manual page should be relevant for VaultWiki Lite: https://www.vaultwiki.org/manual/Initial-Setup

axix20xx 05-08-2012 06:04 AM

Thanks for you helps ...
finally I did it and install Wiki ...

But again I have problem with post new articles :

foe example I post new article and I got white screen in this link :

Code:

/Forum/showwiki.php?title=android:Root&do=edit

thincom2000 05-09-2012 07:07 AM

There is an error happening (maybe conflict with another mod) and you have error reporting turned off. You can check your server logs for the error message, or try to override in showwiki.php. Find:
Code:

error_reporting
Add before:
Code:

@ini_set('display_errors', 1);
If this doesn't show you an error message then you might not be able to override the directive for 'display_errors' at this level, or the white page might not even be caused by an error.

C.Birch 05-20-2012 12:18 PM

Just incase people want to know, this mod breaks VB 4.2, posting replys in threads will give you a white page with this mod on :)

Alan_SP 05-20-2012 05:50 PM

Yes, but at the moment there's no 4.2, not supported one. :)

And yes, if you check authors site, they already are on 4.2 and are testing VW with it. It will need some changes to work with 4.2, but it will be done.

AusPhotography 05-21-2012 03:05 AM

Pegasus has already said 3.0.19 of VW will support vB4.2.x
https://www.vaultwiki.org/articles/107/

He has the VW site running vB4.2.0beta1

I would hope to see a VW release very soon after vB4.2.0 GOLD.

thincom2000 05-23-2012 01:50 AM

VaultWiki 3.0.19 with official vB 4.2 support was released about an hour ago. I am going through it now and incorporating the necessary changes into Lite. Shouldn't be too long, a couple of hours.

thincom2000 05-23-2012 03:39 AM

VaultWiki Lite 3.0.11 is now available, which *should* work with vBulletin 4.2. Let me know if you have any problems with the wiki tab.

AusPhotography 05-23-2012 03:39 AM

Updated 3.1.19 in both 4.1.12 live and 4.2.0 test -- all ok

thincom2000 05-23-2012 05:54 AM

Updated my Lite site to 4.2 and re-upgrade VaultWiki Lite. Needed some tweaks but now it's working correctly and the ZIP is updated.

Enjoy moving your wiki tabs around.

Sage Knight 05-23-2012 07:21 AM

Is there a fix for this for the vB mobi theme? The forum display of the Wiki enabled forum is all out of place.

thincom2000 05-23-2012 09:19 AM

Only the full version has support for vB's mobile style. I will have to make it turn off the mobile style in the wiki forum list if it looks that bad.

You might be able to get around it yourself by setting a forced style in the wiki forum, under that forum's settings.

oddball118 05-24-2012 03:59 PM

I'm having issues with the lite version after a VB 4.2 upgrade. During the wiki upgrade once I get to step 6 it goes back to step one and just continues with that loop. Also the Wiki tab has vanished from the forum page.

thincom2000 05-24-2012 05:53 PM

Sorry about that I didn't commit the updated upgrade phrases to the ZIP. Doing it now.

EDIT: Done. Let me know if the issue persists.

Mikep- 05-24-2012 06:20 PM

showwiki.php is calling functions_wysiwyg.php on edit thats not part of vbulletin 4.2.0

Edit:

Warning: require_once([path]/includes/functions_wysiwyg.php): failed to open stream: No such file or directory in [path]/vault/tabs/special_tab_edit.php on line 259

oddball118 05-24-2012 07:00 PM

That worked for the upgrade. Now I am getting the same error as Mikep-.

Mikep- 05-24-2012 08:41 PM

Also I am experiencing the same as:
https://www.vbulletin.com/forum/show...reply-to-posts disabling vault wiki fixes the problem.

(Probably to do with the same problem).

SuperTaz 05-24-2012 10:38 PM

was getting white pages when posting new threads and I went through my mods and disabled them one-by-one and this mod was the one causing the white pages. So, I disabled until it gets fixed.

thincom2000 05-25-2012 06:08 AM

Fixed the white pages/errors in the editor. Version detection was evaluating to false for vB 4.1.4 when 4.2.0 was installed (0 < 4).

Replace the ./vault/special_class_wiki.php file with the one from the ZIP.

oddball118 05-25-2012 04:43 PM

That did the trick for me. Thanks.

jdj 05-29-2012 09:44 AM

Quick question for you:

If my vBulletin 4.2.0 forum is installed on mysiteA.com can I install the enterprise version of your wiki on mysiteB.com and get it to work so that the registered users on mysiteA.com are able to contribute to it directly?

Mikep- 05-29-2012 10:46 AM

It is now fixed thanks for your hard work.

thincom2000 05-29-2012 12:04 PM

Quote:

Originally Posted by jdj (Post 2334212)
If my vBulletin 4.2.0 forum is installed on mysiteA.com can I install the enterprise version of your wiki on mysiteB.com and get it to work so that the registered users on mysiteA.com are able to contribute to it directly?

The wiki has to be installed to your forum. If your forum already works on mysiteA.com and mysiteB.com with shared logins, then it should carry over when you install VaultWiki. But VaultWiki itself doesn't add any cross-domain cookie sharing or integrated logins across domains.

If you're asking if VaultWiki has a single-sign on feature where you can use vBulletin's user authentication system, um... VaultWiki doesn't have its own authentication system, it's a vBulletin mod, so you need to be on the forum anyway.

TheSupportForum 05-29-2012 02:31 PM

there is a bug in the latest version for this mod that causes this error for 4.2.0 full release

Code:

Fatal error: Call to a member function clean_gpc() on a non-object in  /public_html/includes/class_wysiwygparser.php(231) : eval()'d code on  line 14
i can only post threads etc once this mod is disabled

thincom2000 05-29-2012 09:17 PM

If you downloaded on or before May 25, this is already fixed in the ZIP uploaded that day. Otherwise I can't reproduce this, it usually means your vBulletin is reporting the wrong version number.

TheSupportForum 05-29-2012 09:26 PM

Quote:

Originally Posted by thincom2000 (Post 2334461)
If you downloaded on or before May 25, this is already fixed in the ZIP uploaded that day. Otherwise I can't reproduce this, it usually means your vBulletin is reporting the wrong version number.

http://img163.imageshack.us/img163/2...5409e9195f.png

i am not posting in the wiki forum set

however that error only goes away after i disable your MOD

Amaury 05-29-2012 09:41 PM

When adding the wiki as a tab using the new Navigation Manager, what do I want as the target URL?

thincom2000 05-29-2012 09:43 PM

@simonhind, you might be running the same version, but some files were updated May 25, which is a few days after 3.0.11 was released. Unless you updated in the past 1-2 days, you should try updating your VaultWiki files. This only happens if VaultWiki reads vBulletin's version number as < 4.1.4, which was fixed for 4.2.0 on May 25.

@Amaury25, if you need to create a custom wiki tab link, use forumdisplay.php?f=ID_OF_THE_WIKI_FORUM
Otherwise you should use the navigation links that are automatically installed with VaultWiki.

TheSupportForum 05-29-2012 09:44 PM

Quote:

Originally Posted by thincom2000 (Post 2334470)
You might be running the same version, but some files were updated May 25, which is a few days after 3.0.11 was released. Unless you updated in the past 1-2 days, you should try updating your VaultWiki files. This only happens if VaultWiki reads vBulletin's version number as < 4.1.4, which was fixed for 4.2.0 on May 25.

ok i'll give that a try

Amaury 05-29-2012 09:55 PM

Quote:

Originally Posted by thincom2000 (Post 2334470)
@simonhind, you might be running the same version, but some files were updated May 25, which is a few days after 3.0.11 was released. Unless you updated in the past 1-2 days, you should try updating your VaultWiki files. This only happens if VaultWiki reads vBulletin's version number as < 4.1.4, which was fixed for 4.2.0 on May 25.

@Amaury25, if you need to create a custom wiki tab link, use forumdisplay.php?f=ID_OF_THE_WIKI_FORUM
Otherwise you should use the navigation links that are automatically installed with VaultWiki.

4.2.0 disables any mods' tabs because of the Navigation Manager, which is why I asked.

thincom2000 05-29-2012 09:59 PM

VaultWiki Lite 3.0.11 has Navigation Manager support, so you shouldn't need to do anything.

Amaury 05-29-2012 10:04 PM

Quote:

Originally Posted by thincom2000 (Post 2334477)
VaultWiki Lite 3.0.11 has Navigation Manager support, so you shouldn't need to do anything.

Oh, I see. We still have VaultWiki Lite 3.0.10.


All times are GMT. The time now is 01:22 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.01818 seconds
  • Memory Usage 1,834KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete