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

Reply
 
Thread Tools
[obsolete!] vbMediaWiki 4.0.2 RC 3 Details »»
[obsolete!] vbMediaWiki 4.0.2 RC 3
Version: 4.0.2RC3, by bepe bepe is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Category: Integration with vBulletin - Version: 4.0.2 Rating:
Released: 02-07-2010 Last Update: 02-28-2010 Installs: 130
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Is in Beta Stage  
No support by the author.

This version is obsolete:
New version:
https://vborg.vbsupport.ru/misc.php?...diawiki_vector

Download Now

File Type: zip vbMediaWiki_4.0.2_RC3.zip (118.4 KB, 678 views)

Show Your Support

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

Comments
  #412  
Old 03-17-2010, 05:54 AM
milaszewski milaszewski is offline
 
Join Date: Jun 2008
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BRotondi View Post
@milaszewski: I'm not sure about that, but would say that at the moment only UTF-8 (wiki) -> latin (vB) is suported. You need UTF-8 -> ISO-8852-2.
ISO-8852-2 is latin
Reply With Quote
  #413  
Old 03-17-2010, 06:41 AM
milaszewski milaszewski is offline
 
Join Date: Jun 2008
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The problem is even more serious - usernames containing Polish characters are unable to access Wiki. For example Kołtun username is seen as Ko - it doesn't recognize ł letter.
Reply With Quote
  #414  
Old 03-17-2010, 07:19 AM
quantic quantic is offline
 
Join Date: Jul 2009
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by quantic View Post
I have the same problem when using another skin, for example monobook... I don't know if it was happening before installing this module.

I'm using latest versions, but it's not a fresh install but an upgrade from an older one.

I'm looking for people with the same problem (using this module or not), as I can create now a page 'Content' and another one named 'content', that is not right.

Note: I have $wgCapitalLinks set to true.

Thank you.
Ok, more on this... The problem appears when saving a page.

- If I save a page with the module working, links don't work at all and the effect is the same as if set $wgCapitalLinks to false ( [[content]] doesn't link to the page named 'Content' ).

- If I comment "require_once( "$IP/includes/AuthPlugin_vbMediaWiki.php" );" so the module is not loaded, the links works perfectly after I save the page.

I will appreciate any help on this.
Ty
Reply With Quote
  #415  
Old 03-17-2010, 07:49 AM
BRotondi BRotondi is offline
 
Join Date: Sep 2008
Location: Zurich
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by milaszewski View Post
ISO-8852-2 is latin
My fault. To be clear: German and English vBulletins use ISO-8859-1 (Latin alphabet No. 1), but your polish version ISO-8852-2 (Latin alphabet No. 2)...

Have a look at ACP > Language Manger > Edit Settings > HTML Character Set German and English will show ISO-8859-1, but Polish ISO-8859-2

I think, this affects only the Language Pack. vBulletin itself should be the same.


Back to the code: bepe uses
Code:
iconv( "UTF-8", $vbulletin->userinfo['lang_charset']
which should convert the right way, but obviously doesn't...

Perhaps also a problem with
Code:
        // Check an additional blacklist of troublemaker characters.
        // Should these be merged into the title char list?
        $unicodeBlacklist = '/[' .
            '\x{0080}-\x{009f}' . # iso-8859-1 control chars
            '\x{00a0}' .          # non-breaking space
            '\x{2000}-\x{200f}' . # various whitespace
            '\x{2028}-\x{202f}' . # breaks and control chars
            '\x{3000}' .          # ideographic space
            '\x{e000}-\x{f8ff}' . # private use
            ']/u';
Well... but we cannot cover bepe with issues and issues as long it is a one man show...
Reply With Quote
  #416  
Old 03-17-2010, 08:47 AM
LbR LbR is offline
 
Join Date: Nov 2009
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any option that it replaces up FAQ then it will be great
Reply With Quote
  #417  
Old 03-17-2010, 10:53 AM
quantic quantic is offline
 
Join Date: Jul 2009
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by quantic View Post
Ok, more on this... The problem appears when saving a page.

- If I save a page with the module working, links don't work at all and the effect is the same as if set $wgCapitalLinks to false ( [[content]] doesn't link to the page named 'Content' ).

- If I comment "require_once( "$IP/includes/AuthPlugin_vbMediaWiki.php" );" so the module is not loaded, the links works perfectly after I save the page.

I will appreciate any help on this.
Ty
Ok, I found '$wgCapitalLinks = false;' on the file 'includes/AuthPlugin_vbMediaWiki.php'

I tried to comment this line and now links are working as expected, so I can write 'This is some [[content]] as example' and the link points to the page 'Content'.

Now I have a problem with usernames as they are expected with the first letter uppercase, even after uploading the 'User.php' provided with the module.

Am I the only one with this problem?

Ty in advance.
Reply With Quote
  #418  
Old 03-17-2010, 12:14 PM
BRotondi BRotondi is offline
 
Join Date: Sep 2008
Location: Zurich
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by quantic View Post
Ok, I found '$wgCapitalLinks = false;' on the file 'includes/AuthPlugin_vbMediaWiki.php'

I tried to comment this line and now links are working as expected
Thanks for the Info! Seems like things are not perfect for people using $wgCapitalLinks = true; ...
Reply With Quote
  #419  
Old 03-17-2010, 12:27 PM
Eruantien Eruantien is offline
 
Join Date: Jan 2009
Posts: 187
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are those using this Wiki integration for english boards having any major issues? I love this project so much that I want to start using it now
Reply With Quote
  #420  
Old 03-17-2010, 01:17 PM
jo8jo jo8jo is offline
 
Join Date: Jun 2009
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
It means that users are registered on the both systems at the same time, and when they log-in, they're logged to both systems at the same time.
I'm using wikimedia version 1.15.2 ? 2010-03-08, it works fine but when i'm clicking on "wiki"-tab i'm always getting logged off.
Is it necessary to install mediawiki into the same database as vbulletin? Or are there any other settings?

Hopefully someone can help me fix this login-problem ....
Reply With Quote
  #421  
Old 03-17-2010, 01:58 PM
BRotondi BRotondi is offline
 
Join Date: Sep 2008
Location: Zurich
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello!

It works nice here with
  • MW1.15.1, UTF-8, ENGINE=InnoDB, DEFAULT CHARSET=binary
  • VB4.0.2, ISO-8852-1
  • separate databases but on the same Server, no prefixes
  • installed on //server/path/forum and //server/path/w
  • Wiki: short URL, vB: CEO-URL with Rewrite
Greetings, Bruno
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:48 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05354 seconds
  • Memory Usage 2,335KB
  • Queries Executed 28 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete