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)

howarde 06-02-2012 10:34 AM

Well... I thought about buying this, but it screws up my ckeditor buttons.

thincom2000 06-03-2012 06:49 AM

What does it do to them? A screen shot would be nice. My ckeditor buttons are fine, custom and default.

AusPhotography 06-03-2012 07:57 AM

Quote:

Originally Posted by thincom2000 (Post 2336044)
What does it do to them? A screen shot would be nice. My ckeditor buttons are fine, custom and default.

On our live 4.1.12 system the extra VW 3.0.19 buttons are blank (no icon) on our 4.2.0 test they are ok.
I'm upgrading on Friday so have not bothered reporting it. (We have the pro version).

howarde 06-03-2012 10:11 AM

First one shows with the plugin - Editor - Hide Wiki Buttons from Standard, Editor - Init Wiki Buttons, and Editor - WYSIWYG Support - disabled... It added a few BB codes to the list (underlined in red), but that's no biggie. Second image shows with those plugins enabled.

thincom2000 06-04-2012 08:47 AM

Quote:

Originally Posted by ricktas (Post 2336051)
On our live 4.1.12 system the extra VW 3.0.19 buttons are blank (no icon) on our 4.2.0 test they are ok.
I'm upgrading on Friday so have not bothered reporting it. (We have the pro version).

Check your stylevar named 'imgdir_vaultedit'. The paths on your site suggest this value is empty, or that your vBulletin board URL (bburl) ends in a slash, which is not allowed according to that setting's description. If the stylevar is empty, it should be set to 'vault/images/editor'. If not, it may not be present in the style cache, so you should try to edit the stylevar anyway to rebuild the cache.

Quote:

Originally Posted by howarde (Post 2336075)
First one shows with the plugin - Editor - Hide Wiki Buttons from Standard, Editor - Init Wiki Buttons, and Editor - WYSIWYG Support - disabled... It added a few BB codes to the list (underlined in red), but that's no biggie. Second image shows with those plugins enabled.

In vault/special_plugins_newpost.php, find:
Code:

        if (strpos($tag['buttonimage'], 'vault/images/bb_') === false)
Replace with:
Code:

        if (strpos($tag['buttonimage'], 'vault/images/bb_') !== false)

howarde 06-04-2012 01:04 PM

Quote:

Originally Posted by thincom2000 (Post 2336404)
In vault/special_plugins_newpost.php, find:
Code:

        if (strpos($tag['buttonimage'], 'vault/images/bb_') === false)
Replace with:
Code:

        if (strpos($tag['buttonimage'], 'vault/images/bb_') !== false)

Thanks. That did it.

wisemasterchief 06-05-2012 02:29 PM

Quote:

Originally Posted by Amaury25 (Post 2334475)
4.2.0 disables any mods' tabs because of the Navigation Manager, which is why I asked.

not true... vaultwiki premium installed and it using the navigation tab created by the plugin.

regards,
William

LgsOfChampions 06-08-2012 10:55 PM

What does this mean?

Quote:

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.

thincom2000 06-09-2012 06:36 AM

It means you are trying to run VaultWiki on your forum when you haven't finished installing it.

Please do what it says and "Make sure that you have set up the default namespace via the Namespace Manager." If you don't know how to do this, please refer to the readme file again.

LgsOfChampions 06-09-2012 05:57 PM

Quote:

Originally Posted by thincom2000 (Post 2338014)
It means you are trying to run VaultWiki on your forum when you haven't finished installing it.

Please do what it says and "Make sure that you have set up the default namespace via the Namespace Manager." If you don't know how to do this, please refer to the readme file again.

thank you!!!

I've downloaded so many mods in past years that I got lazy on this one. Once I ran install it took me str8 to my admin panel so I just assumed the install was done. Sure wasn't!!!!

thanks for the help again

washingtonboise 06-14-2012 06:08 AM

