View Full Version : Integration with vBulletin - vbMediaWiki Vector
Lord Doys
10-22-2010, 12:39 PM
also if your collapsed tab disappears
remove from the MEDIAWIKIFORUM template
<script type="text/javascript">
<!--
var IMGDIR_MISC = BBURL + "/" + IMGDIR_MISC;
var IMGDIR_BUTTON = BBURL + "/" + IMGDIR_BUTTON;
// -->
</script>
there is no need for the BBURL any more, so defining IMGDIR_MISC = IMGDIR_MISC is just not needed and therefore can be removed
crazyace
10-22-2010, 01:45 PM
its quite easy to fix.
It seems that the sidebar.css is not loaded in the MEDIAWIKIFORUM template.
replace the line below
{wiki:raw headinclude}
with
{vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.cs s,options.css,tagcloud.css}
Thanks that fixed the side bar. Now for the bar across the top. That's broken also.
Lord Doys
10-25-2010, 08:03 AM
I have also written (actually isolated from vbwikipro) an addon to link duscussion tabs to the forums (creating new thread if no discussion exists etc)
If there are more people wanting this feature let me know and i will try to see if i can put it up somewhere
for a working example see my signature
IRJustman
10-25-2010, 07:41 PM
Has anyone used Liquid Threads with this addon? I'll be honest and say that I have not tried this extension in a "neat" environment yet (MediaWiki in its own environment, no integration).
What happens is that when I'm not logged in, I can expand threads as normal. However, once I'm logged in, I cannot expand threads. I can still view them via the "history" link, but I cannot view them in a "normal" mode.
If you need details, request a PM and I'll send all the particulars there.
The URL for LiquidThreads is http://www.mediawiki.org/wiki/Extension:LiquidThreads
Thanks.
--Ian.
UPDATE: The extension does work in "neat" 1.16.0 MediaWiki. Any ideas?
UPDATE 2: If you clear your preferences and set them afresh, you're good to go.
NB: I'm using an existing wiki that has been in operation for about three years which might be part of that problem.
Igel1
10-26-2010, 11:40 AM
@Lord Doys
How do you fix the bar across the top (abovebits in Mediawiki Template)
Lord Doys
10-26-2010, 02:52 PM
@Lord Doys
How do you fix the bar across the top (abovebits in Mediawiki Template)
to make it float right again:
find in vbmediawikiforum.php (~line 955):
<ul class=\"popupgroup forumdisplaypopups\">" . $html . "
replace with
<ul class=\"popupgroup forumdisplaypopups\"style='float:right;'>" . $html . "
but to fix it to make them line up again...
the problem lies in the watch.icon css.. i dont have the time at the moment to figure out (didnt upgrade my live forums yet either)
play with these settings
/* Watch/Unwatch Icon Styling */
#ca-unwatch.icon a,
#ca-watch.icon a {
margin: 0;
padding: 0;
outline: none;
display: block;
width: 26px;
height: 14px;
}
#ca-unwatch.icon a {
background-image: url(images/watch-icons.png);
background-position: -43px 60%;
}
#ca-watch.icon a {
background-image: url(images/watch-icons.png);
background-position: 5px 60%;
}
#ca-unwatch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -67px 60%;
}
#ca-watch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -19px 60%;
}
#ca-unwatch.icon a.loading,
#ca-watch.icon a.loading {
background-image: url(images/watch-icon-loading.gif);
background-position: center 60%;
}
#ca-unwatch.icon a span,
#ca-watch.icon a span {
display: none;
}
Igel1
10-26-2010, 06:55 PM
Thanks for the Hint.
murekhalir
10-27-2010, 11:27 PM
Wow. Wow Wow.
RichieBoy67
10-28-2010, 07:02 AM
Hello,
I was wondering if anyone has a working version I can check out before installing for a client.
Thanks,
Rich
der_darkon
10-28-2010, 09:23 AM
I have also written (actually isolated from vbwikipro) an addon to link duscussion tabs to the forums (creating new thread if no discussion exists etc)
If there are more people wanting this feature let me know and i will try to see if i can put it up somewhere
Wow!
I?m very interested in this. :)
Darksky
10-29-2010, 07:21 PM
I think there's a severe security issue in case of shared PC.
If user makes logout from forum and then he go to the wiki homepage (i.e. www.yourdomain.com/youwiki/) then he is automatically logged in again.
This means that the LOG OUT procedure of vbulletin doesn't delete wiki cookie to or somethingelse.
Still no news about permission mess i posted 1-2 pages ago ?
Gnoll
10-29-2010, 07:51 PM
awesomely i integrated different domains :)
Now Wiki's Search not working + Not sharing same cookies :/
http://www.mmobrowser.com/forum/forum.php?title=%C3%96zel:Ara&search=Worm&fulltext=Ara ( search - Worm keyword )
http://www.oyunwiki.com/ | http://www.mmobrowser.com/forum/
tiamattia
10-31-2010, 02:57 PM
Hi, I've a problem with this mod.
The wiki has a strange layout, here is a screenshot
EDIT: I've solved the problem with the sidebar, but I still have a problem with the top bar...
Darksky
11-01-2010, 04:25 PM
I'm getting this error when trying to upload images to the wiki - I have managed to upload one image before but since then nothing has worked.
I confirm this issue. Together with change usergroup issue this makes the wiki not usable, unfortunately.
The plugin is very nice but need several key-fixes.
Lord Doys
11-01-2010, 04:32 PM
I confirm this issue. Together with change usergroup issue this makes the wiki not usable, unfortunately.
The plugin is very nice but need several key-fixes.
actually i managed to find the problem.
we had a server move / reinstall of php.. and it turned out GD was not enabled. (i discovered it when trying add an attachment to a post..)
after enabling GD again it works just fine
Lord Doys
11-01-2010, 04:37 PM
Wow!
I?m very interested in this. :)
ill see what i can do.. ill need to isolate some code.
send me a PM with your mail
Darksky
11-01-2010, 05:03 PM
actually i managed to find the problem.
we had a server move / reinstall of php.. and it turned out GD was not enabled. (i discovered it when trying add an attachment to a post..)
after enabling GD again it works just fine
No way. I tried to set ImageMagick use to false so that wiki uses the GD but nothing, still the same issue. I'm sure GD libs are installed and running because they are used by vbulletin.
Lord Doys
11-01-2010, 05:11 PM
No way. I tried to set ImageMagick use to false so that wiki uses the GD but nothing, still the same issue. I'm sure GD libs are installed and running because they are used by vbulletin.
yes, that is what i thought as well.. but turned out to be different :)
anyway, was just a tip :)
tiamattia
11-01-2010, 05:13 PM
yes, that is what i thought as well.. but turned out to be different :)
anyway, was just a tip :)
Do you have any suggestions for my problem?
Darksky
11-01-2010, 05:25 PM
Is someone faced the problem that his Administrator/Burocrat account is not able to change user usergroup ? I need to promote some users to Administrator but i fail
Lord Doys
11-01-2010, 05:30 PM
Do you have any suggestions for my problem?
i havnt done the 4.08 layout fixing yet, but i intent to do it soon since i also want some kind of SEO in the wiki pages..
but i got soo many other things to do as well ;)
Lord Doys
11-01-2010, 05:33 PM
Is someone faced the problem that his Administrator/Burocrat account is not able to change user usergroup ? I need to promote some users to Administrator but i fail
no not really.. i am able to move them normally, are you getting an error?
tiamattia
11-01-2010, 05:33 PM
Thanks for the answer, I like this mod very much!! :)
Darksky
11-01-2010, 07:31 PM
No way. I tried to set ImageMagick use to false so that wiki uses the GD but nothing, still the same issue. I'm sure GD libs are installed and running because they are used by vbulletin.
HUmm it seems that your tips helped, maybe. I activated ImageMagick and now i can upload files, even if the resizing files because the sistem say me:
Error in thumbnail creation: /pathtowebroot/nwiki/bin/ulimit4.sh: line 4: usr/bin/convert: No such file or directory
I hope that wiki do not want read access on that file, but executing is enough :D
Darksky
11-01-2010, 07:35 PM
no not really.. i am able to move them normally, are you getting an error?
err...i don't know what happened but now....it works... :confused:
Darksky
11-01-2010, 07:51 PM
Ok, fixed also the thumbnail problem. I forgot the / at start of convert path.
Darksky
11-01-2010, 08:31 PM
This seems a never ending story.
I can set Wiki Administrator user groups for a vbulletin users but it seems that after some minutes he looes the Administrator user groups. maybe the plugin check costantly that the wiki user groups corresponds to the vbulletin groups ?
EDIT: nevermind. It seems that what in wiki english is called "sysop", in wiki italian is called "amministratore" that is the italian transaltion for "administrator". Sorry.
Mukashi
11-04-2010, 02:04 PM
Has this mod been abandoned? bepe doesn't seem to have posted for quite some time. =/ I was hoping with the recent advanced in both MediaWiki and vB4, maybe some solution might have been found to the link via user ID idea.
Lord Doys
11-08-2010, 09:26 AM
disabling the mod and using the wiki standalone rectifies this error so it has to be an issue with how the mod is handling sessions
suddenly i am getting this errors as well.. uploaded before, relogging doesnt work anymore
wampforum
11-09-2010, 10:16 AM
HI,
installed this and works pretty good but hade a few quesiotns:
I can get the wiki logo area to show on integrated skin only on forum default.
Is it possible to remove the vbulletin navbar on wiki pages (just so it shows the vbulletin log in area pluse header?
Also is it possible to make the wiki display a different logo in the header to the usual main logoo I have?
also the forum index shows this: <span style="display:none">Main Page</span>
great mod by the way
thanks
SwollenCranium
11-10-2010, 02:03 PM
Has this mod been abandoned? bepe doesn't seem to have posted for quite some time. =/ I was hoping with the recent advanced in both MediaWiki and vB4, maybe some solution might have been found to the link via user ID idea.
I'd like to know as well. Mod author has not been active since August.
I'd like to donate $$ to this project if I find it to my liking but will not even download/install if its dead in the water.
:down:
BRimagination
11-12-2010, 09:08 PM
This is the great mod, but unfortunately, there are many bugs that make using the integration quite annoying for users. For one, editing wiki constantly gives session errors which requires the edit to be submitted twice. Also, preferences require an edit to be done before it will register properly. There is also problems with formatting that the wiki uses that isn't friendly with the integrated skins. Additionally, the current integration causes problems with the forum and wiki user databases that sometime will delete users or require them to reset passwords.
I would love to use this mod more, but if there isn't an update soon, I will be forced to uninstall and find another forum wiki solution. I really hope it doesn't come to this.
RichieBoy67
11-13-2010, 02:28 AM
This is the great mod, but unfortunately, there are many bugs that make using the integration quite annoying for users. For one, editing wiki constantly gives session errors which requires the edit to be submitted twice. Also, preferences require an edit to be done before it will register properly. There is also problems with formatting that the wiki uses that isn't friendly with the integrated skins. Additionally, the current integration causes problems with the forum and wiki user databases that sometime will delete users or require them to reset passwords.
I would love to use this mod more, but if there isn't an update soon, I will be forced to uninstall and find another forum wiki solution. I really hope it doesn't come to this.
What bugs? I have it installed and integrated on a clients site and so far it seems fine. I am in the process of adding content but I have not encountered any problems really so far.
Rich
Cadellin
11-14-2010, 08:01 PM
I've been using this mod successfully since launch however now I would ideally like to add a second mediawiki installation to my site.
Can the mod support more than one installation?
BRimagination
11-15-2010, 12:26 PM
What bugs? I have it installed and integrated on a clients site and so far it seems fine. I am in the process of adding content but I have not encountered any problems really so far.
Rich
Which version of VBulletin are you using? And did you use this mod from the beginning of your site or integrated with a pre-existing. I'm using VBulletin 4.0.7 and I'm getting a lot of the issues that others have stated in the thread after the last update for this mod. Granted, my colleagues and I fixed a lot of the minor issues, but I'm still getting problems such as session loss errors and numerous formatting issues when using the integrated skins. Also the search function for the forum/wiki part for the integration does not update nor search properly.
None of these problems apparent when we disable the mod and only appear when enabled.
NovoCiv
11-15-2010, 05:34 PM
I've read the manual and I can't figure this out.
#
1 of 7: Checking MediaWiki Installation
OK:
The MediaWiki Installation should be fine.
#
2 of 7: Checking vbMediaWiki Wiki Files upload
OK:
All "wiki_upload" files are in the right place.
#
3 of 7: Checking Forum Path
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/novociv1/public_html/wiki/mediawiki/includes/vbMediaWikiAuthPlugin.php on line 9
Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/novociv1/public_html/wiki/mediawiki/includes/vbMediaWikiAuthPlugin.php on line 22
Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='/home/novociv1/public_html/wiki/mediawiki:/home/novociv1/public_html/wiki/mediawiki/includes:/home/novociv1/public_html/wiki/mediawiki/languages:.:/usr/lib/php:/usr/local/lib/php') in /home/novociv1/public_html/wiki/mediawiki/includes/vbMediaWikiAuthPlugin.php on line 22
From my localsettings.php:
define( "VB_INSTALL_PATH", "forums" );
require_once( "$IP/includes/vbMediaWikiAuthPlugin.php" );
I've tried making the install path ../forums public_html/forums forums forums/ /forums none of them seems to work. I don't understand what I'm doing wrong, and the manual doesn't have any examples under "Here are some example configurations:"
Edit: When I remove the following lines from localsettings.php I can interact with the wiki perfectly fine, just not from the forums.
define( "VB_INSTALL_PATH", "<<placeholder>>" );
require_once( "$IP/includes/vbMediaWikiAuthPlugin.php" );
More things I've tried in <<placeholder>>:
http://novociv.com/forums
http://www.novociv.com/forums
http://forums.novociv.com
.../forums
../forums
./forums
4WheelFreestyle
11-17-2010, 05:01 PM
Hello,
i get this failure when i try to post some articles in the wiki!
Your edit has been rejected because your client mangled the punctuation characters in the edit token. The edit has been rejected to prevent corruption of the page text. This sometimes happens when you are using a buggy web-based anonymous proxy service.
Any Ideas??
NovoCiv
11-17-2010, 09:25 PM
Hello,
i get this failure when i try to post some articles in the wiki!
Any Ideas??
rtfm? http://bepe80.com/vbmediawiki/#rejected
apokphp
11-18-2010, 09:05 PM
My layout is all screwy after a fresh install. See attached, any ideas?
That's the default vb4.0 skin too.
TRS_Chris
11-19-2010, 05:28 AM
I was able to fix the formatting by:
Change :
{vb:cssfile forumbits.css,forumhome.css,forumdisplay.css,threa dlist.css}
To:
{vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.cs s,options.css,tagcloud.css,for umdisplay.css,threadlist.css}
Then after that insert the contents of main-ltr.css into the template between <style> tags. Default location: /wiki/skins/vbmediawikiforum
apokphp
11-19-2010, 10:58 AM
I cannot find "main-ltr.css" anywhere. Is that a template itself?
I made the first change you recommended...and that seems to have done the trick. What does the 2nd change do?
TRS_Chris
11-19-2010, 05:06 PM
I cannot find "main-ltr.css" anywhere. Is that a template itself?
I made the first change you recommended...and that seems to have done the trick. What does the 2nd change do?
In the vbmediawiki zip file it's in release/wiki_upload/skins/vbmediawikiforum
It's just the css stuff that's needed. I tried including it as a css file, but that broke the page, so I just copied and pasted the contents in as a style tag. I'm sure someone else will come up with a better solution.
Travis-Mc
11-19-2010, 09:56 PM
Has this mod been abandoned? bepe doesn't seem to have posted for quite some time. =/ I was hoping with the recent advanced in both MediaWiki and vB4, maybe some solution might have been found to the link via user ID idea.
Add me the list of people who like to find out it this has been abandoned.... It looked promising.. but not so much anymore..
NovoCiv
11-23-2010, 04:18 AM
And I would like to know what the error is with my problems. How is this still listed as Supported?
apokphp
11-27-2010, 04:22 AM
vb.org is notorious for not updating what is supported and what isn't. It's one thing I really dislike about the organization and management of this site. It is very misleading to its members.
HolyKiller
12-13-2010, 01:19 PM
bepe
Developer Last Online: Aug 2010
:(:(:( So sad, this hack will die, again ... :/
Athena1984
12-13-2010, 02:56 PM
Aww, it looks like I will have to uninstall it then. :(
KrU$ty
12-15-2010, 11:55 AM
to get back the missing CSS statements, just copy the same part from FORUMHOME into the MEDIAWIKIFORUM template
that should do it
Would you mind explaining this with a little more depth? Not quite sure what i am suposed to take from FORUMHOME nor am i sure where i should put it in MEDIAWIKIFORUM.
Everything else you said regarding the editing of the product xml worked.
Cheers.
I really hope this mod will be supported again. I am willing to donate if bepe develops this great mod even more.
MoreLinux
12-19-2010, 10:28 AM
The easiest way to get this super mod working again is the following:
Sidebar: To get the sidebar working again. In the template MEDIAWIKIFORUM find the line with the text {wiki:raw headinclude} Below this line insert the following text {vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.cs s,options.css,tagcloud.css}
The nice navigation bar is missing many CSS elements. This is due to a mayor in the forumdisplay.css file. The best way to fix this to add the following code to you additional.css file.
/* MediaWiki fix */
.above_threadlist_controls {
clear: both;
display:block;
width: 100%;
border: {vb:stylevar forummenu_border};
background: {vb:stylevar forummenu_background};
_background-image: none;
margin-top: {vb:math {vb:stylevar padding}/2};
margin-bottom: 0;
position: relative;
-moz-border-radius: {vb:stylevar forummenu_border_radius};
-webkit-border-radius: {vb:stylevar forummenu_border_radius};
float: {vb:stylevar left};
}
.above_threadlist_controls ul {
padding: {vb:math {vb:stylevar padding}/2} 0;
float: {vb:stylevar right};
margin-{vb:stylevar right}: {vb:stylevar padding};
}
.forumdisplaypopups a.popupctrl, .forumdisplaypopups.popupgroup .popupmenu a.popupctrl {
font: {vb:stylevar forummenu_font};
color: {vb:stylevar forummenu_color};
background: transparent url({vb:stylevar imgdir_misc}/black_downward_arrow.png) no-repeat center {vb:stylevar left};
padding: 0;
padding-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
border: 0;
padding-{vb:stylevar left}: 15px; /* based on icon size */
display:block;
_display:inline;
float: {vb:stylevar left};
clear: {vb:stylevar right};
}
.forumdisplaypopups li {
position: relative;
_display:block;
_float: {vb:stylevar left};
_clear: {vb:stylevar right};
}
/* Watch/Unwatch Icon Styling */
#ca-unwatch.icon a,
#ca-watch.icon a {
margin: 0;
padding: 0;
outline: none;
display: block;
width: 26px;
height: 14px;
}
#ca-unwatch.icon a {
background-image: url(images/watch-icons.png);
background-position: -43px 60%;
}
#ca-watch.icon a {
background-image: url(images/watch-icons.png);
background-position: 5px 60%;
}
#ca-unwatch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -67px 60%;
}
#ca-watch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -19px 60%;
}
#ca-unwatch.icon a.loading,
#ca-watch.icon a.loading {
background-image: url(images/watch-icon-loading.gif);
background-position: center 60%;
}
#ca-unwatch.icon a span,
#ca-watch.icon a span {
display: none;
}
Hope this helps.
KrU$ty
12-20-2010, 07:41 PM
When i add the line
{vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.cs s,options.css,tagcloud.css}
to WIKIFORUMHOME I get an error:
Fatal error: Uncaught exception 'Exception' with message 'Unable to find a class to validate: vB_TemplateParser_Curlycssfile' in /home/sylithr/public_html/GALACTICCONTROL.COM/includes/class_template_parser.php:1083 Stack trace: #0 /home/sylithr/public_html/GALACTICCONTROL.COM/includes/class_template_parser.php(1019): vB_TemplateParser->validate_curly(Object(vB_CurlyNode), Array) #1 /home/sylithr/public_html/GALACTICCONTROL.COM/includes/adminfunctions_template.php(2863): vB_TemplateParser->validate(Array) #2 /home/sylithr/public_html/GALACTICCONTROL.COM/admincp/template.php(2121): compile_template('??{vb:stylevar ...') #3 {main} thrown in /home/sylithr/public_html/GALACTICCONTROL.COM/includes/class_template_parser.php on line 1083The other CSS elements in additional.css work fine though.
EDIT: I used the following code and it fixed the problem with the sidebar:
<vb:if condition="$vboptions['storecssasfile']">
<link rel="stylesheet" type="text/css" href="{vb:raw vbcsspath}forumhome-rollup.css" />
<vb:else />
<link rel="stylesheet" type="text/css" href="{vb:raw vbcsspath}forumbits.css,forumhome.css,tagcloud.css" />
</vb:if>
Now i just need ot get it working with VBa
MoreLinux
12-20-2010, 08:22 PM
@KrU$ty: Looking at GALACTICCONTROL.COM you are running VB4.0.3, so that might the problem. I'm running VB4.1.0pl2 and fixed the broken vbMediaWiki for that version.
amirsyria
12-24-2010, 10:24 PM
Hi, Thank You for this Mod
but, can i register by Arabic names ?? and how ?
and i can't disable magic quotes!! how can i do it ??
I hope, suported Arabic in this mod ant onther, spiceal The style ..
thank you agin ..
hollosch
12-28-2010, 12:52 PM
The nice navigation bar is missing many CSS elements. This is due to a mayor in the forumdisplay.css file. The best way to fix this to add the following code to you additional.css file.
/* MediaWiki fix */
.above_threadlist_controls {
clear: both;
display:block;
width: 100%;
border: {vb:stylevar forummenu_border};
background: {vb:stylevar forummenu_background};
_background-image: none;
margin-top: {vb:math {vb:stylevar padding}/2};
margin-bottom: 0;
position: relative;
-moz-border-radius: {vb:stylevar forummenu_border_radius};
-webkit-border-radius: {vb:stylevar forummenu_border_radius};
float: {vb:stylevar left};
}
.above_threadlist_controls ul {
padding: {vb:math {vb:stylevar padding}/2} 0;
float: {vb:stylevar right};
margin-{vb:stylevar right}: {vb:stylevar padding};
}
.forumdisplaypopups a.popupctrl, .forumdisplaypopups.popupgroup .popupmenu a.popupctrl {
font: {vb:stylevar forummenu_font};
color: {vb:stylevar forummenu_color};
background: transparent url({vb:stylevar imgdir_misc}/black_downward_arrow.png) no-repeat center {vb:stylevar left};
padding: 0;
padding-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
border: 0;
padding-{vb:stylevar left}: 15px; /* based on icon size */
display:block;
_display:inline;
float: {vb:stylevar left};
clear: {vb:stylevar right};
}
.forumdisplaypopups li {
position: relative;
_display:block;
_float: {vb:stylevar left};
_clear: {vb:stylevar right};
}
/* Watch/Unwatch Icon Styling */
#ca-unwatch.icon a,
#ca-watch.icon a {
margin: 0;
padding: 0;
outline: none;
display: block;
width: 26px;
height: 14px;
}
#ca-unwatch.icon a {
background-image: url(images/watch-icons.png);
background-position: -43px 60%;
}
#ca-watch.icon a {
background-image: url(images/watch-icons.png);
background-position: 5px 60%;
}
#ca-unwatch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -67px 60%;
}
#ca-watch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -19px 60%;
}
#ca-unwatch.icon a.loading,
#ca-watch.icon a.loading {
background-image: url(images/watch-icon-loading.gif);
background-position: center 60%;
}
#ca-unwatch.icon a span,
#ca-watch.icon a span {
display: none;
}
[/LIST]
Hope this helps.
Where can I find the additional.css - file ?
hollosch
12-28-2010, 01:27 PM
I have .htaccess-files in ../forum and ../wiki
I posted to both files "php_flag magic_quotes_gpc Off" in the top of the files and it doesn't work. what may be the problem ?
thx
Daryn
12-29-2010, 02:27 AM
So are there any plans to update this with all the mentioned fixes?
MoreLinux
12-29-2010, 06:08 AM
Where can I find the additional.css - file ?The file isn't on the file system. It's a VB template. In the VB4 Admin Control Panel => Styles and Templates => Search in Templates for the "additional.css" file.
hollosch
12-29-2010, 03:03 PM
The file isn't on the file system. It's a VB template. In the VB4 Admin Control Panel => Styles and Templates => Search in Templates for the "additional.css" file.
Thanks, works perfect !!!
iamacyborg
12-29-2010, 03:55 PM
Any chance this works for vB 3.86?
hollosch
12-30-2010, 03:44 PM
I have .htaccess-files in ../forum and ../wiki
I posted to both files "php_flag magic_quotes_gpc Off" in the top of the files and it doesn't work. what may be the problem ?
thx
Nobody else the same problem or a solution ???
FreshFroot
01-03-2011, 04:29 AM
Any chance this works for vB 3.86?
Same here. Wondering if a 3.8 version will be made.
I assume there isn't too much coding involved.
pjkcards
01-06-2011, 08:38 PM
How does this merge accounts? How do I login to my wiki account if I had a different username on the forum and wiki? How does one register for the wiki?
Thanks
wbottomley
01-08-2011, 11:07 PM
I would read the directions but the coder's site is "OOS."
mmacrypt
01-09-2011, 03:06 AM
is this mod actually working for some? I'm getting the same error previously posted twice but never address, it's most likely that I just did something stupid, this is one of the harder mods I've installed to be honest. But I guess I'm curious if I get past this first hurdle, will there just be a ton more that I'm going to have to figure out. It doesn't look like the author of this mod and been on since Aug. so I just don't want to waste too much time digging in versus finding another option.
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home6/mmacrypt/public_html/w/includes/vbMediaWikiAuthPlugin.php on line 9
Thanks for any input guys.
Mukashi
01-09-2011, 09:57 PM
It's really a pity that this mod seems to have been abandoned. If it's not working on the latest vB4, and given that the mod author and his site seem to have vanished, is anyone up to the challenge of re-writing this for the latest version of both vB and Mediawiki? Too many of us are being left high and dry here.
NovoCiv
01-09-2011, 10:38 PM
I PM'ed mmacrypt with the solution to his problem. (Rather, he messaged me and I responded).
It's working for me but I'm still on 4.0.5 (I've edited too many files to my liking, an upgrade would revert too many things).
Yes. The solution was to move the entire mediawiki directory inside the forums directory.
/public_html/forums/wiki/mediawiki/LocalSettings.php
In localsettings my install path is as follows:
define( "VB_INSTALL_PATH", "/home/novociv1/public_html/forums");
require_once( "$IP/includes/vbMediaWikiAuthPlugin.php" );
I believe my issue had to do with the fact that we run at forums.novociv.com but the code was trying to work with novociv.com/forums.
xuanhuy238
01-10-2011, 12:31 AM
I can't access to bepe80.com and can't RTFM...
mmacrypt
01-10-2011, 02:56 AM
I PM'ed mmacrypt with the solution to his problem. (Rather, he messaged me and I responded).
It's working for me but I'm still on 4.0.5 (I've edited too many files to my liking, an upgrade would revert too many things).
I believe my issue had to do with the fact that we run at forums.novociv.com but the code was trying to work with novociv.com/forums.
Thank You NovoCiy, I will give it a shot but it sounds like it may just be too many battles for me to win as I'm not the best at this stuff.
tdev1
01-10-2011, 05:39 AM
the problem we experience atm on saving a page:
Sorry! We could not process your edit due to a loss of session data. Please try again. If it still does not work, try logging out and logging back in.
if you press save again, it works, just not the first time :-/
also, page deletion does not work.
NovoCiv
01-10-2011, 11:14 PM
the problem we experience atm on saving a page:
Sorry! We could not process your edit due to a loss of session data. Please try again. If it still does not work, try logging out and logging back in.
if you press save again, it works, just not the first time :-/
also, page deletion does not work.
I get these bugs too. No idea how to fix it. I think I just remove pages from the database when I want to delete them.
SpankMe
01-10-2011, 11:46 PM
I get these bugs too. No idea how to fix it. I think I just remove pages from the database when I want to delete them.
I found creating/deleting a test page, then try deleting the page again works.
mmacrypt
01-12-2011, 01:08 AM
Thanks for the help NovoCiv but I think I'm going to just drop this one. You tips didn't work for me and as this mod seems kinda dead, I could be chasing it for a while.
But again, thank you Novo.
BRotondi
01-13-2011, 04:43 AM
Trouble with uninstalling and solution here (http://www.mwusers.com/forums/showthread.php?14384-MediaWiki-vBulletin-Bridge&p=53258&viewfull=1#post53258):
I host a site which had run this mod, but we had been running into too many issues, like having to save again or log out then in again. We have since removed this modification, but the users who created accounts when we started using this mod are having trouble logging in. How do you fix those accounts? They're missing several bits of information in the user table, not the least of which being their e-mail addresses (easily taken care of) and passwords (eh, semi-easily taken care of). Even when I populate the columns for password and e-mail, the user cannot log in. I checked and rechecked the hashing needed to create the password, including against a known-working account, my own. Still no dice. Any ideas?
I have managed to get things working again. I found that I needed to set the user_email_authenticated column.
pjkcards
01-14-2011, 12:31 AM
On the left side, the collapse menu arrows aren't working. The URL of those images is:
http://www.domain.com/forum/http://www.domain.com/testforum/forum/images/buttons/collapse_40b.png
How do I solve this issue?
Thanks
BRotondi
01-14-2011, 05:12 AM
404 with your link and the corrected
http://www.domain.com/testforum/forum/images/buttons/collapse_40b.png
pjkcards
01-15-2011, 02:00 AM
I understand the correct link, but how do I edit the URL to that location? What do you mean by 404? Many thanks.
pjkcards
01-15-2011, 02:18 AM
I am having another issue. I have had a forum and a wiki separate for quite awhile. I just installed them plugin. How can a user signin to the wiki using their old account? It is possible they had different usernames on the wiki. Is there a way I can turnoff the single-signon feature but leave everything else the same?
I have run the init counters, but I am getting database errors similar to this:
Database error in vBulletin 4.0.6:
Invalid SQL:
UPDATE user SET
wikiedits = '0',
wikicreations = '0'
WHERE username = ''rio';
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'rio'' at line 4
Error Number : 1064
Request Date : Friday, January 14th 2011 @ 11:17:29 PM
Error Date : Friday, January 14th 2011 @ 11:17:29 PM
Script : http://www.domain.com/wiki/vbmediawiki/?language=en-us&do=admin&exec=initcounters
Referrer : http://www.sdomain.com/wiki/vbmediawiki/?language=en-us&do=admin
IP Address : 67.165.204.84
Username : ghost
Classname : vB_Database
MySQL Version : 5.0.91-community
How do exisiting users login?
pjkcards
01-17-2011, 02:11 AM
How do I uninstall this product?
S3Ponline
01-17-2011, 12:26 PM
awesome mod!
Scan Cape Cod
01-27-2011, 02:38 PM
How do I uninstall this product?
Given that it appears that this has been abandoned, which is unfortunate but is also the case with many of these wonderful mods (hopefully the coder is actually ok, not ill, etc.) could someone if possible come up with a SAFE way to properly uninstall this modification?
Given that vBulletin is now several versions beyond 4.07 it would be nice to be able to upgrade to the latest version. It appears the only solution to keep both vBulletin and MediaWiki up to date is to remove this mod.
If someone had the time to provide a brief tutorial it would be appreciated. I would normally reverse the installation procedure to do so and maybe that is the correct thing to do, but I am concerned for the integrity of my wiki, which now has an astronomical amount of data in it (yes it's backed up).
Thanks in advance.
Scan Cape Cod
01-28-2011, 04:44 PM
Followup: for anyone else considering the removal of this, it is as many of you expected (forgive me, I am not a coder nor do I play one on TV) very easy and basically a reversal of the installation.
1. Uninstall the plug-in.
2. Remove the two added lines to localsettings.php
3. Remove all associated files.
4. You're back in business with a standalone Wiki.
I'm still looking at the impact on username/passwords right now, but I would "think" that it would leave all of the data from vBulletin in there. Maybe I'm wrong but I'm just glad I could "de-integrate" without issue.
SpankMe
02-05-2011, 06:38 PM
I've just upgraded to vB 4.1.2 and vbMediaWiki Vector is still working fine for me. Haven't made any changes.
wampforum
02-09-2011, 09:17 AM
I wonder if anyone can help?
I have the wiki set up and running and I did have an rss widget feeding into my vbulletin cms pulling content from the wiki feeds. All was fine then some error with the host turned magic quotes back on and even though they have been turned back off the widgets havent worked since.
The widgets work fine with any other feeds I try and the wiki feeds themselves work fine in other widgest or readers - they just wont work together with this feed. I just dont understand what the issue is if the feed is good and the widget is also.
electron
02-25-2011, 09:17 AM
Have someone the manual for me? The website (http://bepe80.com/vbmediawiki/#installation) is down...
Mnemonic76
03-04-2011, 11:08 AM
electron: All you need to do is find some existing installation. They all have the docs included. For example here: http://www.qtcentre.org/wiki/vbmediawiki/
Wordplay
03-11-2011, 08:13 AM
i hate it when people upload the screen caps to an external site.
does anybody have screen caps so we can see what this looks like?
magmf
03-11-2011, 09:46 AM
under-linux.org/wiki -> my wiki :)
Stubbed
03-12-2011, 07:03 PM
Bit concerning that the developer hasn't been online this month and their website has disappeared? :S
Cyamia
03-14-2011, 02:29 PM
electron: All you need to do is find some existing installation. They all have the docs included. For example here: http://www.qtcentre.org/wiki/vbmediawiki/
Thank you so much Mnemonic76!! I have been looking for those instructions for a while.
Allow me to ask a question to those who already have installed this vbMediaWiki Vector successfully: What does this means:
Replace "<<placeholder>>" by the relative path to your vBulletin installation
That is on the manual on section 4.4.1 (or just here: http://www.qtcentre.org/wiki/vbmediawiki/#wiki)
Thank you in advance of your helpful answer(s)
Stubbed
03-16-2011, 08:11 PM
^-- Really?
Replace "<<placeholder>>" by the relative path to your vBulletin installation. Ensure you do not add a trailing slash!It says it right there. Something like "/var/www/site/forum" or "../forum/" or what ever suits in your installation.
Cyamia
03-17-2011, 02:06 AM
^-- Really?
It says it right there. Something like "/var/www/site/forum" or "../forum/" or what ever suits in your installation.
Thank you so much. I will go with "../forum"
But I do not think we put the "/" at the end as you have mentioned
LuMiS!
03-17-2011, 07:49 PM
I found a way to disable magic quotes if your server fails when adding the codes to the .htaccess ... but it takes time, you need to create a php.ini file that only contains this line:
magic_quotes_gpc = Off
And need to store the file in every folder that is contained in the mod... this will disable the magic quotes locally ...
Arcanus
03-22-2011, 07:08 AM
I was very happy to find this plugin but I've had a slight problem with spam. There are somehow users able to register for the wiki without being a member of my vbulletin board. Is there a way to block edits from any user not in vBulletin?
Daryn
03-27-2011, 08:34 PM
Has anyone here been able to fully fix the Forum Skin integration? If so, could you possibly go over the template edits you need to do to get it displaying properly again?
pete_brady
04-05-2011, 03:19 PM
running latest mw + vb 4.1.3b1 and get this error on every new page load
Fatal error: Call to undefined method STATUS::newGood() in /home/mydomain/public_html/w/includes/PoolCounter.php on line 60
it goes away if the page is reloaded....
any ideas, anyone?
J?r?mie
04-06-2011, 01:32 PM
Bit concerning that the developer hasn't been online this month and their website has disappeared? :S
I am. Was considering using this for my vB/MW bridge, but it doesn't seem to work on the next vB beta, and the next MW will have significant changes with the new Resources Loader...
claystation
04-06-2011, 02:34 PM
running latest mw + vb 4.1.3b1 and get this error on every new page load
it goes away if the page is reloaded....
any ideas, anyone?
I was getting this error until I uninstalled the plugin DragonByte Tech: User Status & Moods.
Do you happen to have this plugin installed or another plugin that might be messing your wiki up?
pete_brady
04-06-2011, 06:56 PM
please hold...
pete_brady
04-06-2011, 06:59 PM
yep - disabling User Status & Moods makes the problem go away
thanks!
hollosch
04-11-2011, 08:50 PM
I'm getting this error when trying to upload images to the wiki - I have managed to upload one image before but since then nothing has worked.
Same problem to me. Is there a solution for the upload and saving problems ?
NarutoFTW
04-12-2011, 08:20 PM
I tried re-installing this mod and I get this error:
XML Error: no element found at Line 0
David Karol
04-27-2011, 04:51 AM
Hi,
I just installed this on 4.1.3.
While logged into the forum, a username doesn't show in the Wiki, just my IP, as if I were a random user. I can't get into user preferences either.
http://files.davidkarol.com/fd301f48.png
Could there be something obvious I overlooked?
Thanks
ndahiya
05-01-2011, 12:17 AM
As bepe's site is down, the path to the manual is:::
yoursite.com/wiki/vbmediawiki/
washingtonboise
05-05-2011, 04:27 AM
Subscribed to thread. I recently paid for Vaultwiki, but want to keep an eye on other top wiki solutions for vbulletin.
Khriz
05-13-2011, 01:36 PM
funciona en vbulletin 4.1.3 ?
XiTCLUB
05-15-2011, 11:02 PM
Screen Shot Link is not working
Isaibed
06-06-2011, 06:54 AM
I have a Problem:
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /www/htdocs/w009bff8/stoneu/forum/wiki/skins/vbMediaWikiForum.php on line 487
Fatal error: Class 'vB_Template' not found in /www/htdocs/w009bff8/stoneu/forum/wiki/skins/vbMediaWikiForum.php on line 491
i get this if i switch the skin in MediaWiki, my second problem, the Media Wiki is not in the Forum, it is seperated...you can see http://www.sto-center.de i want it like http://www.apfeltalk.de
i try to read the "RTFM" but the server are down...
David Karol
06-22-2011, 11:56 PM
As it seems the user integration doesn't work fully, how would I go about only integrating the skins?
iamacyborg
07-22-2011, 08:51 AM
Just set up a new site running this with the latest versions of Mediawiki and vB and I'm happy to say that it mostly works.
I've noticed issues with the bb code not working properly and the search function not working, but the user integration and skins appear fine.
http://www.hellgateforums.com
Big Kahuna
07-26-2011, 11:18 PM
Here's my situation
I'm running MediaWiki 1.13.2
VB3.87
The bridge is MMOG Wiki 2.2.0
and my server is running MySQL version 5.0.92-community & PHP version 5.2.17
I can't upgrade to the newest version of MediaWiki because it was a more recent MYSQL. My server guy wants to wait to the next version of MYSQL because he says a lot of the applications running on the server will have issues.
I would like to upgrade to VB4 -- but I can't lose my Wiki.
Has anyone been in this same situation -- and were you able to fix it?
Isaibed
07-31-2011, 06:39 PM
i have a little problem, my problem is the Sidebar, atm its not a side bar, its under the content, but i want the sidebar on the right side, like the forum, how can i do that?
DaffyDuck
07-31-2011, 06:51 PM
I take it that this mod has been orphaned / abandoned, seeing as how the manual and screenshot links go to a server that is no longer operational?
iamacyborg
08-04-2011, 09:45 AM
Daffy, it's working perfectly for me on the latest version of vB 4 and Mediawiki.
The manual will automatically be installed on your site when you install the mod, so it's no problem.
You can see it working here: http://www.hellgateforums.com/wiki
Mukashi
08-05-2011, 03:26 AM
Even if it's working currently, without an active developer it'd be a bit dangerous to install it, given that you might be put in a situation of having to decide between site security and a working wiki.
stephen1976
08-05-2011, 11:57 AM
Anyone got instruction on how to install this i dont have any wiki on my site yet
nima6
08-27-2011, 08:24 PM
Im installing this mod on my forums and will report the result.
here is a working link to the manual: http://wamp-forum.com/wiki/skins/vbmediawiki/
nima6
08-27-2011, 08:58 PM
Oh boy, i love this mod. Im just getting started with it but its absolutely amazing if you have already have an active wiki
If you dont have a wiki, whats the hold up?
ndahiya
08-28-2011, 04:56 PM
I upgraded to Mediawiki 1.17 and vbulletin 4.1.5 - integration still works.
See post 300 (https://vborg.vbsupport.ru/showpost.php?p=2136317&postcount=300 ) and also post 301 for some discussion on style integration.
separately, for those having issues (previously) with uploading images / thumbnails, it had something to do with a imagemagick bug. this is the workaround i use in LocalSettings.php - seems to work fine.
# $wgUseImageMagick = true;
# $wgImageMagickConvertCommand = "/usr/bin/convert";
$wgCustomConvertCommand = "/usr/bin/convert -resize %wx%h %s %d";
ndahiya
Vincinzerei
09-09-2011, 01:13 PM
Dont know what iam doing wrong, but my useraccounts/access isnt ported to the media wiki.
it just states "you are not logged in" but no matter how often a login is tryed.. in the board success in the wiki still not logged in.
pjkcards
09-12-2011, 07:22 PM
Awesome mod, too bad it isn't supported. I'd certainly pay for it.
Anyways, anyone know which template to modify to add an image to the sidebar. It doesn't look like monobook.php is the correct one. Thanks
Vincinzerei
09-13-2011, 01:54 PM
got it running. Its important to NOT use any restrictions at the install and delete them out of the LocalSettings.php if they exist there. isnt in the manual.. took me 5 days to realize the problem ;)
Got it running with 4.1.5 and mediawiki 1.17, not bad for an unsupported (abandoned?) Product.
@PJkcards
the vector Skin is used, also a modified one, delivered with the mod itself. You can find it as
vbmediawikivector and/or vbmediawikiforum
pjkcards
09-17-2011, 01:17 AM
@PJkcards
the vector Skin is used, also a modified one, delivered with the mod itself. You can find it as
vbmediawikivector and/or vbmediawikiforum
Do you know where in those the sidebar code is? I can't seem to dig it out. Thanks
crazyace
10-03-2011, 09:41 PM
So is this MOD dead?
ndahiya
10-03-2011, 10:20 PM
Do you know where in those the sidebar code is? I can't seem to dig it out. Thanks
/wiki/Mediawiki:Sidebar
ndahiya
10-03-2011, 10:21 PM
So is this MOD dead?
it still works, so not dead for me :)
SpankMe
10-21-2011, 10:07 PM
I've upgraded to vB 4.1.7 & MediaWiki 1.17.0 and it's works fine. In fact it works better. I no longer have to click twice to save edits or move/delete pages.
Flightbase
10-23-2011, 07:25 PM
Just upgraded to vb 4.1.7
As in 4.1.0 PL2 image uploads do not work at all. In 4.1.0 PL2 some usergroups could not upload, now everyone using firefox can upload. IE, chrome, Safari and Opera are not working, getting the error:
Sorry! We could not process your edit due to a loss of session data. Please try again. If it still doesn't work, try logging out and logging back in.
I tried the common fixes like:
Check if /var/lib/php5 is writable and not readable for user and world ( # chmod 733 /var/lib/php5 )
Check to see if your session.save_path value in php.ini is valid and writable to the webserver - PHP configuration.
Check to see if there is enough disk space.
After making changes restart Apache:
/etc/init.d/httpd restart
If you use memcached and enable $wgSessionsInMemcached, make sure that memcached is really working.
Any tips, why FF ist working, all other browsers don`t?
greets, Nik
SpankMe
10-23-2011, 10:03 PM
Not sure if image uploads worked before, but just tried with vB 4.1.7 & MediaWiki 1.17.0 and no problem.
http://www.kiwibiker.co.nz/wiki/Special:ListFiles
claystation
11-08-2011, 04:33 PM
got it running. Its important to NOT use any restrictions at the install and delete them out of the LocalSettings.php if they exist there. isnt in the manual.. took me 5 days to realize the problem ;)
Got it running with 4.1.5 and mediawiki 1.17, not bad for an unsupported (abandoned?) Product.
@PJkcards
the vector Skin is used, also a modified one, delivered with the mod itself. You can find it as
vbmediawikivector and/or vbmediawikiforum
I have 4.1.7 running and upgraded to mediawikiforum, now I am having the same problem as this. It says users are not logged in. Tried your suggestions but to no avail. Any other suggestions, from anyone? The site seems to function properly otherwise, except I can't edit anything unless I turn the mod off and edit the Mediawiki without this mod.
pjkcards
11-20-2011, 04:34 PM
Hi Bepe,
nice Mod, thank you!
I?ve got a problem with usernames.
German names often contain umlaute (?, ?, ?).
They can not log in and receives the following message:
Fatal error: Call to a member function getID() on a non-object in /homepages/37/d25485545/htdocs/forum/wiki/includes/vbMediaWikiAuthPlugin.php on line 136
The forum does not run on UTF8.
Because of the hugh number of users and threads it is not convenient to modify the forum into UTF8.
Do you have a solution?
Vbulletin 4.0.7
Wiki 1.16
Mod Vers.1.06 RC
Thanks in advance
Dirk
Is there a solution to this yet? Many thanks in advance, I appreciate it.
ndahiya
12-17-2011, 03:07 AM
Important: This (finally) has stopped working with Mediawiki 1.18 .
works with vb 4.1.9 and Mediawiki 1.17 . but upgrading to MW1.18 breaks a bunch of stuff. login still works, but skin integration is a problem, advanced edit toolbar is not visible etc... I am back to MW 1.17 for now...
ndahiya
Vincinzerei
12-20-2011, 03:04 PM
@PJcards
hat the Same Problem.
Made vbWIKI to change the Username internal form ÖÄÜ to oe,ae,ue
Isaibed
01-07-2012, 03:22 PM
Hi my Problem again, with a new Board...if i want change the Skin in Mediawiki, so i get an Error like that:
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /homepages/41/d396283972/htdocs/wiki/skins/vbMediaWikiForum.php on line 487
Fatal error: Class 'vB_Template' not found in /homepages/41/d396283972/htdocs/wiki/skins/vbMediaWikiForum.php on line 491
what can i do, for a correct view, because i want an integration of the wiki inside from my board, you can see ist here www.freies-konsortium.de
pjkcards
01-08-2012, 02:33 PM
@PJcards
hat the Same Problem.
Made vbWIKI to change the Username internal form ??? to oe,ae,ue
Thanks. Where/how did you make this change?
NetTraptor
01-14-2012, 01:21 PM
disabling the mod and using the wiki standalone rectifies this error so it has to be an issue with how the mod is handling sessions
This is a session problem. I have not found a way to solve it not even after adding various upload extensions to the wiki (I was expecting another plugin uses different methods) or even after adding session_save_path to scripts.
If you turn the plugin off then all works fine with the wiki.
Even looked around on the net to see if their is a working installation that can upload files to the wiki. I found nothing since some of the forums restrict edits before you do a certain amount of post while the ones that are open to edits have the same exact problem. After this I consider this plugin broken. The upload feature in a wiki is essential
It's a shame to have such an excellent integration script that brakes wiki uploads :(
Dave Alcock
01-24-2012, 06:44 PM
This is a session problem. I have not found a way to solve it...
Even looked around on the net to see if their is a working installation that can upload files to the wiki. I found nothing since some of the forums restrict edits before you do a certain amount of post while the ones that are open to edits have the same exact problem. After this I consider this plugin broken. The upload feature in a wiki is essential
It's a shame to have such an excellent integration script that brakes wiki uploads :(
I installed this mod last weekend and got wiki uploads working just fine on my side (http://www.theforumsa.co.za/wiki/index.php/Test_page). I'm using Mediawiki 1.17.2 and vBulletin 4.1.10
Have you disabled magic_quotes in php? Trying to do anything with the wiki was hell until I got that setting sorted out.
I have to say this is one impressive mod. It may need a little tweaking here and there to clean things up and get everything working as advertised, but it really is 95% there. Bepe, I don't know where you've gone, but I really appreciate what you've put together here. It must have been a pile of work...
Skyrider
01-27-2012, 09:03 AM
Some demo's would be awesome. The creator of this plugin's website / screenshots is completely dead.
The Slug
02-10-2012, 01:33 PM
Hi,
Just found this addon and looks just the item we need, being a newby to vbulletin I really need the install manual as I have no idea where to go from here so if Anyone has a copy of the install manual can they let me know please.
Non of the links are working for me alas..
Thanks.
clutchthese
03-25-2012, 02:24 PM
disregard.
tcviper
04-05-2012, 07:33 AM
Same for me, can someone pls post the manual and how to install? All links above are down!?
daviet
04-19-2012, 05:07 AM
Same for me, can someone pls post the manual and how to install? All links above are down!?
Looking at installing this also. I found this:
http://www.qtcentre.org/wiki/vbmediawiki/
Edit: after actually installing it, /wiki/vbmediawiki/ works with my own install. After a couple small tweaks the install is looking great and I support any effort to keep this mod alive and up-to-date.
SpankMe
05-06-2012, 08:38 PM
I have updated bepe's mod to work on vB 4.1.12 and MediaWiki 1.19.
I have tested on a clean install of the above versions as well as two of my sites that use this mod after updating them to the above versions and all seems to work ok.
daviet
05-07-2012, 02:15 PM
I have updated bepe's mod to work on vB 4.1.12 and MediaWiki 1.19.
I have tested on a clean install of the above versions as well as two of my sites that use this mod after updating them to the above versions and all seems to work ok.
Thanks for the effort and for sharing SpankMe! Good to know there is still interest in this great mod. I'll test it out and let you know if I run into any issues.
daviet
05-12-2012, 04:05 PM
SpankMe's update is working perfectly for me, I use the vector integrated view. Thanks again!
I made one slight enhancement to add the wiki home link to the breadcrumb:
================================================== =================
--- release/wiki_upload/skins/vbMediaWikiVector.php
+++ release/wiki_upload/skins/vbMediaWikiVector.php
@@ -672,12 +672,12 @@
$current_dir = getcwd();
chdir( VB_INSTALL_PATH );
- global $vbulletin;
+ global $vbulletin, $vbphrase;
/*
* 1. create navbar with place holders
*/
- $navbits = construct_navbits( array('{wiki:raw rootlink}' => $vbulletin->options['mediawiki_name'],'' => '{wiki:raw actualtext}') );
+ $navbits = construct_navbits( array('{wiki:raw rootlink}' => $vbphrase['mediawiki_name'], '' => '{wiki:raw actualtext}' ) );
$navbar = render_navbar_template($navbits);
ndahiya
05-19-2012, 11:07 AM
I have updated bepe's mod to work on vB 4.1.12 and MediaWiki 1.19.
I have tested on a clean install of the above versions as well as two of my sites that use this mod after updating them to the above versions and all seems to work ok.
SpankMe: this is sufficiently different from the old mod (version compatibility, some "enhancements") that you should release it as a separate thread...
ndahiya
pjkcards
05-24-2012, 04:35 PM
I've uninstalled this. However, the database is still a bit messed up. N
When I try to make an account for "Nickname", I receive this message: Login error. Username entered already in use. Please choose a different name.
When I ask for a password, I receive this message: There is no e-mail address recorded for user "Nickname".
Has anyone found a solution for this? I'm yet to resolve peoples accounts with this. Any help would be much appreciated.
Thanks!
Bellethiel
06-08-2012, 05:41 PM
SpankMe: this is sufficiently different from the old mod (version compatibility, some "enhancements") that you should release it as a separate thread...
ndahiya
Yeah it would be great if someone would continue that mod in a seperate thread. I doubt we'll ever see bebe again since he's already gone for almost 1,5 years now.
svyrydov
06-10-2012, 10:01 PM
I'm using: vB 4.1.10 + WM 1.19
Since I'm applying skins ( vbMediaWikiForum or vbMediaWikiVector)
Getting errors:
Fatal error: Class 'vB_Template' not found in /home/maersk/public_html/wiki/skins/vbMediaWikiForum.php on line 491
or
Fatal error: Call to undefined function construct_navbits() in /home/maersk/public_html/wiki/skins/vbMediaWikiVector.php on line 680
http://maerskforum.com/wiki
Thanks.
Dirks
06-26-2012, 12:10 AM
I realize this mod doesn't get support from its creator anymore, but maybe one of you guys can help me. I've got everything installed, and it looks fine. However, the program is not linking up user names (i.e. creating a matching account from vB to Media wiki). Any ideas for a fix?
mohammad6006
06-30-2012, 10:41 AM
for vb 4.2.x ?
lawiki
08-21-2012, 12:01 PM
this is amazing stuff, just what I needed.
I have added this and it seems to work but have 2 questions
1) I have a rather large base of users in mediawiki, how can I add these to the vbull system
2) I do not get the WIKI link in the navbar at all
lawiki
08-26-2012, 03:56 AM
I have fixed above issues, but still have some problems.
1) Mainly I can not edit the wiki, as any user.
I have made sure the :can login: option is selected for the right user-groups, and have edited my localsettings.php to make sure nothing is blocking this,
2) in the wiki VBMEDIAWIKI location, when I click on ADMIN TOOLS, I get :** Access denied! ***:
3) Same area I try to go to DIAGNOSTICS and I get
1 of 7: Checking MediaWiki Installation
Fatal error: Class 'SiteConfiguration' not found in /home/lawiki/public_html/includes/DefaultSettings.php on line 32
Can someone please have a look? Our wiki is rather large and the vbulletin integration is just what we needed to get some more community to it.
nima6
08-27-2012, 05:39 PM
I have a problem with the MediaWiki pages showing up in VBulletin search results. First, the search doesn't always return the best results. More importantly though, the links to the MediaWiki pages are not the ShortURL (SEO friendly) ones that I've defined in that platform.
Basically the search result in VB is creating a lot of links that shouldnt be there. How can I fix the URL for MediaWiki pages showing up in VB search results?
Draffi
08-31-2012, 06:59 AM
Nobody a working solution for Bridging a Mediawiki with vbulletin ???
Not possible!
lawiki
08-31-2012, 01:14 PM
Nobody a working solution for Bridging a Mediawiki with vbulletin ???
Not possible!
uhh, mine works perfectly with this mod...
Draffi
08-31-2012, 08:12 PM
What MW and VB do you use?
I have VB 4.2 and MW 1.16 (in xampp) and it is not working...
jasharen
09-02-2012, 04:29 PM
I am getting the same access denied when I go to admin tools...
jasharen
09-02-2012, 04:32 PM
Ok I was logged in as the wrong user :)
Logged in as administrator on vbulletin and had no problem getting to the admin tools page.
However I still get the following on the diagnostics:
RROR:
The MediaWiki is not cofigured/installed yet. Please run the MediaWiki install script and do the configuration.
nima6
09-04-2012, 11:17 AM
The installation manual links dont seem to be working. Anyone know where i can find them?
nima6
09-04-2012, 11:51 AM
I have updated bepe's mod to work on vB 4.1.12 and MediaWiki 1.19.
I have tested on a clean install of the above versions as well as two of my sites that use this mod after updating them to the above versions and all seems to work ok.
The original mod didn't quite work for me but this one did.
Thanks
Flightbase
09-06-2012, 09:23 AM
uhh, mine works perfectly with this mod...
using which versions of vbulletin and mediawiki?
we`re having big problems with uploading images (session invalid), usernames with ???(forum ist NOT in utf-8), and some smaller glitches.
i think converting the forum to utf-8 would be an option - but the efford seems mighty.
greets, Nik
lawiki
09-07-2012, 12:33 PM
I am using vbulletin 4.1 and mediawiki 1.19
its working to perfection, make sure you READ all the posts as someone posted a fixed version on page 27, also a link to a working manual.
lawiki
09-07-2012, 12:38 PM
The only question I have,
How can I change "wiki" to "something else" and put WIKI first and FORUM second?
ndahiya
09-19-2012, 02:15 AM
I have fixed above issues, but still have some problems.
1) Mainly I can not edit the wiki, as any user.
I have made sure the :can login: option is selected for the right user-groups, and have edited my localsettings.php to make sure nothing is blocking this,
2) in the wiki VBMEDIAWIKI location, when I click on ADMIN TOOLS, I get :** Access denied! ***:
3) Same area I try to go to DIAGNOSTICS and I get
1 of 7: Checking MediaWiki Installation
Fatal error: Class 'SiteConfiguration' not found in /home/lawiki/public_html/includes/DefaultSettings.php on line 32
I am now on vb 4.2 patch 2 and mediawiki 1.19.2
1. the edit permission issue: it appears to be a problem (in vb 4.2 only or other versions also?) due to token issues. For some reason, the token is not being created for "new" wiki users.
one fix that has worked for me is to run: php resetUserTokens.php in wiki/maintenance/
I have create a updated version resetUserTokensNull.php that only sets the tokens for users who do not have one. And i set it up as a cron job every hour... This is the best solution i can find so far.
2. and 3. the diagnostics /admin tools appears to be broken for good.
There seems to be another issue with the way caching is being done in SpankMe's version. Memcached cache performance has falled from close to 100% to ~75% (that is a HUGE difference). Not sure why.
Lastly: for not-logged-in users, instead of login at the top right of the wiki (using the Vector skin), see this
<0> Back to the Forum where the <... links to the logout link...
SpankMe? : Please create this mod as a new thread as it has undergone so many changes.
ndahiya
ndahiya
09-19-2012, 02:16 AM
The only question I have,
How can I change "wiki" to "something else" and put WIKI first and FORUM second?
set it up in VB Admincp/Settings/Navigation Manager
Draffi
09-21-2012, 06:16 AM
Looks like something is messed up with my value for "forumspath"...
Can somebody gives some example of the right path?
My forum is www.mydomain.com and my wiki is www.mydomain/wiki/
There are no errors...nothing...the diagnostics stopped at point 3
Macindy
10-21-2012, 09:03 AM
using which versions of vbulletin and mediawiki?
we`re having big problems with uploading images (session invalid), usernames with ???(forum ist NOT in utf-8), and some smaller glitches.
i think converting the forum to utf-8 would be an option - but the efford seems mighty.
greets, Nik
Have the same issue. Any solution for this?
Sangheili
11-07-2012, 12:59 AM
It would be nice if this plugin was relaunched and actually worked with the latest version of vBulletin :(.
Flightbase
12-14-2012, 07:45 PM
vb 4.2.0 PL3 and MW 1.20.2 does not work. even with spankys version.
Anyone got 4.2.0 PL3 - and some working bridge? I`d like to know if maybe 1.19.0 works - oder if 4.2.0 PL3 breaks everything...
greets, Nik
ndahiya
12-29-2012, 02:22 AM
vb 4.2.0 PL3 and MW 1.20.2 does not work. even with spankys version.
Anyone got 4.2.0 PL3 - and some working bridge? I`d like to know if maybe 1.19.0 works - oder if 4.2.0 PL3 breaks everything...
greets, Nik
it works for 4.2.0 PL3 and MW 1.19 - i am using this set up.
<as always, need to make sure magic quotes gpc is off>
ndahiya
ndahiya
01-21-2013, 06:21 PM
Hi guys,
Here is an updated version to SpankMe's version (https://vborg.vbsupport.ru/showpost.php?p=2326856&postcount=392) with some fixes and one that is working with VB 4.2 PL3 and Mediawiki 1.20.2 .
You can access the manual and diagnostics at www.YourSite.com/YourWiki/vbmediawiki/
** To avoid the edit permissions issue, navigate to your wiki/maintenance/ directory
and run :
php resetUserTokens.php
Alternatively, upload the attached resetUserTokensNull.php to the wiki-maintenance directory (it only sets the tokens for users who do not have one - much faster). And set it up as a cron job every hour... This is (still) the best solution I've found so far.
Installation instructions:
1. Upload the wiki_upload files to the wiki folder, and the forum_upload files to the forums folder.
2. Import the product in vbulletin.
3. Set the variables in Settings --> Options --> vBulletin Mediawiki.
4. Grant permissions to various usergroups.
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
Release Notes:
Version 1.1 (21 Jan 13):
* The diagnostics page is fixed.
* The navigation bit (login and logout links) in the Vector skin is fixed. <-- If you use the vector skin with memcached, this improved my cache efficiency meaningfully (suspect because how the login/logout link was created for not-logged in users).
Version 1.2 (2 Feb 13):
* Upgrade instructions: upload files, upgrade product using XML file.
* Support for short URLs. You MUST update the wiki path if you install this version. The previous version works fine, except that the sitemap (and other links to the wiki) create by vbulletin refers to the old style links.
Now, Instead of specifying the wiki path as www.SITE.com/YourWiki (no trailing slash), you now should enter it as www.SITE.com/YourWiki/index.php?title= OR www.SITE.com/ShortURL/ (with trailing slash).
* For more on mediawiki short URLs, see: http://www.mediawiki.org/wiki/Manual:Short_URL/Apache or http://shorturls.redwerks.org/ .
Version 1.32 (13 Feb 13): (also changes from 1.30, 1.31):
* Upgrade instructions: upload files, upgrade product using XML file.
* Wiki submenus show in integrated skins.
* Loss of session data errors should be fixed.
* Reduced queries for logged-in users.
* Fixed issue with diagnostics page (likely linked with a apc bug).
Regards
ndahiya
Draffi
01-21-2013, 11:15 PM
Thank you - i will try this at weekend on my vB 4.2 and MW 1.16...
bzcomputers
01-22-2013, 05:02 AM
I'm going to try and tackle installing this shortly also.
Just one question for now. In reading through this thread before I believe I came across issues mentioned about spaces within a "username" like "Bill Smith". Is this still something that is still causing issues in the unified login between vb and MediaWiki?
fernas
01-26-2013, 12:16 AM
Hi, I'm having a problem with WikiEditor. I already installed the correct extension on my MediaWiki 1.20.2 but the editor doesn't show when I'm using forum skin. When I use vector skin all is working fine.
Anyone know how to solve this?
Thanks in advance :D
ndahiya
01-26-2013, 12:02 PM
Hi, I'm having a problem with WikiEditor. I already installed the correct extension on my MediaWiki 1.20.2 but the editor doesn't show when I'm using forum skin. When I use vector skin all is working fine.
Anyone know how to solve this?
Thanks in advance :D
Hi fernas,
i am able to see the editor in all skins on my installation. for some reason, i am unable to see the wikieditor toolbar in any of the skins, but suspect that is an issue with mediawiki/javascript rather than the skin.
the stupid suggestion is to delete all history/cookies and do it again. also if you are using APC with stat=0, you might like to flush apc as well.
ndahiya
tomtom1984
01-29-2013, 03:34 PM
Hi,
i have a probs. I install the files from forum_upload to vbull->forum path and the wiki -> wiki path, and the xml addon was ok. And i have made an new navtab like ->wiki etc.
That shows me on:
1 of 7: Checking MediaWiki Installation
Warning: require(/includes/SiteConfiguration.php) [function.require]: failed to open stream: No such file or directory in /var/www/web321/html/vbulletin_test/vb4/wiki/includes/AutoLoader.php on line 1145
Fatal error: require() [function.require]: Failed opening required '/includes/SiteConfiguration.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/web321/html/vbulletin_test/vb4/wiki/includes/AutoLoader.php on line 1145
maybe some idea? i was so glad to see that add on.
best regards
tomtom1984
01-29-2013, 06:06 PM
Hi, other prob, the highlights on the navbar shows to forum and not to wiki. How can i change that?
ndahiya
01-30-2013, 03:28 AM
Hi,
i have a probs. I install the files from forum_upload to vbull->forum path and the wiki -> wiki path, and the xml addon was ok. And i have made an new navtab like ->wiki etc.
That shows me on:
1 of 7: Checking MediaWiki Installation
Warning: require(/includes/SiteConfiguration.php) [function.require]: failed to open stream: No such file or directory in /var/www/web321/html/vbulletin_test/vb4/wiki/includes/AutoLoader.php on line 1145
Fatal error: require() [function.require]: Failed opening required '/includes/SiteConfiguration.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/web321/html/vbulletin_test/vb4/wiki/includes/AutoLoader.php on line 1145
maybe some idea? i was so glad to see that add on.
best regards
Updated new version of file in Post 421 ( https://vborg.vbsupport.ru/showpost.php?p=2398436&postcount=421 ) . Unclear why the error appeared, but should be ok now!
tomtom1984
01-31-2013, 12:04 PM
Hi ndahiya,
the error was a mistake of myself. i forgot the localsettings.php to change. At the moment all right, but 3 things are not so beauty.
If i click on the wiki button, i see the "forum button" navbar as selected. How can i switch that is highlight to the wiki button?
Second little prob, if i logged me into vbull, then changed the wiki navi from vbull style to wiki style.
Thrird prob, where is the options?
If you have soltutions about that i am very happy ;-)
tomtom1984
02-01-2013, 06:57 PM
Hi,
anybody knows about seo friendly url code ? I have on a other page the htaccess and localsettings adjusted and it works fine, no index.php or other snippet. Maybe someone has an idea.
htaccess code:
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]
LocalSettings.php
# seo
$wgScriptPath = "";
$wgScriptExtension = ".php";
#$wgArticlePath = "/wiki/$1";
$wgArticlePath = "/$1";
ndahiya
02-01-2013, 11:12 PM
If i click on the wiki button, i see the "forum button" navbar as selected. How can i switch that is highlight to the wiki button?
Second little prob, if i logged me into vbull, then changed the wiki navi from vbull style to wiki style.
Thrird prob, where is the options?
If you have soltutions about that i am very happy ;-)
Here is the page: xxxxxx
I use the Vector theme as the default, so not sure of the problem.
The options are under Settings-->Options-->Vbulletin Mediawiki -->
ndahiya
02-01-2013, 11:16 PM
Hi,
anybody knows about seo friendly url code ? I have on a other page the htaccess and localsettings adjusted and it works fine, no index.php or other snippet. Maybe someone has an idea.
Try here: http://shorturls.redwerks.org/
Works fine for me. One issue I am trying to fix is that the mod still links to w/index.php?title=XYZ type urls instead of /home/XYZ. (works fine though, and after the first click, goes back to the short URLs.)
ndahiya
tomtom1984
02-02-2013, 11:16 AM
Hey,
Try here: http://shorturls.redwerks.org/
Works fine for me. One issue I am trying to fix is that the mod still links to w/index.php?title=XYZ type urls instead of /home/XYZ. (works fine though, and after the first click, goes back to the short URLs.)
Super! It works perfectly.
So, one problem still exists with the highlight / selected navbar, if i push the button "wiki" it doesnt selected that, but the "forum" button is then highlight/seleceted with silver color.
How can i change that in css/php/template?
ndahiya
02-02-2013, 01:03 PM
New Version 1.2
Support for short URLs. See post 421. https://vborg.vbsupport.ru/showpost.php?p=2398436&postcount=421
ndahiya
tomtom1984
02-04-2013, 01:35 PM
Everything is installed, but the problem still exists with the highlight / selected navbar, if i push the button "wiki" it doesnt selected that, but the "forum" button is then highlight/seleceted with silver color.
How can i change that in css/php/template?
Hi.
I've been looking around for active installation instructions for VBMWv 1.2 but can't find any so far, and I've checked the download as well. The links above are not working for me and I am licensed and can download other stuff here. I bought vBulletin with the main intention being of integrating some kind of wiki. So finding this post made my month!
Can someone point me in the right direction of the installation instructions. Thanks very much.
As a side note I am wondering if Semantic Media Wiki can be added on to VBMWv.
ndahiya
02-04-2013, 11:32 PM
Hi.
I've been looking around for active installation instructions for VBMWv 1.2 but can't find any so far, and I've checked the download as well. The links above are not working for me and I am licensed and can download other stuff here. I bought vBulletin with the main intention being of integrating some kind of wiki. So finding this post made my month!
Can someone point me in the right direction of the installation instructions. Thanks very much.
As a side note I am wondering if Semantic Media Wiki can be added on to VBMWv.
Pretty simple instructions :
1. Upload the wiki_upload files to the wiki folder, and the forum_upload files to the forums folder.
2. Import the product in vbulletin.
3. Set the variables in Settings --> Options --> vBulletin Mediawiki.
4. Grant permissions to various usergroups.
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
That's it!!
Not sure Semantic wiki - you could try and let us know?
ndahiya
ndahiya
02-04-2013, 11:58 PM
Everything is installed, but the problem still exists with the highlight / selected navbar, if i push the button "wiki" it doesnt selected that, but the "forum" button is then highlight/seleceted with silver color.
How can i change that in css/php/template?
tomtom1984: In the navigation manager in vbulletin admincp,
select the wiki tab options, and under Tab Scripts enter "mediawiki" (without the ").
The next release should have working submenus.
ndahiya
daviet
02-05-2013, 07:39 AM
I have installed Semantic MediaWiki to my working version and it works great. Here is an example page (http://www.morrissey-solo.com/wiki/This_Charming_Man_(single)), see the Live History and Appears On section near the bottom.
As a side note I am wondering if Semantic Media Wiki can be added on to VBMWv.
tomtom1984
02-05-2013, 07:40 PM
WOWWWWWW thx ndahiya Coder ;-))))))))
So easy? oh damm^^
ndahiya
02-05-2013, 10:57 PM
WOWWWWWW thx ndahiya Coder ;-))))))))
So easy? oh damm^^
tomtom: specially for you, new version with submenus showing for the integrated skins.
https://vborg.vbsupport.ru/showpost.php?p=2398436&postcount=421
ndahiya
ndahiya
02-09-2013, 01:37 AM
Edit:: "loss of session data" errors fixed in version 1.31 above.
ndahiya
I have installed Semantic MediaWiki to my working version and it works great. Here is an example page (http://www.morrissey-solo.com/wiki/This_Charming_Man_(single)), see the Live History and Appears On section near the bottom.
Nice work!
And thanks.
tomtom1984
02-09-2013, 07:38 PM
Which css i can change the font size of the sidebar?
Greetz
ndahiya
02-13-2013, 03:18 AM
Which css i can change the font size of the sidebar?
Greetz
not sure, but you should try wiki_upload/skins/vbmediawikiforum/main-ltr.css
Trillian
02-15-2013, 03:16 AM
Installation instructions:
1. Upload the wiki_upload files to the wiki folder, and the forum_upload files to the forums folder.
2. Import the product in vbulletin.
3. Set the variables in Settings --> Options --> vBulletin Mediawiki.
4. Grant permissions to various usergroups.
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
I'm in the process of setting up a shiny new website with vBulletin 4.0.2, and MediaWiki 1.20.0with Semantic 1.8.0.2. No user accounts to get in the way yet.
My plan is to set up the Wiki to be the primary purpose of the website, with the forum to be secondary. Since this is an add-on domain on my account, I would like the wiki to run from the wikidomain.com directory, and the forum to run from wikidomain.com/forums/ directory.
Will this arrangment cause any problems for this vbMediaWiki mod to work? Will it cause any problems with the cookies?
Thanks!
Edited to add: should I install the new vb forum database in the existing mediawiki database, or should I keep them separate?
ndahiya
02-15-2013, 08:30 PM
I'm in the process of setting up a shiny new website with vBulletin 4.0.2, and MediaWiki 1.20.0with Semantic 1.8.0.2. No user accounts to get in the way yet.
My plan is to set up the Wiki to be the primary purpose of the website, with the forum to be secondary. Since this is an add-on domain on my account, I would like the wiki to run from the wikidomain.com directory, and the forum to run from wikidomain.com/forums/ directory.
Will this arrangment cause any problems for this vbMediaWiki mod to work? Will it cause any problems with the cookies?
Thanks!
Edited to add: should I install the new vb forum database in the existing mediawiki database, or should I keep them separate?
so long as they are on the same domain, different folders should be fine so long as you set the paths.
i have them setup in different databases, has not been a problem. you probably want to keep them separate anyway, as it is cleaner to manage updates etc, also avoid the risk that some tables be of same names.
bzcomputers
02-17-2013, 04:44 PM
I have installed Semantic MediaWiki to my working version and it works great. Here is an example page (http://www.morrissey-solo.com/wiki/This_Charming_Man_(single)), see the Live History and Appears On section near the bottom.
I get this error when trying to use Semantic Media Wiki
Fatal error: Call to undefined function wfProfileIn() in /home/cruisin/public_html/w/extensions/SemanticMediaWiki/includes/SMW_Setup.php on line 463
It refers to this:
/**
* Initialise a global language object for content language. This must happen
* early on, even before user language is known, to determine labels for
* additional namespaces. In contrast, messages can be initialised much later
* when they are actually needed.
*/function smwfInitContentLanguage( $langcode ) {
global $smwgIP, $smwgContLang;
if ( !empty( $smwgContLang ) ) {
return;
}
wfProfileIn( 'smwfInitContentLanguage (SMW)' );
$smwContLangFile = 'SMW_Language' . str_replace( '-', '_', ucfirst( $langcode ) );
$smwContLangClass = 'SMWLanguage' . str_replace( '-', '_', ucfirst( $langcode ) );
if ( file_exists( $smwgIP . 'languages/' . $smwContLangFile . '.php' ) ) {
include_once( $smwgIP . 'languages/' . $smwContLangFile . '.php' );
}
// Fallback if language not supported.
if ( !class_exists( $smwContLangClass ) ) {
include_once( $smwgIP . 'languages/SMW_LanguageEn.php' );
$smwContLangClass = 'SMWLanguageEn';
}
$smwgContLang = new $smwContLangClass();
wfProfileOut( 'smwfInitContentLanguage (SMW)' );
}
daviet
02-18-2013, 05:37 PM
I get this error when trying to use Semantic Media Wiki
Fatal error: Call to undefined function wfProfileIn() in /home/cruisin/public_html/w/extensions/SemanticMediaWiki/includes/SMW_Setup.php on line 463
It refers to this:
On my initial install I required needing the DataValues extension:
http://www.mediawiki.org/wiki/Extension:DataValues
but there might be some others.
I wound up installing the Semantic MediaWiki Bundle:
http://www.mediawiki.org/wiki/Semantic_Bundle
which make configuration a bit easier and includes a lot of other optional stuff.
Draffi
02-20-2013, 08:26 PM
Changing the Usergroup-Permission for "Wiki visible" brings a SQL-Error:
Invalid SQL:
UPDATE vbs_usergroup SET
Unknown column 'mgc_cb_evo_permissions' in 'field list'
Error-No: 1054
Damn! I deleted this Shoutbox some weeks ago - what can i do? Delete this manually?
ndahiya
02-21-2013, 12:53 AM
Changing the Usergroup-Permission for "Wiki visible" brings a SQL-Error:
Invalid SQL:
UPDATE vbs_usergroup SET
Unknown column 'mgc_cb_evo_permissions' in 'field list'
Error-No: 1054
Damn! I deleted this Shoutbox some weeks ago - what can i do? Delete this manually?
i suggest you install it again, then uninstall it in the right order. hopefully the prob goes away.
tomtom1984
02-22-2013, 09:41 PM
Hi,
i have probs with the sitmaps:
error
Missing XML tag
This required tag is missing. Add it and send the data again.
1
Parent tag: urlset
Tag: url
2
22nd February 2013
mfowler70
02-22-2013, 10:32 PM
This mod works fine for me with VB 4.2.0 PL3 when logged in as Administrator, but when I login to a normal user account, I get this when I try to open the wiki
Fatal error: Call to a member function getID() on a non-object in /home/xxxxxx/xxxxx/wiki/includes/vbMediaWikiAuthPlugin.php on line 100
ndahiya
02-23-2013, 12:04 PM
Hi,
i have probs with the sitmaps:
error
Missing XML tag
This required tag is missing. Add it and send the data again.
1
Parent tag: urlset
Tag: url
2
22nd February 2013
hmm this is wierd. are u using the sitemaps in vbulletin ? (with this mod, the vbulletin sitemap includes mediawiki links as well.) The latest version (post 421) i have works fine at my end? can you reinstall and check?
ndahiya
02-23-2013, 12:16 PM
This mod works fine for me with VB 4.2.0 PL3 when logged in as Administrator, but when I login to a normal user account, I get this when I try to open the wiki
Fatal error: Call to a member function getID() on a non-object in /home/xxxxxx/xxxxx/wiki/includes/vbMediaWikiAuthPlugin.php on line 100
Odd behavior.
The function should not differentiate between type of accounts anyway. $user is got from vb, so for some reason vb is not setting the variable right. What version of PHP are you using ? VB 4.2 is not compatible with php 5.4 . also this works with mediawiki 1.20 or higher.
1. check the version of php/mediawiki.
2. Delete all cookies/history an server cache (APC if any).
3. run diagnostics in vbmediawiki and see if you get clean bill of health.
4. Try a clean login into the other user account. while this should NOT cause this error, check if the other user has permissions in usergroup permissions.
let us know how it goes.
ndahiya
tomtom1984
02-25-2013, 06:58 PM
hmm this is wierd. are u using the sitemaps in vbulletin ? (with this mod, the vbulletin sitemap includes mediawiki links as well.) The latest version (post 421) i have works fine at my end? can you reinstall and check?
Hi,
oh no, there no good idea, everytime to make a refresh, so i have two navtab of wiki, please in future only the code of data as a support not all.
The error message:
tomtom1984
02-27-2013, 08:50 AM
i found my mistake, on backend admincp you must fill in the "general options" the db datas. Ok;-)
tomtom1984
03-18-2013, 07:38 PM
Hello
it's me again;-)
in new activities the wikiarticles is mapped, but if i click on tha, missing the slash in the url. Like
www.domain.de/wikixxxyyyarticle
right:
www.domain.de/wiki/xxxyyyarcticle.
How can i edit that?
bing11
03-25-2013, 06:04 AM
Hi guys,
Here is an updated version to SpankMe's version (https://vborg.vbsupport.ru/showpost.php?p=2326856&postcount=392) with some fixes and one that is working with VB 4.2 PL3 and Mediawiki 1.20.2 .
You can access the manual and diagnostics at www.YourSite.com/YourWiki/vbmediawiki/
** To avoid the edit permissions issue, navigate to your wiki/maintenance/ directory
and run :
php resetUserTokens.php
Alternatively, upload the attached resetUserTokensNull.php to the wiki-maintenance directory (it only sets the tokens for users who do not have one - much faster). And set it up as a cron job every hour... This is (still) the best solution I've found so far.
Installation instructions:
1. Upload the wiki_upload files to the wiki folder, and the forum_upload files to the forums folder.
2. Import the product in vbulletin.
3. Set the variables in Settings --> Options --> vBulletin Mediawiki.
4. Grant permissions to various usergroups.
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
Release Notes:
Version 1.1 (21 Jan 13):
* The diagnostics page is fixed.
* The navigation bit (login and logout links) in the Vector skin is fixed. <-- If you use the vector skin with memcached, this improved my cache efficiency meaningfully (suspect because how the login/logout link was created for not-logged in users).
Version 1.2 (2 Feb 13):
* Upgrade instructions: upload files, upgrade product using XML file.
* Support for short URLs. You MUST update the wiki path if you install this version. The previous version works fine, except that the sitemap (and other links to the wiki) create by vbulletin refers to the old style links.
Now, Instead of specifying the wiki path as www.SITE.com/YourWiki (no trailing slash), you now should enter it as www.SITE.com/YourWiki/index.php?title= OR www.SITE.com/ShortURL/ (with trailing slash).
* For more on mediawiki short URLs, see: http://www.mediawiki.org/wiki/Manual:Short_URL/Apache or http://shorturls.redwerks.org/ .
Version 1.32 (13 Feb 13): (also changes from 1.30, 1.31):
* Upgrade instructions: upload files, upgrade product using XML file.
* Wiki submenus show in integrated skins.
* Loss of session data errors should be fixed.
* Reduced queries for logged-in users.
* Fixed issue with diagnostics page (likely linked with a apc bug).
Regards
ndahiya
thanks
bzcomputers
03-25-2013, 08:48 PM
What happens when vB users who have usernames with spaces in them try to edit on mediawiki, which from what I can tell from the information posted does not recognize spaces?
tomtom1984
03-25-2013, 10:18 PM
How can i add some navtabs ?
ndahiya
03-26-2013, 07:23 PM
How can i add some navtabs ?
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
ndahiya
03-26-2013, 07:24 PM
Hello
it's me again;-)
in new activities the wikiarticles is mapped, but if i click on tha, missing the slash in the url. Like
www.domain.de/wikixxxyyyarticle
right:
www.domain.de/wiki/xxxyyyarcticle.
How can i edit that?
are you using the latest version and are you specifying a / at the end of the wiki URL path in vb settings?
Version 1.2 (2 Feb 13):
Now, Instead of specifying the wiki path as www.SITE.com/YourWiki (no trailing slash), you now should enter it as www.SITE.com/YourWiki/index.php?title= OR www.SITE.com/ShortURL/ (with trailing slash).
* For more on mediawiki short URLs, see: http://www.mediawiki.org/wiki/Manual:Short_URL/Apache or http://shorturls.redwerks.org/ .
bzcomputers
03-28-2013, 03:56 AM
I'm getting a bad path to cron.php on the main wiki page. On all other vB pages outside of the wiki the path is fine.
On the main MediaWiki page the path shows as:
http://www.xxx.com/forum/http://www.xxx.com/forum/cron.php?rand=1364440975
(domain name substituted for xxx's above)
tomtom1984
03-29-2013, 03:23 PM
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
I mean navtab men?
like http://www.innovationbyinstinct.com/vbdotorg/Navbar.png
ndahiya
03-31-2013, 01:13 AM
I'm getting a bad path to cron.php on the main wiki page. On all other vB pages outside of the wiki the path is fine.
On the main MediaWiki page the path shows as:
http://www.xxx.com/forum/http://www.xxx.com/forum/cron.php?rand=1364440975
(domain name substituted for xxx's above)
this should not by itself be a issue. the cron would be run from other pages and no tasks should be unfinished. not sure why the problem occurs though.
ndahiya
03-31-2013, 01:14 AM
What happens when vB users who have usernames with spaces in them try to edit on mediawiki, which from what I can tell from the information posted does not recognize spaces?
its unclear... you might like to install and test? the other option is to try and convert the vb usernames to one without a space and then set a regexp in vb to disallow space.
CGhostGroup
04-04-2013, 11:18 AM
Hi guys,
Here is an updated version to SpankMe's version (https://vborg.vbsupport.ru/showpost.php?p=2326856&postcount=392) with some fixes and one that is working with VB 4.2 PL3 and Mediawiki 1.20.2 .
You can access the manual and diagnostics at www.YourSite.com/YourWiki/vbmediawiki/
** To avoid the edit permissions issue, navigate to your wiki/maintenance/ directory
and run :
php resetUserTokens.php
Alternatively, upload the attached resetUserTokensNull.php to the wiki-maintenance directory (it only sets the tokens for users who do not have one - much faster). And set it up as a cron job every hour... This is (still) the best solution I've found so far.
Installation instructions:
1. Upload the wiki_upload files to the wiki folder, and the forum_upload files to the forums folder.
2. Import the product in vbulletin.
3. Set the variables in Settings --> Options --> vBulletin Mediawiki.
4. Grant permissions to various usergroups.
5. Add tab to the wiki under Settings-->Navigation Manager. Set the "Tab scripts" field to "mediawiki".
Release Notes:
Version 1.1 (21 Jan 13):
* The diagnostics page is fixed.
* The navigation bit (login and logout links) in the Vector skin is fixed. <-- If you use the vector skin with memcached, this improved my cache efficiency meaningfully (suspect because how the login/logout link was created for not-logged in users).
Version 1.2 (2 Feb 13):
* Upgrade instructions: upload files, upgrade product using XML file.
* Support for short URLs. You MUST update the wiki path if you install this version. The previous version works fine, except that the sitemap (and other links to the wiki) create by vbulletin refers to the old style links.
Now, Instead of specifying the wiki path as www.SITE.com/YourWiki (no trailing slash), you now should enter it as www.SITE.com/YourWiki/index.php?title= OR www.SITE.com/ShortURL/ (with trailing slash).
* For more on mediawiki short URLs, see: http://www.mediawiki.org/wiki/Manual:Short_URL/Apache or http://shorturls.redwerks.org/ .
Version 1.32 (13 Feb 13): (also changes from 1.30, 1.31):
* Upgrade instructions: upload files, upgrade product using XML file.
* Wiki submenus show in integrated skins.
* Loss of session data errors should be fixed.
* Reduced queries for logged-in users.
* Fixed issue with diagnostics page (likely linked with a apc bug).
Regards
ndahiya
Thanks, sadly I've got some problems with this because the integration works, but as Admin/User I'm not logged in, I can only see my IP as User, also the diagnostics-script stuck on "3 of 7: Checking Forum Path"
ndahiya
04-05-2013, 11:59 PM
Thanks, sadly I've got some problems with this because the integration works, but as Admin/User I'm not logged in, I can only see my IP as User, also the diagnostics-script stuck on "3 of 7: Checking Forum Path"
no clue really. looks like something is wrong with the installation. delete all cookies before testing and see if it reoccurs.
a remove/reinstall might help? also remember to set permissions for usergroups.
Elenna
04-06-2013, 08:52 PM
Thank you very much for the update, ndahiya! My host doesn't have the new version of MySQL, so I can't run MediaWiki 1.20. I installed 1.19 and tried your updated version and it works wonderfully on vBulletin 4.20.
CGhostGroup
04-07-2013, 02:51 PM
no clue really. looks like something is wrong with the installation. delete all cookies before testing and see if it reoccurs.
a remove/reinstall might help? also remember to set permissions for usergroups.
After deactivating the vbMediaWikiAuthPlugin-extension the debug-menu goes til: 5 of 7: Checking Wiki db connection
Re-Installed serveral times :/
daviet
04-28-2013, 11:27 PM
Version 1.32 (13 Feb 13): (also changes from 1.30, 1.31):
* Upgrade instructions: upload files, upgrade product using XML file.
* Wiki submenus show in integrated skins.
* Loss of session data errors should be fixed.
* Reduced queries for logged-in users.
* Fixed issue with diagnostics page (likely linked with a apc bug).
Regards
ndahiya
I upgraded from vBulletin 4.1.12 to 4.2.1 and included an upgrade to v. 1.32 without problems.
Nice job ndahiya! Whatever you need to continue to keep it supported let us know, it's a great feature.
daviet
05-04-2013, 07:58 PM
Any ideas for new features?
1. wiki changes included in the Activity Stream
2. vbulletin 5 integration
I saw ndahiya did some optimization, perhaps a review of anything else that can be done to improve the speed. For logged-in users, the initial page load seems to be slightly slow for me still.
MoreLinux
05-05-2013, 08:07 PM
vBulletin 4.2.1 and vbMediaWiki 1.32 work like a charm on my board.
tambo
05-06-2013, 09:21 AM
What happens when vB users who have usernames with spaces in them try to edit on mediawiki, which from what I can tell from the information posted does not recognize spaces?
its unclear... you might like to install and test? the other option is to try and convert the vb usernames to one without a space and then set a regexp in vb to disallow space.
On the test site I'm using, spaces in usernames don't appear to cause a problem.
However, this is based on a grand sample of 1... and I haven't yet tried other disallowed characters.
bzcomputers
05-10-2013, 03:09 AM
I've noticed I'm getting crawl errors from Google for every user's profile page within MediaWiki.
They show like this:
http://www.XXX.com/forum/www.XXX.com/wiki/User:user1
http://www.XXX.com/forum/www.XXX.com/wiki/User:user2
It says it is coming from a link in the vB members profile page linking to the MediaWiki member profile page.
Slipperyduck
05-21-2013, 10:11 AM
I'm also having a problem, having setup successfully, I can login with my default created sysop and edit as necessary, but my Integration, users attempting to connect (they are in the sysop and bureaucrat group) don't connect as a User, rather as their IP Address.
It's very strange as my sysop user account logs in from the same forum and comes across as a user and NOT an IP address. Very confused. I'm assuming it will be related to the Tokens somehow, but just need to figure out how/why.
--EDIT:
I've just been looking at the mw_users in the Database, the USERNAME does come across correctly, however the user is reported as being IP Address in MediaWiki rather than from this plugin (I think) ... investigating more.
--EDIT:
So, when logged into the forum, then connecting to the Wiki pages, the Database Entry for the User is created, however that seems to be where the process ends, having looked at the page source, I can see the IP address of the user identifying the user anonymous "pt-anonuserpage" whereas the SysOp user that works source pages identifies as user "pt-userpage"
Something not quite following through in the authentication. . . .
--EDIT: The only difference I can see is that the SysOp user that works does have a user_password BLOB 44bytes in the database whereas the new users do not 0bytes. - could this be a source of problems?
*Note I do have the TokenUpdate script running in my Cron and I do see the Token update (in the database) once it runs.
YEP - basically - exactly the same boat as CGhostGroup - I get user IP only, installed every which way from sunday.
--UPDATE: FOUND IT. My User is a member of several usergroups - it's only when I change the vbWiki Options for EVERY SINGLE Usergroup that this member belongs to, that I no longer get IP (or anonymous) access. I now have EDIT access. *Note that the users primary Group and Display group both had FULL access.
--- I will do an experiment to see if it's something like the HIGHEST usergroup number that is chosen or something along those lines, but at least I can now edit. . . .
KUDO's - Happiest I've ever been.
Latest version available: 4.2.1
MW 1.19 using vbMediaWiki_Vector_vB4.1.12_MW1.19 <-- Integration formatting works better
Upgraded to vbMediaWiki 1.31 (on Page 29) (https://vborg.vbsupport.ru/attachment.php?attachmentid=143750&d=1360807326)
ndahiya
05-26-2013, 12:52 PM
--UPDATE: FOUND IT. My User is a member of several usergroups - it's only when I change the vbWiki Options for EVERY SINGLE Usergroup that this member belongs to, that I no longer get IP (or anonymous) access. I now have EDIT access. *Note that the users primary Group and Display group both had FULL access.
--- I will do an experiment to see if it's something like the HIGHEST usergroup number that is chosen or something along those lines, but at least I can now edit. . . .
KUDO's - Happiest I've ever been.
checking usergroup permissions was what my suggestion was going to be :)
the issues is caused by how VB assigns permissions - denied permissions go to the lowest permission level, not highest (this is the safest way to do it), so changing it is likely to be tough.
ndahiya
ps: i am using MW 1.21, works fine
PNavigation
06-12-2013, 04:06 PM
Hi, I'm having a problem with WikiEditor. I already installed the correct extension on my MediaWiki 1.20.2 but the editor doesn't show when I'm using forum skin. When I use vector skin all is working fine.
Anyone know how to solve this?
Hello,
I have had the same problem and I spent long time to fix this. The problem is that the MediaWiki javascripts were moved to the footer. And the footer was not displayed by vbmediawiki. To fix this, I have added the following code to the file /wiki/skins/vbMediaWikiForum.php in line 667 (after the line: "<div class="visualClear"></div>"):
<!-- scripts and debugging information -->
<?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
<?php $this->html('reporttime') ?>
<?php if ( $this->data['debug'] ): ?>
<!-- Debug output:
<?php $this->text( 'debug' ); ?>
-->
<?php endif; ?>
@ndahiya: Thanks for your work. May be you can add this piece of code to the next version of your plugin?
Regards, Kristian
daviet
06-25-2013, 04:32 AM
Facebook platform integration was causing the wiki pages to load very slowly if the user was logged in to Facebook. After disabling the Facebook platform on vBulletin, my wiki page loads went down from an average 6 or 7 seconds to around 2 seconds.
jluerken
10-17-2013, 08:54 AM
When I call the wiki from an Android phone I get a blank page. Works on normal PC's and Apple iOS.
Is there a fix for this?
crzyone9584
12-16-2013, 07:27 AM
All the links form the orginal post are not working... Does anyone have any links for installing the entire mod including how to install media wiki to work with this?
All the links form the orginal post are not working... Does anyone have any links for installing the entire mod including how to install media wiki to work with this?
Go to your wiki installation and go to
/wiki/vbmediawiki/index.php
crzyone9584
12-16-2013, 02:38 PM
Thank you. I must of missed that reading the posts last night.
crzyone9584
12-19-2013, 06:00 AM
I've gotten most of the errors out of this for my installation. Now I'm stuck on this one. I can't seem to find a solution for it. I followed this post (https://vborg.vbsupport.ru/showthread.php?p=2398436#post2398436) for installation.
Fatal error: Call to a member function query_write() on a non-object in /home/cccc/theworld-r2.net/global.php(29) : eval()'d code on line 52
That error is from step 3 of 7 in the Diagnostics tab of vbMediaWiki.
Line 52 of my global.php is nothing. It doesn't even exist. It stops at line 51.
Forum display and integrated display do not work either. Only the Vector display setting works. Any one else have this issue?
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Fixed the Fatal call by defining VB_INSTALL_PATH in diagnostics. If i took out the require_once for LocalSettings it stopped pushing out errors.
Next things I ran into was step 5. It wasn't pulling the data out of the forum for the mysql server. I actually had to go in and enter mysql information. It worked then. This is a big concern for me. I'm not sure why the
$data = unserialize($vbulletin->options["mediawiki_db"]);
is not working correctly. But $data was always empty for me. So I went into phpmyadmin to make sure the settings where saved. They are saved correctly for me. So IDK whats up with that. I changed everything back to normal though in all the files I changed.
Still can't get any other dispaly working than Vector though.
Flightbase
02-06-2014, 10:56 AM
Hi,
anyone is using vb 4.2.2 with mediawiki 1.22.2?
Regards, Nik
daviet
02-07-2014, 07:42 AM
Yes, I've been upgrading with new releases and haven't had any issues.
Hi,
anyone is using vb 4.2.2 with mediawiki 1.22.2?
Regards, Nik
Flightbase
02-07-2014, 01:56 PM
Did you try it with php 5.5.x or was it php 5.3.x?
EDIT: and was it UTF8 or latin?
daviet
02-09-2014, 05:23 PM
I was on PHP 5.3 then moved recently to 5.4 without issues.
I recall reading about needing to convert to UTF-8 but I didn't go through that step, my vbulletin setting for HTML Character Set is set to "ISO-8859-1"
Are you running into any specific issues? There have been a few small hacks along the way but for the most part I'm using v. 1.32 posted by ndahiya:
https://vborg.vbsupport.ru/showthread.php?p=2398436#post2398436
Did you try it with php 5.5.x or was it php 5.3.x?
EDIT: and was it UTF8 or latin?
Panthrus
03-30-2014, 02:18 AM
Guys, I'm planning on installing this mod, but since all the links on the initial thread are gone, any of you guys have like a mirror or installation steps?
And also, is this mod still working/good? I just installed a new mediawiki and would love to see such integration.
Panthrus
03-30-2014, 02:19 AM
managed to see all stuff from archive.org:
https://web.archive.org/web/20101224232823/http://bepe80.com/vbmediawiki/
RavenDust
04-01-2014, 08:04 AM
Hey :)
Great work on reviving this; saved me from buying another bb license >.<
Nevertheless, on the diagnostics page, i get an error:
Notice: Undefined variable: IP in /var/www/path/w/LocalSettings.php on line 139
Warning: require_once(/extensions/Poem/Poem.php): failed to open stream: No such file or directory in /var/www/path/w/LocalSettings.php on line 139
Fatal error: require_once(): Failed opening required '/extensions/Poem/Poem.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/path/w/LocalSettings.php on line 139
if i just comment out that line, it throws an error on the next extension. It doesn't seem to find the whole extension folder...
i'm using vb 4.2.2 and mw 1.22.4. Any ideas?
[Edit]
nvm, figured it out. $IP is not defined, so i set it to my wiki root path and chdir'd there:
$IP = "/var/www/path/w";
chdir("/var/www/path/w");
and it *kinda* worked. Some errors were thrown by the WikiEditor, which seem to be unrelated to vbmediawiki though.
illusioN-tEk
11-30-2014, 05:50 AM
works great on 4.2.2
Big Kahuna
03-14-2015, 05:28 PM
I'm interested in using this for www.MoparWiki.com as it was getting Spammed despite trying every suggested mediawiki spam addon. Want to use www.moparstyle.com/forums but I'm concerned with those reporting problems and lack of activity on this thread/addon.
Anyone recently install with latest versions of vbulletin and Mediawiki, that want to give their experience?
Flightbase
03-08-2016, 03:06 PM
Anyone still maintaines this for current versions?
Flightbase
03-09-2016, 12:32 PM
I found this page:
https://wikiapiary.com/wiki/Extension:VbMediaWikiVector
There is a vb4.2.3 linked, using mediawiki 1.26.2 and extension version "2.0".
I registered there and SSO worked as well as uploading files without session data lost error.
FYI.
I will try that "2.0" version these days...
inigo
12-06-2017, 06:00 PM
Any update or new info?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.