Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
Mod Name / Version: RaiderSoft UBBThreads Integrated Chat 7.0

Description: This integrates RaiderSoft's Java Based Chatroom into your site and updates the who's online information.
This works with all versions of the RaiderSoft Chat Room (including the Free Version) but to get all the features to work (Database Authentication and the ability to view profiles) you'll need the Platinum Level Account (currently $135/year from RaiderSoft.com).
This will also update the Who's Online Screen with "In the Chat Room" if the user is in the chatroom.


Featues:

Integrates with the look/stylesheet of your UBB.Threads

Can automatically log the user into chat, using their Threads Username

Option to limit chat to logged in/registered users

Option to temporarily close the chatroom

Updates the Threads Who's Online page with "In The Chat Room" when users are using Chat.




Working Under: UBB.Threads 7.0

Mod Status: Beta

Any pre-requisites: A Chat Room at Raidersoft

Author(s): Micky

Date: 09/12/06

Credits: Chris at Raidersoft.com for commissioning it

Files Altered - /templates/default/header.tpl,
/languages/english/online.php

New Files - chat.inc.php, chat.tpl

Database Altered: no

Info/Instructions: Visit RaiderSoft to signup for an account. Start with a free account, which will enable you to set this up and test. You can upgrade your account at any time by logging in at the RaiderSoft site. While there is a "professional" level service, to make use of the Database authentication and the ability to view profiles in chat, be sure to upgrade to the "Platinum" level service. If you already have a RaiderSoft "Professional" level account, you can login at RaiderSoft and upgrade the account to the "Platinum" level Service.

Additional help/instructions and troubleshooting documentation is included in the Instruction file in the attached ZIP file.

Note this is exactly the same as version 7.0 - the files are simply updated to work with threads 7.0.

Disclaimer: Please backup every file that you intend to modify.
If the modification modifies the database, it's a good idea to backup your database before doing so.

Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Groupee.com.If you need official support, you'll need to restore unmodified files.
Attachments
2271-RaiderSoft-UBBThreadsChat7.0.zip (6.28 KB, 194 downloads)

Sponsored Links
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
Great! I know there's already been several requests for this Micky, thank you thumbsup


- Allen wavey
- What Drives You?
Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
No problem, I also need the Hack. laugh wink

Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
Menu link only with log in

Quote

#######################################################
###
### Open /templates/default/header.tpl
###

##
## Find this:
##

{$lang.FAQ_TEXT}

##
## Change to this:
##

{$lang.FAQ_TEXT}      
{if $myspace_link}
{$lang.CHAT_TEXT}
{/if}


Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
I believe chat.inc.php can be cut down to the following
Code
<?php
if(!defined("UBB_MAIN_PROGRAM")) exit;

function &page_chat_gpc () {
return array(
"input" => array(),
"wordlets" => array("chat"),
"user_fields" => "",
"regonly" => 1,
"admin_only" => 0,
"admin_or_mod" => 0,
);
} // end page_chat_gpc

function &page_chat_run () {
global $user,$ubbt_lang,$config,$var_start,$var_eq,$var_sep,$var_extra;

return array(
"header" => array (
"title" => "{$ubbt_lang['CHAT_ROOM']}",
"refresh" => 0,
"user" => $user,
"Board" => "",
"bypass" => 0,
"onload" => "",
"breadcrumb" => <<<BREADCRUMB
<a href="{$config['BASE_URL']}/ubbthreads.php{$var_start}ubb{$var_eq}cfrm">{$ubbt_lang['FORUM_TEXT']}</a>
»
{$ubbt_lang['CHAT_ROOM']}
BREADCRUMB
,
),
"template" => "chat",
"data" => array( "Username" => $user['USER_DISPLAY_NAME'] ),
"footer" => true,
"location" => "",
);
}
?>

With the template reading

Code
{* Script Version 7.0.0b5 *}
{* $Id: closedboard.tpl 360 2006-09-08 18:36:27Z rick $ *}

{$tbopen}
<tr>
<td class="tdheader">
{$lang.CHAT_ROOM}
</td>
</tr>
<tr>
<td class="alt-1" align="center">

