ndahiya
01-22-2010, 10:00 PM
This hack enables better integration between MediaWiki and vBulletin.
This hack displays a user's total edits made in mediawiki in their posts and on their profile page (similar to vBulletin post count).
Release Info:
v1.0.0: Initial Release
Requirements:
* MediaWiki
* MediaWiki/vBulletin Single Sign-On (https://vborg.vbsupport.ru/showthread.php?t=213102) integration hack. If there is a problem making it work with vb4, please also see Post 112 (https://vborg.vbsupport.ru/showpost.php?p=1938931&postcount=112) in that thread.
To install:
* Add the product using the attached product file.
* Perform the 2 simple template edits outlined below.
Template Edits:
1. postbit_legacy or postbit
Find:
<dt>{vb:rawphrase 'posts'}</dt> <dd>{vb:raw post.posts}</dd>
Add Below:
<dt>{vb:rawphrase total_wikiedits}</dt> <dd>{vb:raw post.wikiedits}</dd>
2. memberinfo_block_aboutme
Find:
<vb:if condition="$prepared['lastposturl']">
<dl class="stats">
<dt>{vb:rawphrase last_post}</dt>
<dd><a href="{vb:raw prepared.lastposturl}">{vb:raw prepared.lastposttitle}</a> {vb:raw prepared.lastpostdate} <span class="time">{vb:raw prepared.lastposttime}</span></dd>
</dl>
</vb:if>
Insert Below (change the wiki path to your own: i use /home/):
<dl class="stats">
<dt>{vb:rawphrase total_wikiedits}</dt><dd><a href="/home/Special:Contributions/{vb:raw userinfo.username}"> {vb:raw userinfo.wikiedits} </a>
</dd>
</dl>
--
Thats it!
Notes:
1. This hack assumes that your mediawiki install uses a "mw_" table prefix in the same database as vbulletin. If this is not the case, do a search/replace in the product XML file before you install it.
2. If mediawiki is installed in a different database, then replace "mw_user" with "wikidatabase.mw_user" (make sure that the forums' database user has access to the other db).
---
This hack is broadly based off AngelBlue's hack hack (https://vborg.vbsupport.ru/showthread.php?t=170479) for a previous release.
---
ndahiya
This hack displays a user's total edits made in mediawiki in their posts and on their profile page (similar to vBulletin post count).
Release Info:
v1.0.0: Initial Release
Requirements:
* MediaWiki
* MediaWiki/vBulletin Single Sign-On (https://vborg.vbsupport.ru/showthread.php?t=213102) integration hack. If there is a problem making it work with vb4, please also see Post 112 (https://vborg.vbsupport.ru/showpost.php?p=1938931&postcount=112) in that thread.
To install:
* Add the product using the attached product file.
* Perform the 2 simple template edits outlined below.
Template Edits:
1. postbit_legacy or postbit
Find:
<dt>{vb:rawphrase 'posts'}</dt> <dd>{vb:raw post.posts}</dd>
Add Below:
<dt>{vb:rawphrase total_wikiedits}</dt> <dd>{vb:raw post.wikiedits}</dd>
2. memberinfo_block_aboutme
Find:
<vb:if condition="$prepared['lastposturl']">
<dl class="stats">
<dt>{vb:rawphrase last_post}</dt>
<dd><a href="{vb:raw prepared.lastposturl}">{vb:raw prepared.lastposttitle}</a> {vb:raw prepared.lastpostdate} <span class="time">{vb:raw prepared.lastposttime}</span></dd>
</dl>
</vb:if>
Insert Below (change the wiki path to your own: i use /home/):
<dl class="stats">
<dt>{vb:rawphrase total_wikiedits}</dt><dd><a href="/home/Special:Contributions/{vb:raw userinfo.username}"> {vb:raw userinfo.wikiedits} </a>
</dd>
</dl>
--
Thats it!
Notes:
1. This hack assumes that your mediawiki install uses a "mw_" table prefix in the same database as vbulletin. If this is not the case, do a search/replace in the product XML file before you install it.
2. If mediawiki is installed in a different database, then replace "mw_user" with "wikidatabase.mw_user" (make sure that the forums' database user has access to the other db).
---
This hack is broadly based off AngelBlue's hack hack (https://vborg.vbsupport.ru/showthread.php?t=170479) for a previous release.
---
ndahiya