Hi guys, I've used vaultwiki for about a year. I like how easy Vaultwiki is, but I'm curious to know if anyone has made modes, addons, etc., that give it more value. I'm looking for reasons to re-subscribe.

If you're very happy with your integration, please post or PM me a link of your forum website. I'd like to take a look.

Alan_SP 06-14-2012 10:12 PM

Well, I guess you're having pro version.

VW4 is now in alpha testing, so there will be new version. If I were you, I'll pay another year of support and upgrades.

dougdirac 07-24-2012 09:34 AM

I'm using vB 4.1.10. Recently did the install. Looks like a good product but having a few issues.

There are some missing (or unlinked) icon images.
On the article edit page
(URL)/images/buttons/collapse-40b.png
(URL)/images/buttons/collapse-40b_collapsed.png

These appear to be a typo as the filename should be collapse_40b...

The icon in front of the Wiki forum on the Forum page.
(URL)/icon/vb4_wiki_page_new-48.png
This seems to be because it's looking in the wrong directory. I tried setting the Wiki images folder StyleVar to vault/images, but that didn't make any difference.
When I view an article, an expand/collapse icon ((URL)/images/buttons/collapse_40b.png) is oddly at the top right of the page. It expands and collapses the Posting Permissions field which is at the bottom of the page. So that icon is definitely misplaced. I'm using a very vanilla style, so I'm not sure why that's happening.

Linking directly to a post on the discussion page doesn't seem to work. It ends up looking at the article, even if your post is on the third page of comments. After doing some experiments it appears showwiki.php isn't smart enough to know that if you use the p="post number" attribute that it should be on the discussion page. It works if &do=comments is added to the URL but the post links don't already include that. "Go to first new post" (goto=newpost) seems to kinda work in that it goes to the discussion page and on the correct (I assume) page of the thread, but not the specific post.


There are a few new BB Code that I'm not sure do anything.
[media]
[comment]
[reflist]

Image resizing doesn't work in the article, though it still seems to work in the discussion.

Would be great if someone could offer a solution to any of these issues. Thanks in advance. :)

thincom2000 08-06-2012 01:13 PM

I'll be posting an update later today that should fix many of the aforementioned issues.

dougdirac 08-07-2012 01:30 AM

How much later today?

thincom2000 08-07-2012 03:08 AM

A number of fixes have been merged into the current version of VaultWiki Lite (3.0.11). Download the new ZIP, overwrite your files, and run the upgrade script. Even though there is no version change, some templates and other issues have been fixed.

dougdirac 08-10-2012 06:51 PM

Quote:

Originally Posted by thincom2000 (Post 2355142)
A number of fixes have been merged into the current version of VaultWiki Lite (3.0.11). Download the new ZIP, overwrite your files, and run the upgrade script. Even though there is no version change, some templates and other issues have been fixed.

You sure you guys have the right files in this mini-update (3.0.11b)?

I tried in to install on a test server from a fresh clone of my live site. The installer identified itself as version 3.0.9 and said there was a previous version installed (even though there wasn't). The only option was a button that said "upgrade". I clicked that and it screwed up the database and killed the site. I'm rebuilding my test server now.

Check on this please.

thincom2000 08-11-2012 12:48 PM

Even though the installer reports that it is version 3.0.9, it is still 3.0.11 - but there are no changes needing install/upgrade steps since 3.0.9 so the version number isn't changed. This is the only quirk I see; it shouldn't affect the database schema.

If the update causes database errors for you, a more detailed read-out of the errors would make it easier to assist you.

dougdirac 08-15-2012 01:32 AM

Yeah, sorry. It looks like even though I was using a fresh clone of my live site on my dev server, some bits of the database were left over from last time I did a trial install. And your install script wouldn't work. Seems to have worked ok on a different clone.

Thanks for fixing all those bugs I pointed out before. :)

Question, though.

