Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #71  
Old 12-29-2005, 01:24 AM
Hellcat Hellcat is offline
 
Join Date: May 2003
Location: Germany
Posts: 560
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just tried the vb-auth thing posted in this thread.
Nice one!
Works just like what I need for a project I'm currently working on, the vB members can login with the same user/pass on the wiki. GREAT!
With a bit of tweaking of the config one can also prevent not registered members to edit (or even view) the wiki pages and the wiki "register new account" can be turned of as well.

I'd be happy to participate in any way I can to take this further, but for the moment this works great for me!

Oh yes, either removing or (better) redirecting the discussion links into the vB would be cool, indeed....
Reply With Quote
  #72  
Old 01-10-2006, 02:20 PM
Cyburbia's Avatar
Cyburbia Cyburbia is offline
 
Join Date: Feb 2002
Location: Ithaca, New York USA
Posts: 159
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I put my MediaWiki project on hold, thanks to drug spam. I'm waiting for something where I can integrate MediWiki, or some other wiki script, withe the vBulletin user database. I would like to limit Wiki editing privileges to those who have posted a few messages in vBulletin, to prevent drive-by registration for vandalism and spam. If a vBulletin user is banned, their Wiki editing privileges would be removed. I don't think that's possible with a bridge; if you ban or remove a vBulletin user, the user is still there on the MediaWiki side.
Reply With Quote
  #73  
Old 01-10-2006, 04:30 PM
silurius silurius is offline
 
Join Date: Oct 2004
Posts: 404
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm still very enthusiastic about a vBulletin-MediaWiki solution and will fully support such an effort in any way I can if someone wants to pick this up. Cyburbia raises mportant considerations, but I'm optimistic.
Reply With Quote
  #74  
Old 01-13-2006, 06:41 PM
IndeGuru IndeGuru is offline
 
Join Date: Nov 2005
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do I prevent users that are not logged in from posting in MW though? Can't find that flag.
Reply With Quote
  #75  
Old 01-13-2006, 07:31 PM
Hellcat Hellcat is offline
 
Join Date: May 2003
Location: Germany
Posts: 560
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In the wiki config you can specify certain permissions for different user, like "not logged in", "logged in", "admin" and such.

There you can deny not logged in users to edit MW pages by setting that permission to "false".
Reply With Quote
  #76  
Old 01-13-2006, 10:25 PM
IndeGuru IndeGuru is offline
 
Join Date: Nov 2005
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hellcat
In the wiki config you can specify certain permissions for different user, like "not logged in", "logged in", "admin" and such.

There you can deny not logged in users to edit MW pages by setting that permission to "false".
I looked in LocalSettings but couldn't find one that appeared to control that. Am I looking in the right file? (didn't think there was another)
Reply With Quote
  #77  
Old 01-13-2006, 11:22 PM
Hellcat Hellcat is offline
 
Join Date: May 2003
Location: Germany
Posts: 560
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is what I have in my config:
Code:
$wgGroupPermissions['*'    ]['createaccount']   = false;
$wgGroupPermissions['*'    ]['edit']            = false;

$wgGroupPermissions['user' ]['move']            = false;
$wgGroupPermissions['user' ]['read']            = true;
$wgGroupPermissions['user' ]['edit']            = true;
$wgGroupPermissions['user' ]['upload']          = true;
In the inculde directory you find a file "DefaultSettings.php" - you can browse trhough this one, there's a ton of more possible settings.
Everything you want to change, copy it into your localsettings.php and set the options like you need them.
Reply With Quote
  #78  
Old 01-16-2006, 07:16 PM
Dsyn11 Dsyn11 is offline
 
Join Date: Nov 2005
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cyburbia
I'm waiting for something where I can integrate MediWiki, or some other wiki script, withe the vBulletin user database.
I've been waiting for this as well..

The Drupal hack has a wiki-type software that works, but it works somewhat funky.... for some reason when I click "View" on older revisions, I don't see them, but only see the current version.

https://vborg.vbsupport.ru/showthrea...272#post873272
Reply With Quote
  #79  
Old 02-18-2006, 08:55 PM
mfarmerhi mfarmerhi is offline
 
Join Date: Apr 2003
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

3.0.8 vB / 1.5 MediaWiki. Got it working.

Notes for those following in my footsteps:

I used Kai's suggested code in post #10. I would add details to make the process clearer that the new php file "AuthPlugin_vBulletin.php" needs to go in "includes". Copy his code exactly from that post as others *claim* to have fixed, modified and/or improved his code, but I couldn't get ANY of the other suggested coding working.

In addition Kai's addition to LocalSettings.php should be added to the end of that file, as suggested by Weno in post #52

Weeno's suggested coding in post #48 did not work for me. Niether does his attached code in post #54 Compare them side by side to Kai's and you'll see a number of differences.

For that reason, again, I'd suggest simply copying Kai's coding in post #10

I had the same problems described in Sammyman's and ndahiya's posts (the "Fatal error: Call to a member function on a non-object in /home/user/public_html/manuals/includes/SpecialUserlogin.php on line 314" error).

ndahiya's suggested fix in post #55 is not the suggested fix. Although it works, it requires users to log in twice (claiming the first time that the password was incorrect, even if it was correct).

Sammyman's suggested fix in post #54 works flawlessly.


~ Mark
Reply With Quote
  #80  
Old 02-20-2006, 06:52 AM
elam83 elam83 is offline
 
Join Date: Feb 2006
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I noticed that WikiSysop cannot login when applying the code listed in post #10.

Any ideas? When I comment out the lines added to LocalSettings.php, WikiSysop can login.
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 07:57 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07842 seconds
  • Memory Usage 2,276KB
  • Queries Executed 14 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete