Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
SigmaChat Complete Integration & Authentication Details »»
SigmaChat Complete Integration & Authentication
Version: 1.00, by Grim77 Grim77 is offline
Developer Last Online: Jul 2015 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 03-28-2004 Last Update: 11-15-2004 Installs: 59
Template Edits
Code Changes Additional Files  
No support by the author.

Hack Info
Name: SigmaChat Complete Integration & Authentication Add-on
Version: 2.0.0
Author: Chris Duerr, RaiderSoft
First Introduced: 28 Mar. 2004
Last Modified: 15 Nov. 2004
Compatability: vBulletin 3.0.x

Overview
This addon allows you to fully integrate a SigmaChat Java? Chat Room (free or paid service; Platinum or Enterprise required for full functionality) with your vBulletin 3.0.x forum system, including the ability to authenticate access via your vBulletin forum system, and provide a "Who's Chatting" page list showing who is currently logged into your chat room.

Features
  • Chat room integrates via a single link in your vBulletin forum navigation bar, or via a forum link.
  • Chat room may be placed in it's own vBulletin page, and/or as a popup window.
  • Automatic user login option.
  • Remote authentication script allows you to authenticate access into your chat room via your vBulletin user database.
  • Complete control over which user groups are allowed access, allowed administrative access, or denied access.
  • Real time "Who's Chatting" page allows you to show which users are currently in your chat room by interfacing with SigmaChat's "Who's Online Module" system.
  • Makes use of vBulletin's template and phrase system for easy modification, and multilingual operation.
  • Show who is chatting from your forums main page
  • Automatic chat integration with your vBulletin user profiles, email, PM, etc..
Installation
Installation will require between 15 to 30 minutes of your time depending upon your proficiency in installing addons to vBulletin. Download the attached 'sigmachat.zip' file, and load the INSTALL.html file in your web browser for detailed instructions.

RaiderSoft may be able to assist you with installation should you require it. Please contact us for details.

Support
Support is provided by RaiderSoft for this script provided you have a Platinum or Enterprise SigmaChat account. Read the included instructions for details. I'll be happy to answer questions here as well regarding the script.

Screenshots are attached

The all new extension for vBulletin 3.5 has been released. For more information, please visit this link .

Download: VB3SC7_2.0.0.zip or download using the download link in the upper-right hand corner of this message.

Show Your Support

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

Comments
  #92  
Old 06-05-2004, 09:45 PM
Bryan Ex's Avatar
Bryan Ex Bryan Ex is offline
 
Join Date: Feb 2004
Location: Canada
Posts: 233
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If I'm not mistaken... I think they are waiting for the release of the next version of chat before updating the integration script (mid to late June).
Reply With Quote
  #93  
Old 06-06-2004, 08:45 AM
Bryan Ex's Avatar
Bryan Ex Bryan Ex is offline
 
Join Date: Feb 2004
Location: Canada
Posts: 233
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not sure if this is helpful to anyone else but I've added an additional user title to the who's chatting list for my paid subscribers. The sigmachat hack basically lists users as guest, user, moderator, or admin depending on the user group they are in but I've also added Sponsor member as well to recognize those that have upgraded their memberships but you could use it for any usergroup you wish to list providing it's set as a primary group.

In chat_global.php find (may differ slightly depending on your usergroup settings);

Code:
      # Specify the Primary User Groups that have both administrative access and grant access (the
      # ability to grant temporary administrative privileges to non-admins within the
      # chat room) in the chat room. 
      $SIGMACHAT_AUTH_GRANTACCESS   = array(6);
After add (change usergroup id to the one you want to list and remove it from it's previous array);

Code:
      # Specify the Primary User Group For Sponsor Members with standard access
      $SIGMACHAT_AUTH_SPONSORACCESS   = array(14);

In chat_auth.php find;

Code:
	   if(in_array($userinfo[usergroupid], $SIGMACHAT_AUTH_ACCESS)) die("1");
After add (for basic chat access);

Code:
 	   if(in_array($userinfo[usergroupid], $SIGMACHAT_AUTH_SPONSORACCESS)) die("1");
In chat_online.php find;

Code:
            if(in_array($bbuserinfo[usergroupid], $SIGMACHAT_AUTH_GRANTACCESS)) 
               $SIGMACHAT_RANK = $vbphrase[sigmachat_rank_2];
And after add;

Code:
            if(in_array($bbuserinfo[usergroupid], $SIGMACHAT_AUTH_SPONSORACCESS)) 
               $SIGMACHAT_RANK = $vbphrase[sigmachat_rank_3];
Save and upload. Next go to Admin > Phrases > Phrase manager > Add new phrase and add the following phrase;

Type: Global
Varname: sigmachat_rank_3
Text: Sponsor Member (change this to suit your usergroup)

That's it. Now when people use my Who's Chatting link it displays guests, members, sponsor members, moderators, & admin. It's a small thing but if like me you are trying to sell memberships it always helps to highlight those that have paid but you could use it for any selected group you wish.
Reply With Quote
  #94  
Old 06-13-2004, 07:17 AM
dfaonxa dfaonxa is offline
 
Join Date: Mar 2004
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I registered a free account and went through all the steps for the hack, thanks for the clear documentation! However, when I click on my Chat link (popup), I get a grey window with a red X. I've tried updating all my Java, I rechecked my templates (and did the update) and made sure I wasn't running automatic login and AAS simultaneously. Suggestions?
Reply With Quote
  #95  
Old 06-14-2004, 11:53 PM
TheMayhem's Avatar
TheMayhem TheMayhem is offline
 
Join Date: Oct 2002
Location: Pittsburgh, Pa
Posts: 526
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

somehow this script doesn't seem to want to be as friendly to me as it has been to everyone else. I have an enterprise account and I have $SIGMACHAT_VB_AUTHENTICATE set to 1 and it's connecting to the server completely fine, however it is rejecting me user/pass combo from my vb database no matter what, any suggestions?
Reply With Quote
  #96  
Old 06-15-2004, 11:10 PM
EvilCrow EvilCrow is offline
 
Join Date: Aug 2002
Location: Detroit, Michigan. US
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kontrabass
Arghh... I've gone through the instructions again and again and double checked everything... but when I click on my chat url (chat.php, embeded), it opens a blank page. I'm assuming some php error but nothing shows up in the error log.

I wish I could give more info, but I really don't know what I could have done wrong Using a free sigmachat account for now.
I'm having the same problems you are... :ermm:
Reply With Quote
  #97  
Old 06-16-2004, 11:12 PM
EvilCrow EvilCrow is offline
 
Join Date: Aug 2002
Location: Detroit, Michigan. US
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no one having this problem other then us two??
Anyone there? Hello
Reply With Quote
  #98  
Old 06-17-2004, 01:36 AM
Bryan Ex's Avatar
Bryan Ex Bryan Ex is offline
 
Join Date: Feb 2004
Location: Canada
Posts: 233
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sigmachat is pushing to have a beta release of their next version ready for Friday so Chris is likely up to his eyeballs right now and simply hasn't checked back here recently. Best bet is probably to post to their own support forum as I know he is keeping tabs on it daily with all the changes comng up;

http://support.raidersoft.com/forums/
Reply With Quote
  #99  
Old 06-29-2004, 01:06 AM
freakyshiat freakyshiat is offline
 
Join Date: Nov 2001
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am having a weird problem. I bought a Platinum account and everything seems fine as far as chatting goes. But while the chat popup is launched, if I click on my forums and read any threads, there are weird numbers that show up randomly everywhere for no reason. If the chat popup windows is closed, all is fine. If I use the embedded option, everything seems ok. Please see the attached image.
Reply With Quote
  #100  
Old 07-01-2004, 06:37 PM
jribz jribz is offline
 
Join Date: Oct 2003
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What's the deal with this project at this point? The zip files are empty.

I'd like to purchaser the chat software, but without the script to integrate it it would be useless to me.
Reply With Quote
  #101  
Old 07-01-2004, 06:49 PM
Bryan Ex's Avatar
Bryan Ex Bryan Ex is offline
 
Join Date: Feb 2004
Location: Canada
Posts: 233
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sigmachat has just released their beta version so the new version of chat shouldn't be far behind. They've got to get the new version online before they can update the integration script.
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 09:58 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.11674 seconds
  • Memory Usage 2,316KB
  • Queries Executed 25 (?)
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
  • (6)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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
  • (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
  • 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