On my site for normal forums, showthread.php looks for a thread number. So say I have a URL for a thread, e.g., (home URL)/showthread.php/8886-My-First-Drive-Review. If the thread name gets changed from "My First Drive Review" to "First-Drive-Reviews", the new URL would be (home URL)/showthread.php/8886-First-Drive-Reviews, but the old URL still works since the thread number is the same. However, it seems like with showwiki.php, minor changes in the thread name totally break previous URLs. It that right?

thincom2000 08-15-2012 10:24 AM

Have you tried this? Renaming an article should leave a redirect at the old URL that points to the new URL, unless you tell VaultWiki not to create one at that time.

dougdirac 08-20-2012 04:03 PM

Thanks. Is there somewhere to edit or delete redirects?

How do you deal with multiple users uploading pictures to a wiki? My users are getting permission errors, perhaps because they are trying to upload images as attachments.

thincom2000 08-21-2012 01:35 PM

Redirects are pages with the tag:
Code:

[redirect]Target Page[/redirect]
So you can edit or delete them like regular pages.

You need the full version in order to handle pictures in the wiki properly, and in the full version, you would not be uploading them as normal attachments.

Dirks 09-04-2012 07:30 PM

Hey everyone.

I put a ticket in at VaultWiki regarding this issue, but also wanted to run it by you folks to see if any of you have a quick fix. For reference: I'm using the newest version of VaultWiki Lite and Vbulletin 4.2.0 Alpha.

