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
CERBERUS: 1 vB4: runs multiple domains with custom styles, forums, universal login Details »»
CERBERUS: 1 vB4: runs multiple domains with custom styles, forums, universal login
Version: 1.00, by ibautocommunity ibautocommunity is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Category: Major Additions - Version: 4.0.x Rating:
Released: 11-23-2010 Last Update: Never Installs: 138
Uses Plugins
Re-useable Code Translations Is in Beta Stage  
No support by the author.

***Attention: This product is currently UNSUPPORTED***

We would like to release an Alpha version of the vBulletin4 Cerberus product. This product allows you to create one vBulletin4 installation which can power unlimited number of domains and sub-domains; while allowing to customize each domain differently to make it look like different sites or sections. Domains will have one universal admincp and user login information.

***Example***
www.supercoolautoforum.com - main site, all forums
ferarri.supercoolautoforum.com - custom style and forums, same login
bmw.supercoolautoforum.com- custom style and forums, same login
honda.supercoolautoforum.com - custom style and forums, same login
supercoolmotorcycleforum.com - custom style and forums, same login

*** Why are you releasing this, I want more features?! ***

This is a very simple product; we believe that the basic functionality provided in this product will satisfy a lot of communities - and since the product is simple - it will be easy to extend it and modify it to work for your custom community requirements.

Overview of Current Features:
  • One shared installation of vBulletin 4
  • One shared user account on all domains
  • Custom Style for each domain
  • Custom Forum listing for each domain
Known Issues:
  • CMS and Blogs are currently not configured to have special domain-specific categories and sections. CMS is shared across all sites although the appearance will be different for each domain.


Project Contributors: s.lauderdale;m.biddle;a.ahn; anders

Download Now

File Type: zip product-cerberus.zip (138.6 KB, 1793 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
9 благодарности(ей) от:
BirdOPrey5, CvP, Gnoll, huevncom, merk_aus, mokujin, PhilG, SVIT.Share, xrvel

Comments
  #392  
Old 03-04-2011, 07:25 PM
Santori Santori is offline
 
Join Date: Apr 2010
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok!

I have a domain.com

y created a sub.domain.com

If I go to sub.domain.com not works because it goes to sub.domain.com/content and this is the common cms.

But if i put sub.domain.com/forum.php It works!!!

BUT!

Look the footer!!! it says copy UNREGISTERED!!!
Reply With Quote
  #393  
Old 03-14-2011, 10:50 AM
shri shri is offline
 
Join Date: Nov 2001
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Happy to announce we got it working with some nginx / proxy magic.

First site has gone into production usage on http://hongkong.geoexpat.com
Reply With Quote
  #394  
Old 03-18-2011, 10:07 AM
ProFifaLeagues's Avatar
ProFifaLeagues ProFifaLeagues is offline
 
Join Date: Aug 2009
Location: Uk
Posts: 1,191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any more pointers on the set up of this please???
Reply With Quote
  #395  
Old 03-21-2011, 06:51 PM
prandah's Avatar
prandah prandah is offline
 
Join Date: Jun 2010
Location: Indonesia
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this work 100%
thanks for this mod
this mod help full for my forum
Reply With Quote
  #396  
Old 03-21-2011, 09:05 PM
prandah's Avatar
prandah prandah is offline
 
Join Date: Jun 2010
Location: Indonesia
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update i cant acces archive file

how to fix it ?
Reply With Quote
  #397  
Old 03-25-2011, 08:38 AM
gundamkid gundamkid is offline
 
Join Date: Nov 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It didn't worked for me .
I tried to install on my localhost with my vhost config:
PHP Code:
NameVirtualhost mainforum.local:801
<VirtualHost mainforum.local:801>
    
DocumentRoot "D:/projects/test/mainforum"
    
ServerName mainforum.local
    
    
<Directory "D:/projects/test/mainforum">
        
AllowOverride FileInfo AuthConfig Limit Indexes
        Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
        
<Limit GET POST OPTIONS>
            
Order allow,deny
            Allow from all
        
</Limit>
        <
LimitExcept GET POST OPTIONS>
            
Order deny,allow
            Deny from all
        
</LimitExcept>
    </
Directory>
</
VirtualHost>

NameVirtualhost sub.local
<VirtualHost sub.local>
    
DocumentRoot "D:/projects/test/mainforum"
    
ServerName sub.local
    
    
<Directory "D:/projects/test/mainforum">
        
AllowOverride FileInfo AuthConfig Limit Indexes
        Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
        
<Limit GET POST OPTIONS>
            
Order allow,deny
            Allow from all
        
</Limit>
        <
LimitExcept GET POST OPTIONS>
            
Order deny,allow
            Deny from all
        
</LimitExcept>
    </
Directory>
</
VirtualHost
and here is in my vCerberus mainforum:
PHP Code:
[mainforum.local]
bbtitle=mainforum.local
bburl
=mainforum.local
homeurl
=mainforum.local
catids
=5
styleid
=1
cookiedomain
=.mainforum.local
facebookappid
=Your_appid_here
facebooksecret
=Your_fb_secret_here

[sub.local]
bbtitle=sub.local
bburl
=sub.local
homeurl
=sub.local
catids
=1
styleid
=1
cookiedomain
=.sub.local
facebookappid
=Your_appid_here
facebooksecret
=Your_fb_secret_here 
When I go to http://sub.local It redirected http://mainforum.local. How to fix it?
Reply With Quote
  #398  
Old 03-29-2011, 07:02 AM
gundamkid gundamkid is offline
 
Join Date: Nov 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got it, thank FReeSTER very much!

https://vborg.vbsupport.ru/showpost....&postcount=283
Reply With Quote
  #399  
Old 04-04-2011, 03:08 AM
Network.Larry Network.Larry is offline
 
Join Date: Jan 2011
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I feel like an idiot and for someone with an engineering degree that is tough to swallow I have installed the product, but after reading all the pages here, and every link, I cannot for the life of me understand what you all are talking about. Does ANYONE have a how to use for this? Install it by adding product I got, but then what? Edit what, click where? I see nothing new in my CPAdmin and nothing here to tell me what to do. It is like everyone has experience with vBulletin and expects us new folks to read minds and go to unknown areas. Please post some how to make peanut butter and jelly sandwich directions so we can all expand or knowledge.

Please help
Reply With Quote
  #400  
Old 04-04-2011, 07:41 AM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

adminCP > settings > vbcerberus
Fill in the needed settings. Use examples from this thread.
Reply With Quote
  #401  
Old 04-04-2011, 12:44 PM
Network.Larry Network.Larry is offline
 
Join Date: Jan 2011
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sometimes it's the simple things in life that are the most frustrating I swear I looked there oh, 5071 times, and my teen son did too and did not see anything - now, magically there is Thank you!! I think your single line should be bolded, flashing red and put up in the How to on this mods installation
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:35 AM.


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.05278 seconds
  • Memory Usage 2,357KB
  • Queries Executed 27 (?)
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_php
  • (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
  • (9)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (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_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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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