<!-- NOTE: You will need to alter the "room" number -->
<!-- Put the number of your chatroom where you see XXXXX below -->
<!-- Signup for Free or Paid Chatroom at www.raidersoft.com -->

<applet
codebase="http://client.sigmachat.com/current/"
code="Client.class" archive="scclient_en.zip"
width="600" height="350">
<param name="room" value="65136" />
<param name="cabbase" value="scclient_en.cab" />
<param name="username" value="{$Username}" />
<param name="autologin" value="yes" />
</applet>

</td>
</tr>
{$tbclose}

Just to validate and remove from non-applicable parts

Sponsored Links
Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
Yes Ian. thumbsup Thus we come on a minimally code.

Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
How do I put the link in the navigation bar??

I believe I have followed the instructions, yet nothing shows up anywhere so I suspect i messed up.

I mess up a lot smile

Words of wisdom??

Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
In the templates/default/header.tpl

Code
#######################################################
###
### Open /templates/default/header.tpl
###

##
## Find this:
##

<a href="{$config.BASE_URL}/ubbthreads.php{$var_start}ubb{$var_eq}faq">{$lang.FAQ_TEXT}</a>

##
## Change to this:
##

<a href="{$config.BASE_URL}/ubbthreads.php{$var_start}ubb{$var_eq}faq">{$lang.FAQ_TEXT}</a>      
<a href="{$config.BASE_URL}/ubbthreads.php{$var_start}ubb{$var_eq}chat">{$lang.CHAT_TEXT}</a>

##########################################################


wink

Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
Does anyone have a working model of this?

It should work, but I gotta be doing something wrong...

Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
Hi Stan,
I can edit to you the files thus you must copy them only in your forum. In addition I need your chatroom number. Then I can send to you everything by eMail. wavey

Sponsored Links
Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
Thanks the number is SC-98102 (98102)

my email is [email protected]

Which changes do I have to make on raidersoft? I have the plat. account...

Really appreciate that...

Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
Does anyone have this working with the platinum or higher version??

Joined: Jul 2001
Posts: 808
Coder
Coder
Joined: Jul 2001
Posts: 808
You should remember the codechanges from Sigma. If you run german:

PHP Code
<applet 
codebase
="http://client1.sigmachat.com/current/"
code="Client.class" archive="scclient_de.zip"
width=600 height=350 MAYSCRIPT>
<
param name="room" value="XXXXXX">
<
param name="cabbase" value="scclient_de.cab">
</
applet>

Joined: Jul 2001
Posts: 808
Coder
Coder
Joined: Jul 2001
Posts: 808
To get the navigation menu text displayed you have to edit language/english/generic.php too.

Find:
$ubbt_lang['FAQ_TEXT'] = "FAQ";

Add under it:
$ubbt_lang['CHAT_TEXT'] = "Chat";

Do this to all language files.

Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
Thank you again, just installed this for a client smile

Hey Stan, what issues are you having with your platinum acct?


- Allen wavey
- What Drives You?
Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
trying again, making headway, thanks for the reminder of this...

I do have the link in my header now, but it does not take me to my site,.

wonder if this has to change

codebase="http://client.sigmachat.com/current/"


to something at addonchat.com ??


Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
OK

had to change the code to
codebase="http://client1.addonchat.com/current/"

Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
When I go to the chat, i am not an admin.... any one else have that problem???
If I change my screen name over the admin as named in the control panel it gives a log in error

Thoughts?

Joined: Jul 2002
Posts: 79
Power User
Power User
Offline
Joined: Jul 2002
Posts: 79
ALSO the code to show who is online is cut off from the file that comes with the download...

The code from radiersoft to show who is online doesn't work after you have this intergrated..

Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
That whole applet code section has to change:

Code

<applet code="Client.class"
codebase="http://client1.addonchat.com/current/"
archive="scclient_en.zip" width="600" height="400"
alt="Java Chat Software - AddonChat" MAYSCRIPT>
<param name="room" value="your#">
<a href="http://www.addonchat.com/">Java Chat Software</a>
</applet>


- Allen wavey
- What Drives You?
Joined: Feb 2007
Posts: 2
Lurker
Lurker
Offline
Joined: Feb 2007
Posts: 2
Is there anyone interested in installing this mod for me? I can pay $150...