When I install VaultWiki, it creates some custom StyleVars (presumably for use in the Wiki's separate style function). When doing so, it overwrote my existing StyleVar Editor leaving only a single entry. Here's a screenshot: https://vborg.vbsupport.ru/external/2012/09/45.png. Removing VaultWiki does eliminate the problem. I was only able to restore the StyleVars Editor by updating vB (I suspect running the updater again would do the same).

Has anyone else experienced this? Do you have a fix? I really like how VaultWiki looks on the page and with the MediaWiki issues I've been having I'd prefer to keep VaultWiki (but absolutely need StyleVars Editor for style modification). Let me know if you need more information.

dougdirac 09-04-2012 07:34 PM

Quote:

Originally Posted by Dirks (Post 2362671)
Hey everyone.

I put a ticket in at VaultWiki regarding this issue, but also wanted to run it by you folks to see if any of you have a quick fix. For reference: I'm using the newest version of VaultWiki Lite and Vbulletin 4.2.0 Alpha.

When I install VaultWiki, it creates some custom StyleVars (presumably for use in the Wiki's separate style function). When doing so, it overwrote my existing StyleVar Editor leaving only a single entry. Here's a screenshot: https://vborg.vbsupport.ru/external/2012/09/45.png. Removing VaultWiki does eliminate the problem. I was only able to restore the StyleVars Editor by updating vB (I suspect running the updater again would do the same).

Has anyone else experienced this? Do you have a fix? I really like how VaultWiki looks on the page and with the MediaWiki issues I've been having I'd prefer to keep VaultWiki (but absolutely need StyleVars Editor for style modification). Let me know if you need more information.

Yeah, I had this issue as well. I'm not sure that those are VaultWiki specific stylevars as VaultWiki Lite seems to have basically none. It's just that you don't see all your normal ones.

You just have to Run Upgrade Script under Settings after you install VaultWiki and that seems to restore things.

Dirks 09-04-2012 07:45 PM

Solid tip, Doug. Running the update script with VaultWiki Lite installed has restored the StyleVars Editor. Thanks for your help and the ridiculously quick reply.

dougdirac 09-05-2012 12:04 AM

Quote:

Originally Posted by Dirks (Post 2362677)
Solid tip, Doug. Running the update script with VaultWiki Lite installed has restored the StyleVars Editor. Thanks for your help and the ridiculously quick reply.

Coincidence, really. I had the same problem and it took me a while to figure out, so glad I could share.

Leica.Robbiani 09-05-2012 05:22 PM

Hi there,

I cannot find the wiki in the mobile style. Is there anybody who knows to show it in the mobile style?

Best regards

L.R.

dougdirac 09-05-2012 06:35 PM

Quote:

Originally Posted by Leica.Robbiani (Post 2362955)
Hi there,

I cannot find the wiki in the mobile style. Is there anybody who knows to show it in the mobile style?

Best regards

L.R.

That is an excellent question.

thincom2000 09-05-2012 06:57 PM

Quote:

Originally Posted by Leica.Robbiani (Post 2362955)
I cannot find the wiki in the mobile style. Is there anybody who knows to show it in the mobile style?

Only the Premium version has support for the mobile style. If you already use the Premium version, you might have to upgrade.

gajinoz 09-10-2012 09:50 PM

Possibly a stupid question but .......

If I install the free version and then decide to buy the full version, will I have to do the installation over again or will it simply be a matter of adding a licence key or similar. Presumably any articles created with the free version won't disappear if I upgrade.

dougdirac 09-11-2012 02:28 AM

Using vB 4.2.
Where is the Facebook Like button on the wiki pages? Is it not included?

thincom2000 09-11-2012 05:11 AM

I wasn't even aware of a Facebook Like button on non-wiki pages. Is it new?

dougdirac 09-11-2012 07:37 AM

I'm not sure when it was added, but it's standard in 4.2.

woffie 09-18-2012 12:33 AM

Quote:

Originally Posted by gajinoz (Post 2364437)
Possibly a stupid question but .......

If I install the free version and then decide to buy the full version, will I have to do the installation over again or will it simply be a matter of adding a licence key or similar. Presumably any articles created with the free version won't disappear if I upgrade.

I just recently got the paid version, all you have to do is upgrade. BTW, the paid version is WELL worth the money. I was hesitant to do it but am glad I did now.

dougdirac 10-06-2012 06:40 PM

Quote:

Originally Posted by thincom2000 (Post 2358735)
You need the full version in order to handle pictures in the wiki properly, and in the full version, you would not be uploading them as normal attachments.

How does the full version handle images.


I'm noticing that my custom BBcodes are not working on wiki pages.

WorldCraft 10-06-2012 09:35 PM

My admincp directory is renamed to something else for security reasons. Since there are files that need to be uploaded to my admincp directory, will that affect this product at all?

Edit: I'm receiving the "Invalid Namespace ID detected" error. It still appears after rebuilding the Namespace.

TheSupportForum 10-06-2012 09:44 PM

Quote:

Originally Posted by WorldCraft (Post 2371259)
My admincp directory is renamed to something else for security reasons. Since there are files that need to be uploaded to my admincp directory, will that affect this product at all?

it will not effect this product at all

thincom2000 10-07-2012 06:50 AM

Quote:

Originally Posted by WorldCraft (Post 2371259)
Edit: I'm receiving the "Invalid Namespace ID detected" error. It still appears after rebuilding the Namespace.

Please Edit the namespace and make sure it has a forum assigned for "Top-Level Forum". It probably has "No One" selected.

Draffi 10-16-2012 06:50 AM

Hi!

Since it extist no working bridge for the mediawiki/vbulletin software (well, in my case...) your AddOn looks interesting.

On your site, under "Features" i was reading:
"Island wikis allow stand-alone pages"

What meaning this? Wiki pages without an entry in the forum?

When i purchase your mod, i can try this in XAMPP before i install this in my working board?

Thank you in advance

D.

thincom2000 10-17-2012 06:59 AM

Island pages are "stand-alone" in that:

You can't link wiki pages to island pages. And the wiki doesn't care if you give them duplicate names. VaultWiki doesn't consider them part of the wiki - they are Islands, one-page wikis, by themselves.

Yes, you are allowed to install the mod on your test board before you go live. This is recommended in case you have a conflict with other mods, or need to work out a plan to set it up exactly how you want.


All times are GMT. The time now is 02:45 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.01764 seconds
  • Memory Usage 1,847KB
  • 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
  • (5)bbcode_code_printable
  • (16)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