Go Back   vb.org Archive > News and Announcements > vBulletin Pre-Sales Questions

Reply
 
Thread Tools Display Modes
  #1  
Old 01-23-2005, 10:26 PM
Tr1x Tr1x is offline
 
Join Date: Jan 2005
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default two forums

Hi,

I'm using another board system and I'm thinking in moving to vbulletin..

I was wondering if I will run two different vbulletin forums on my site...is it possible to make the registeration one for both forums?
I mean if a guest registered in any of these forum.. he will be registered to the other forum autmaticly and added to the other database..nothing more than this... posts and threads will be different if both forums..

I'm not requestion a hack.. just wondering if this possible..

thanks!
Reply With Quote
  #2  
Old 01-23-2005, 10:49 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

2 independant Boards sharing the same userbase is difficult to achieve.
There haven been a lot of requests for this, but at least I would be able to write a hack that does this (or at least it would be very complicated).

Furthermore, I think you would need 2 licenses to do so.
Reply With Quote
  #3  
Old 01-23-2005, 11:49 PM
esfron esfron is offline
 
Join Date: Nov 2002
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It is possible with PhpBB: http://www.phpbb.com/kb/article.php?article_id=55

Why not Vbb ?
Reply With Quote
  #4  
Old 01-24-2005, 01:35 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, in vBulletin the user table holds
  • User ID
  • Username
  • Password
  • Primary Usergroup
  • Secondary Usergroups
  • eMail-Address and Parent eMail-Address (if COPPA-User)
  • Style being used
  • Homapage URL
  • ICQ, AIM, MSN, Yahoo IDs
  • User Titel
  • Join Date
  • Last Activity
  • Date/Time of last post
  • Number of Posts
  • Reputation Level
  • Various settings
  • ID of Avatar being used (if not custom)
  • Flag for showing "You've got a new PM Popup"
  • Language being used
  • Number of total and unread PMs
  • Birthday

Now, if this table is shared between various installation with the methode posted above (which ist of course possible) there will be a lot of problems.
For example the post counter:
You make 1 post in board 1, but as board 2 uses the same table it will also show 1 post .

Or the Style. the User might chose to select style 1 on board 1 and style 2 on board 2 - this isn't possible.

And so on and so on ...

I've just take a look into phpBB user table, and found out that it holds similar information.
So similar problems will occur.
Reply With Quote
  #5  
Old 01-24-2005, 02:37 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by esfron
It is possible with PhpBB: http://www.phpbb.com/kb/article.php?article_id=55

Why not Vbb ?
psst its not vBB(its another board all together infact) its vB
Reply With Quote
  #6  
Old 01-24-2005, 02:38 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tr1x
Hi,

I'm using another board system and I'm thinking in moving to vbulletin..

I was wondering if I will run two different vbulletin forums on my site...is it possible to make the registeration one for both forums?
I mean if a guest registered in any of these forum.. he will be registered to the other forum autmaticly and added to the other database..nothing more than this... posts and threads will be different if both forums..

I'm not requestion a hack.. just wondering if this possible..

thanks!
Is it possible? Yes

I've done it several times in development.

However real world settings would be insane, I couldn't even imagine updating this. IT requires tons and tons and tons of file edits, so insane that a proper version would take at least 40~ mins doing the changes at least.

It would be better handled by another system altogether.
Reply With Quote
  #7  
Old 01-24-2005, 02:45 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
so insane that a proper version would take at least 40~ mins doing the changes at least.
... if Lt. Cmdr. Data from USS Enterprise does that - maybe.

But for a human being I think it would take longer.
Reply With Quote
  #8  
Old 01-24-2005, 03:09 AM
filburt1 filburt1 is offline
 
Join Date: Feb 2002
Location: Maryland, US
Posts: 6,144
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by esfron
It is possible with PhpBB: http://www.phpbb.com/kb/article.php?article_id=55

Why not Vbb ?
It's possible but difficult. phpBB was likely designed with it in mind. vB was intended to have separate user tables for separate forums.

It's easier to modify one instance of vBulletin to appear to be two, but in most cases this also requires two licenses.
Reply With Quote
  #9  
Old 01-24-2005, 03:22 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by filburt1
It's possible but difficult. phpBB was likely designed with it in mind.
I doubt so.
From looking at phpbb_users scheme I can see that it holds similar information (post counter, last visit information, pm notofication popup flag, etc.) as vBulletin and thus will have the same problems.
Reply With Quote
  #10  
Old 01-24-2005, 03:22 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
... if Lt. Cmdr. Data from USS Enterprise does that - maybe.

But for a human being I think it would take longer.
There are alot of things you can do to speed up the process like batch find and replaces in the code via use of a text editor that will do replaces in multiple files.

But you can't do that with everything
Reply With Quote
Reply

Thread Tools
Display Modes

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 12:29 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.06887 seconds
  • Memory Usage 2,251KB
  • Queries Executed 11 (?)
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
  • (6)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
  • (1)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_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