am using Threads 7.1 with AddonChat Professional Plus.

Joined: Feb 2007
Posts: 2
Lurker
Lurker
Offline
Joined: Feb 2007
Posts: 2
I got it working now... Just needed the remote auth script.

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
lol next time you're throwing around $150, feel free to pm me haha


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
For those who may be confused, raidersoft is now addonchat:

http://www.addonchat.com/

The code for the applet should be updated per my instructions at the bottom of page 1 of this topic.


- Allen wavey
- What Drives You?
Joined: May 2001
Posts: 794
Content Queen
Content Queen
Offline
Joined: May 2001
Posts: 794
Yo, Gizzy ... is this the chat you had installed at my site?

Let me know!

~Sue
adwoff.com

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
No, you're using the pJIRC Clickly Clicky

pJIRC is FREE, whereas this is not.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Mar 2007
Posts: 1
Lurker
Lurker
Joined: Mar 2007
Posts: 1
For those interested, AddonInteractive is currently offering 12% off for AddonChat purchases to ubbdev.com members. For more information, and to sign-up, please visit http://www.addonchat.com/

To take advantage of the offer, enter the coupon code UBBDEV when checking out.

If you have any questions about our services, or would like a free two week trial upgrade (for best integration with UBB, we recommend the Professional PLUS edition) feel free to eMail us at support@addonchat.com

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
I'm glad to hear about the discounts Chris, I'm sure some will definitely take advantage of them; glad to have you guys working on things over there to integrate in with us smile.


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Mar 2003
Posts: 9
Junior Member
Junior Member
Offline
Joined: Mar 2003
Posts: 9
I have uploaded the files but I cannot get things to work.

It seems like the applet hangs - I cannot login at all.

Is the mod working with Ubb Threads 7.1?




Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
It should be, there weren't any changes in 7.1 that would affect this mod. Double-check your coding please smile


- Allen wavey
- What Drives You?
Joined: Mar 2003
Posts: 9
Junior Member
Junior Member
Offline
Joined: Mar 2003
Posts: 9
I solved the one with the applet not loading - it was a Windows Vista problem. Solution found at AddonChats support site.

But I cannot get the remote authentication to work. What should I set as the Authentication URL?

Kristian

Joined: Mar 2003
Posts: 9
Junior Member
Junior Member
Offline
Joined: Mar 2003
Posts: 9
Hmm, my problem is solved. I had not set CHMOD 0666 on chat.tpl. After I did that I got it to work.

Joined: Feb 2004
Posts: 182
Member
Member
Joined: Feb 2004
Posts: 182
Hello,
RaiderSoft Integrated chat runs under UBBT version 7.1 without problem. smile

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Glad to hear it wink.. I've been messing with it for a while now, it's pretty interesting


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Mar 2003
Posts: 9
Junior Member
Junior Member
Offline
Joined: Mar 2003
Posts: 9
Now I can use the chat but moderators and administrators don't log in with the moderaters possibility to kick, ban etc.

Any idea of how to log in admins and moderators to act as moderators with this mod?

Sorry for my bad english frown

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
Simply put, you don't... It literaly only reads your login name and password; little information is given for anything involving the integration file, and the staff over at their support forums aren't much help either...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts
Joined: Mar 2003
Posts: 9
Junior Member
Junior Member
Offline
Joined: Mar 2003
Posts: 9
But it worked under UBB Threads 6.5. I really need this function but I'm not that good at programming frown

Joined: Jan 2000
Posts: 5,833
Likes: 20
UBBDev / UBBWiki Owner
Time Lord
UBBDev / UBBWiki Owner
Time Lord
Joined: Jan 2000
Posts: 5,833
Likes: 20
You'll need to contact their developer for assistance with their integration; I myself have dived into the file and don't see that it's used at all, though there is like 0 documentation on their integration file...


UBB.Dev - Putting Dev into UBB.threads
Company: VNC Web Services - UBB.threads Scripts and Scripting, Install and Upgrade Services, Site and Server Maintenance.
Forums: A Gardeners Forum, Scouters World, and UGN Security
UBB.Threads: My UBB Themes, My UBB Scripts

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)