UBB.Dev
Posted By: LK [6.3.x] [beta] Chat Mod 1.2 - 04/13/2002 2:48 PM
My first mod, ported to 6.3 laugh

Here we go:

Name: Chat Mod

Description: Lets you chat with jIRC. It has full CP support, it's 100% wordletized, it automatically gets the nick of the user/GuestXXXXX (5 random digits) if it's a guest, replaces smilies with real smilies, shows how many people are currently chatting and even invites people to the chatroom (by Recent Visitors, thanks to Olson).

Demo: http://www.lkworld.com

Link: ZIP File or MultiHack File

Requirements: UBB™ 6.3.0 Beta Release 1.0 , Mod Wordlets , jPilot License (unless you want to see an "unregistered" line after every line)

Number of downloads: [img]https://ubbdev.com/lk/num.php?s=chat.zip,chat.mhp[/img]

Special thanks to: Ryan Olson for Invitation Script, Brett (raiyan) for JavaScript idea, dj_rava for the Admin Command Buttons idea and Troy for MultiHack, hosting and supporting me all the way smile .

Screenshots: Forum Summary , Chat Window , CP
Posted By: Variables Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 2:13 AM
Great work LK, installed and working!
But the invite is not working, it gives errors.
I checked the readme again but all was put in the right place.

It has something to do with templatenumber(s) ???
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 1:10 PM
Fixed smile
Posted By: SirGrendel Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:05 PM
Can't find this in my ultimatebb.cgi:

Find:
=====

} elsif ($in{ubb} =~ m/^(pntf|pntf_js|pntf_admin|preview_post)$/) {
$templatefile = $template_match{summary_page};
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:10 PM
Ignore that part, I forgot to upload the ZIP without it
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:34 PM
ZIP/MHK files updated - I forgot about a Wordlet - "FieldNameSignoff" - please add it smile

Modified files: ubb_chat and vars_wordlets_mods
Posted By: SirGrendel Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:46 PM
Error:

LoadStyleTemplate no longer takes a number.

(Backtrace: : ubb_lib.cgi:1830 -> sub main::Tracer)

(Backtrace: : ubb_chat.cgi:15 -> sub main::LoadStyleTemplate)

(Backtrace: : ultimatebb.cgi:526 -> sub main::chat)
Posted By: SirGrendel Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:53 PM
Call me an idiot. I forgot to upload the 3 cgi-and-pl-files in chat.zip :rolleyes:
Posted By: SirGrendel Re: [6.3.x] [beta] Chat Mod 1.2 - 04/14/2002 10:58 PM
Just one question: in this new version, the chat reloads continuesly - isn't that to much serverload?
Posted By: Telekinesis Re: [6.3.x] [beta] Chat Mod 1.2 - 04/15/2002 12:34 AM
The page or the applet?
Posted By: SirGrendel Re: [6.3.x] [beta] Chat Mod 1.2 - 04/15/2002 9:59 AM
*ahem*
Forget that too. I wasn't at 100% yesterday. Had to run the config in CP once... It loads cont., if you don't give any time for how often the userlist refreshes :rolleyes:

Just ignore all my text in here wink
Posted By: Eliza Re: [6.3.x] [beta] Chat Mod 1.2 - 04/20/2002 6:34 PM
Where it says to look for this...

quote:
sub OpenFileAsVar {
push (@openedfiles, $_[0]);
local (*FILE);
local ($str);

if (-e "$_[0]") {
my $handle = $filehandle->open('file', 'readonly', $_[0]);
$str = $handle->readfile();
$filehandle->close($handle);
} else {
&CheckCachedFile($_[0]);
}
chomp($str);

It is actually:

quote:
push (@openedfiles, $_[0]);
local (*FILE);
local ($str);

if (&FileExists($_[0])) {
my $handle = $filehandle->open('file', 'readonly', $_[0]);
$str = $handle->readfile();
$filehandle->close($handle);
} else {
&CheckCachedFile($_[0]);
}
chomp($str);

The part that is different:

In your code you have

quote:
if (-e "$_[0]") {
In the ubb 6.3X file it is:

quote:
if (&FileExists($_[0])) {
At least it was that way for me.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/20/2002 6:38 PM
Yup, sorry, thanks smile
Posted By: Eliza Re: [6.3.x] [beta] Chat Mod 1.2 - 04/20/2002 6:43 PM
Your welcome!!!

I'm glad I could put my 1 cent in and help out a little.

laugh
Posted By: Ron M Re: [6.3.x] [beta] Chat Mod 1.2 - 04/24/2002 3:22 PM
LK, I haven't looked at the code in a while. Is it possible to shorten the random digits for guests to like 3 or 4? I know a place where they would never get over 999 Guests using Guest### (actually the chatserver would probably crash)
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/24/2002 5:05 PM
5 digits == world standard.

But:

$nick = "Guest$digit[rand(10)]$digit[rand(10)]$digit[rand(10)]$digit[rand(10)]$digit[rand(10)]";

Delete the last two $digit[]
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/27/2002 5:16 PM
Fixed a problem: most admin commandbuttons didn't work. Please upload the new ubb_chat.cgi smile
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 04/29/2002 5:55 PM
I have a probelm, i see the little logo chat and no the text for connect to the chat :
My URL
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/29/2002 5:57 PM
Reinstall Mod Wordlets - www.qasic.net and rehack vars_wordlets_mods.cgi part of chat mod.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 04/30/2002 7:21 PM
ZIP/MHK files updated - added HTML feature to CP.

Please re-upload cp_vars_chat.pl, ubb_chat.cgi and rehack cp_lib.cgi.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/01/2002 8:59 PM
Fixed a bug in the counter - please re-upload ubb_chat.cgi smile
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 05/02/2002 5:00 PM
Now i have this message when i run my forum :

Software error:
Execution of /home/sites/site1/users/jano/web/cgi/ubbcgi/ultimatebb.cgi aborted due to compilation errors.
For help, please send mail to the webmaster (admin), giving this error message and the time and date of the error.

What can i do ?

Thanks.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/02/2002 7:19 PM
It doesn't really help, rehack everything wink If it still doesn't work, please leave your ICQ/AIM/MSN/Yaho! ID
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 05/02/2002 9:12 PM
I send you PM for ICQ.

If i re-hack ultimatebb.cgi i have the same problem, in manual mode or with multihack. I use 6.3 beta 2.

Thanks.
Posted By: Eaglecrew Re: [6.3.x] [beta] Chat Mod 1.2 - 05/09/2002 4:53 AM
I tried it on 6.3 Beta 2... no luck. Any major changes to get it to work here. Love to have this one on my board. laugh

Thx
Posted By: WNxWakko Re: [6.3.x] [beta] Chat Mod 1.2 - 05/10/2002 9:19 PM
Using multihack I also get

Software error:
Execution of /home/sites/site4/web/cgi/cgi-bin/ultimatebb.cgi aborted due to compilation errors.
For help, please send mail to the webmaster (admin), giving this error message and the time and date of the error.

Ive rehacked it 3 different times. Ive tryed it live on the web and incase I did permissions wrong or something strange, I also hacked it on my PC local board and still same error.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/10/2002 9:47 PM
Blame Qasic tipsy

Open ultimatebb.cgi.
Find:
wordlet_mods
Replace with:
wordlets_mods

Open vars_wordlets_mods.cgi.
Try to find:
wordlet_mods
Replace with:
wordlets_mods

If even 1 of them is there, it should work after fixing it. If not, do you have AIM/ICQ/MSN?
Posted By: WNxWakko Re: [6.3.x] [beta] Chat Mod 1.2 - 05/10/2002 10:56 PM
Yup, the spelling error was the problem. Works now, Thanks!
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/13/2002 8:42 PM
Fixed a minor bug in ubb_chat.cgi, please re-upload from the updated ZIP/MHP.
Posted By: Asniper Re: [6.3.x] [beta] Chat Mod 1.2 - 05/15/2002 1:35 AM
hi i'm getting htat complication error too and i checked if the spelling was correct and they are

any help would be nice thnx in a advanced
Posted By: wadood Re: [6.3.x] [beta] Chat Mod 1.2 - 05/15/2002 1:04 PM
Posted By: Ian_W Re: [6.3.x] [beta] Chat Mod 1.2 - 05/19/2002 10:12 PM
Hi LK,

Mod works great, now that I figured out the spelling error for wordlets_mod etc. Mind you the chat message in category view is showing up twice, and twice in the CP as well - weird, will have to edit those out.

Question - how does the invite work, as although no errors happen, no invite is ever received. Is there anything else I need to add.

Ian
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/19/2002 10:29 PM
1) so you hacked it twice tipsy

2) it should work, try to rehack public_common.pl?
Posted By: Ian_W Re: [6.3.x] [beta] Chat Mod 1.2 - 05/19/2002 11:14 PM
a) probably correct smile

b) public_common.pl fine - just the one line added - but still no joy frown

Re-checked each file, just in case frown

Ian
Posted By: Eaglecrew Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 4:33 AM
Invite feature doesn't work on my board either. Sometimes you get a delayed invite message and other times it doesn't work at all. frown
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 6:19 AM
Canvey, I visited your site and can say for sure that you didn't hack JCTemplates/public_common.pl correctly tipsy

Eagle, I need a demo user/pass for eaglecrew.com.
Posted By: Eaglecrew Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 6:43 PM
LK sent the login nfo to your dkldkl2@ email address.

Thanks! laugh
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 6:57 PM
Okay, the problem is in ultimatebb.php - doesn't chop.

Try the following and tell me if it works before I update the ZIP:
Open ultimatebb.cgi.
Find:
Code
[/code]Add below:[code]
smile
Posted By: Eaglecrew Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 7:30 PM
I think you meant to say Open ultimate.php not ultimate.cgi?

Edited the php file and still doesn't seem to work right and now I show up twice in the chatroom? confused
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 7:56 PM
Worked when I tried smile (notice: it only works in forum summary, forum page, topic page, faq, ubbcode page)
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 05/23/2002 8:11 PM
ZIP/MHK files updated... Added the changes to ultimatebb.php, and now ubb_chat.cgi uses $ULTIMATEBB
Posted By: Tama-chan Re: [6.3.x] [beta] Chat Mod 1.2 - 06/13/2002 5:45 PM
Had no problem hacking everything and from what I've seen it works great! Thanks a lot LK! laugh
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 06/28/2002 8:41 PM
Updated, using instead of that thing (now it doesn't break cache).

Thanks brett (raiyan) for the idea!
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 06/30/2002 6:34 PM
Updated again, fixed a bug in chat.cgi, re-upload it.
Posted By: Zackary Re: [6.3.x] [beta] Chat Mod 1.2 - 06/30/2002 10:13 PM
Hehe, I just downloaded this yesterday to do a reinstall on my boards and came back to mention a bug... but, looks like it's all fixed. laugh

Nice timing LK! thumbsup

~Z
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 07/01/2002 8:37 PM
I have just installed new version, now i haven't text on the line for start chat on :

http://www.motorlegend.com/users/jano/cgi/ubbcgi/ultimatebb.cgi

Wordletmod is installed and chat running fine after. How fix it ?

Thanks.
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 07/04/2002 11:02 AM
LK, please, Helpe Me wink !
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 07/04/2002 11:33 AM
I missed your post wink You didn't CHMOD 755 "chat.cgi" (a new file in cgi-bin dir), or you didn't change the first line (#!/usr/bin/perl) to reflect your server's one. If you don't know what it is, check ultimatebb.cgi's first line.
Posted By: Logam Re: [6.3.x] [beta] Chat Mod 1.2 - 07/04/2002 3:59 PM
It's fine now, THANKS !!!
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 07/04/2002 8:10 PM
ZIP file updated, re-upload chat.cgi (only to fix an error in the error log, it doesn't matter)
Posted By: LSGOLF Re: [6.3.x] [beta] Chat Mod 1.2 - 07/05/2002 11:22 AM
Getting the following error when modifying setting in control panel

Undefined subroutine &main::set_vars_chat called at /home/links/cgi-bin/2003/cp.cgi line 305.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 07/05/2002 1:06 PM
Rehack cp_lib.cgi.
Posted By: Kel Re: [6.3.x] [beta] Chat Mod 1.2 - 07/30/2002 4:20 AM
Bump!

The links aren't working.
Posted By: Kel Re: [6.3.x] [beta] Chat Mod 1.2 - 07/31/2002 6:43 AM
Bump again.

Has this mod been pulled for some reason?
Posted By: maurice Re: [6.3.x] [beta] Chat Mod 1.2 - 07/31/2002 9:59 AM
Try https://ubbdev.com/lk/ wink
Posted By: Kel Re: [6.3.x] [beta] Chat Mod 1.2 - 07/31/2002 4:28 PM
Thank you Maurice smile
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 08/02/2002 4:05 PM
Updated to 6.3.1 (cp_lib.cgi, cp_common.pl)
Posted By: Showdax Re: [6.3.x] [beta] Chat Mod 1.2 - 08/14/2002 9:47 PM
I'm getting:

ubb/Templates/cp_vars_chat.pl: Undefined subroutine &main::AlternateColors called at /ubb/Templates/cp_vars_chat.pl line 19.

When I go to Chat Settings.
Posted By: caroth Re: [6.3.x] [beta] Chat Mod 1.2 - 08/27/2002 10:56 PM
Hey LK, I get this wierd Chat I-frame page when trying to backup on my board. It will not backup with the browser (IE6). Check it out:

http://ubb.turboford.org
Posted By: speed Re: [6.3.x] [beta] Chat Mod 1.2 - 08/28/2002 4:34 AM
I am using 6.3.1.1.. I have templates installed and at the end of the templates text it says to edit ubb forum_summary.cgi if you have the chat hack installed, which I do! everything seems to work as far as I can tell but the code below this dosent exsist
#################################################
DO THIS STEP ONLY IF YOU HAVE CHAT MOD INSTALLED #################################################
Is there something Im missing ??
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 08/28/2002 10:21 AM
Speed, you don't need to do it anymore smile
Posted By: speed Re: [6.3.x] [beta] Chat Mod 1.2 - 08/28/2002 12:58 PM
Thanks LK (Less is better)
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 08/30/2002 2:14 PM
ZIP/MHK files updated - re-upload ubb_chat.cgi and cp_vars_chat.pl; also, it's RECOMMENDED that you re-upload jirc_*.

Updates - jIRC 2.6.0 preview 3 (not 2); you can now use Hex code in the colors (not only RGB and names)
Posted By: August Re: [6.3.x] [beta] Chat Mod 1.2 - 09/02/2002 6:19 AM
LK, this is definitely the coolest mod I've seen. Thank you!

BTW, is it a deliberate feature design that non-registered members (guests) cannot connect to the IRC chatroom? (they never successfully complete the session connection) I like it this way, but am curious.
Posted By: caroth Re: [6.3.x] [beta] Chat Mod 1.2 - 09/04/2002 12:58 AM
Hey, I posted earlier, we cannot use the back button anylonger. The I frame shows up as a back page but we cannot backup. Any way to get rid of the Iframe stuff?
Posted By: August Re: [6.3.x] [beta] Chat Mod 1.2 - 09/09/2002 9:16 PM
My members LOVE the new chat feature and the chat room is frequently full of people. A lot of them have now contact me with an idea for a new feature (maybe you've considered this):

Have the forum summary page list the actual members in the chat room rather than just a number count.

Just tossing this out as an idea. Thanks for all your work!
Posted By: dbode Re: [6.3.x] [beta] Chat Mod 1.2 - 09/11/2002 10:35 PM
Just two things :

I also get the :alternate colors message in the CP... so is there any chance to get the Mod work with a 6.3.0 UBB ?

And where is the iframe shown ?
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/11/2002 10:38 PM
caroth, you can set the refresh time in chat mod to 1000, then it won't refresh unless the user leaves the site open and goes to another state wink

August, good idea...

dbode, read what I said in my other hacks: just remove "&AlternateColors;" from anywhere in the cp_vars_chat.pl file...

Oh, and.. hmm.. 6.3.1 is better anyway wink
Posted By: dbode Re: [6.3.x] [beta] Chat Mod 1.2 - 09/12/2002 10:01 AM
Hehe, yes I know, but I need a german version.

Perhaps I´ll upgrade when UBB is Version 6.6 *g*

One Question - we were 5 People in the chat yesterday evening from 10 to 12 PM. My system shows me that there are over 2900 Hits on the chat.cgi yesterday.

I didn´t expect hat it reloads so much - when I open it to the public, there will be around 10 or 20 times the traffic.

So are there just so much hits because it is also loaded when the category pages are loaded ? Then there would be no increase from yesterday to any time. But if that traffic is just because of 5 persons, my virtual webhoster will kill my account today laugh

Any help ?

Best regards,
Dennis
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/12/2002 10:28 PM
Hi All,

Was just introduced to this forum afew days ago. Since then I've installed Quick Reply and the Calendar and some other mods but not sure what they do. lol

I just installed Chat but when I go to the CP, I don't see any setting parameters. It is in the drop down menu but when the page refreshes there are no options.

any ideas? I know it is probably something very simple I left out.

Thanks,

Jon Engalla
http://www.filambasketball.com/messageboard.html
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/13/2002 6:17 AM
dbode, no ideas, I'm gonna check soon frown

FilAm, re-upload cp_vars_chat.pl to noncgi/Templates folder.
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/13/2002 9:16 AM
I re-uploaded cp_vars_chat.pl to the noncgi/Templates folder and still no change.

All I see is:

FilAm Basketball Chat Settings
Chat for UBB6.3 by LK
UBB-related Parameters
License Key: XXXXXXXXXXXXXXX

Nothing else...

Please help...
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/13/2002 12:46 PM
BTW the license key isn't the UBB one, and it can be seen from the source. You get it from JPilot, and if you don't have one yet just leave it empty...

About your problem, make sure you removed all "&AlternateColors;" from cp_Vars_chat.pl.

Oh, and btw, please fix your copyright image - it has to say "Powered by Infopop" like the original one.
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/13/2002 7:48 PM
Changes Done... Works fine. Thank you LK!
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/13/2002 9:58 PM
How come the Chat link is just a small icon at the bottom of the forum page? Any way to enhance that?

Is there a way to make the chat link more visble on my site? URL=http://www.filambasketball.com/cgi-bin/ultimatebb.cgi
Posted By: August Re: [6.3.x] [beta] Chat Mod 1.2 - 09/14/2002 6:47 AM
As we use the chat more and more, the I Chat reloads have become a major problem and my PM inbox is literally filled with complaints now asking why I disabled the 'back' button. This is happening on ALL pages in the forum, including the forum home summary, not only the chat room page.

I went to increase the refresh rate -- you can only set it up to 99, so I set it at 99, reset the cache, and it still reloads in intervals of around 5 minutes.

Didn't even realize that it would be driving page-view traffic stats, but that is going to be a problem too.

Any advice on a solution would be hugely appreciated.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/14/2002 8:47 AM
Okay, I removed that thingy. Please re-download chat mod, re-upload chat.cgi and rehack public_common.pl.
Posted By: August Re: [6.3.x] [beta] Chat Mod 1.2 - 09/14/2002 10:56 PM
Thanks LK, but now after the new change when the forum summary page loads, a "File Download" box automatically pops up asking if you want to open chat.cgi "from its current location" or "save this file to disk".

You can see what happens on my test site:

http://www.epic-ski.com/cgi-bin/ultimatebb.cgi
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/15/2002 7:20 AM
No, I can't, because you probably removed it tipsy

Anyhow, are you sure you re-hacked public_common.pl and not just chat.cgi?
Posted By: August Re: [6.3.x] [beta] Chat Mod 1.2 - 09/15/2002 9:04 AM
Ok, I'm an idiot -- sorry! I did re-hack the public_common.pl, but I didn't clear the server's and my PC's caches so wasn't actually testing the re-hacked public_common.pl. It was a rookie mistake, and I'm totally embarrased by it.

Thank you so much for this quick fix. smile
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/20/2002 7:42 AM
Can Anyone Answer my question...

PLEASE.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/20/2002 8:21 AM
public_forum_summary.pl, where chat mod modifies... Replace size="1" with size="$vars_style{TextSize}". then make yourself a big icon for chat.gif. tipsy
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/23/2002 9:58 PM
My Forum Summary does not let members know how many are in the chat room. I've seent his feature on several sites... Am I missing something. Currently it just has the CHAT ICON and no text on the right of it.

Please help.

Thanks!
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/23/2002 10:00 PM
Oh and I see a new verion as well. If I have a working version of 1.1

What do i need to do to upgrade? Thanks in advance.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 6:00 AM
1. Make sure you uploaded "chat.cgi" to cgi-bin folder, and CHMODded it to 755.

2.
Quote
quote:
Originally posted by LK:
Okay, I removed that thingy. Please re-download chat mod, re-upload chat.cgi and rehack public_common.pl.
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 10:33 AM
Who was this in response to LK?

Please help...
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 5:44 PM
1 was your first post, 2 was your second (I listed the files you have to upgrade there tipsy )
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 6:47 PM
The Chat works fine... And I've uploaded the new files, but I still don't have any text mentioning how many users are currently in the Chat Room.

Chat.cgi is in my cgi-bin directory and chmod correctly. Cache has been cleared... What else am I missing?
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 7:05 PM
When I type in this url:

http://www.filambasketball.com/cgi-bin/chat.cgi?f=summary

A download button comes up... If that helps.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 7:46 PM
Are you sure you have Mod Wordlets, and added Chat Mod wordlets for it?
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/24/2002 11:40 PM
Just made sure... Yes. Cleared cache... Still nothing.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/25/2002 7:29 AM
Well, I'm sure you did it incorrectly wink
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/25/2002 7:50 AM
I'm gonna try to re-hack again... Everything else seems to work, it's just the summary of who's online that is not showing?!?! I know it must be something real simple. Should I just redo everything?

I'm sure you're right... I am missing something. Just thought I could skip the entire rehack... frown
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 09/25/2002 7:55 AM
Probably vars_wordlets_mods instructions of chat mod, or ultimatebb.cgi instructions of wordlet mods... If you still can't fix it, please gimme a user/pass for your board tipsy
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/25/2002 8:58 AM
Just sent you user/pass
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 09/25/2002 9:55 AM
still not working... frown
Posted By: FilAm Basketball Re: [6.3.x] [beta] Chat Mod 1.2 - 10/04/2002 7:40 AM
Hey LK,

Still trying to figure out why the chat summary is not displaying on my forum summary page.

Any other ideas?
Posted By: spiffy Re: [6.3.x] [beta] Chat Mod 1.2 - 10/14/2002 6:00 PM
Hi, does anyone know if this chat mod will work with version 6.3.1.1 of UBB?

Ta much.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/14/2002 6:18 PM
Please try it before asking wink
Posted By: 1QuickSI Re: [6.3.x] [beta] Chat Mod 1.2 - 10/15/2002 5:53 PM
LK, I am running your chat mod on my 6.1.0.4 system. I noticed that your new version includes a drop down for sounds. Could you tell me where and what code to place so I can do the same?

Thanx
Posted By: SuperSaiyan-Jin Re: [6.3.x] [beta] Chat Mod 1.2 - 10/16/2002 11:09 PM
Quote
quote:
Originally posted by FilAm Basketball:
Hey LK,

Still trying to figure out why the chat summary is not displaying on my forum summary page.

Any other ideas?
If you get it working can you tell me as i am having the same problem and when i try going to ultimatebb.cgi?ubb=chat it tells me:

You are attempting to reach a page that does not exist.

» Please use your browser's back button to return.

Any ideas?

SSJ
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/16/2002 11:40 PM
about ?ubb=chat - rehack ultimatebb.cgi

about forum summary - I need your URL.

QuickSI:
Code
	if ($vars_chat{Sound}) {
local(*DIR);
opendir(DIR, "$vars_config{NonCGIPath}") || die "can't opendir NonCGI dir: $!";
my @sounds = grep { /sound_.*?.au/ } readdir(DIR);
closedir DIR;

$ImportantButtons .= qq~<td align="center">n<form id="sound">n<select id="sounds" onchange="if(sound.sounds.options[sound.sounds.selectedIndex].value != '') { jchat.processJInput('/s '+sound.sounds.options[sound.sounds.selectedIndex].value) }">n<option value="" selected="selected">$vars_wordlets_mods{chat_sounds}</option>n<option value="">------------</option>n~;

my $upname; my $regname;

foreach(@sounds) {
$_ =~ m/sound_(.*?).au/;
$upname = $regname = $1;
$upname =~ s/$upname/u$upname/;
$ImportantButtons .= "<option value="$regname">$upname</option>n";
}

$ImportantButtons .= "</select>n</td>";
}
Posted By: 1QuickSI Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 4:57 AM
LK, thanx! But what file does this go into and after/before what?
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 7:12 AM
ubb_chat.cgi, it goes after
Code
		$ImportantButtons .= qq~<td align="left">n<font face="$vars_style{FontFace}" size="$vars_style{TextSize}"><a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=newinvite" target="_blank"><img src="chat_envelope.gif" alt="$vars_wordlets_mods{chat_send_invitation}" border="0" /> $vars_wordlets_mods{chat_send_invitation}</a></font>n</td>n~;
}
and if you don't have it, put it after $ImportantButtons = line.
Posted By: 1QuickSI Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 7:40 AM
Ok tried to place it after one of those lines and nothing appeared. Here is the section I was using:

Code
		$Graemlins .= qq~
</td></tr>
$TBB
</td></tr></table>


~;
}

$ImportantButtons = qq~<table width="$vars_chat{Width}" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td width="100%">~;
if ($vars_chat{Invite}) {
$ImportantButtons .= qq~<font face="$vars_style{FontFace}" size="$vars_style{TextSize}"><a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=newinvite" target="_blank"><img src="chat_envelope.gif" alt="$vars_wordlets_mods{chat_send_invitation}" border="0" /> $vars_wordlets_mods{chat_send_invitation}</a></font></td>~;
}

if ($vars_chat{Sound}) {
local(*DIR);
opendir(DIR, "$vars_config{NonCGIPath}") &#0124;&#0124; die "can't opendir NonCGI dir: $!";
my @sounds = grep { /sound_.*?.au/ } readdir(DIR);
closedir DIR;

$ImportantButtons .= qq~<td align="center">n<form id="sound">n<select id="sounds" onchange="if(sound.sounds.options[sound.sounds.selectedIndex].value != '') { jchat.processJInput('/s '+sound.sounds.options[sound.sounds.selectedIndex].value) }">n<option value="" selected="selected">$vars_wordlets_mods{chat_sounds}</option>n<option value="">------------</option>n~;

my $upname; my $regname;

foreach(@sounds) {
$_ =~ m/sound_(.*?).au/;
$upname = $regname = $1;
$upname =~ s/$upname/u$upname/;
$ImportantButtons .= "<option value="$regname">$upname</option>n";
}

$ImportantButtons .= "</select>n</td>";
}
Here is the link if you need it:
http://www.hostboard.com/cgi-bin/ultimatebb.cgi?ubb=chat

...
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 2:09 PM
Because you should remove the if ($vars_chat{Sound}) { thing (and the "}" at the end) tipsy
Posted By: 1QuickSI Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 5:43 PM
Hey now for someone who know zero perl I am getting by pretty well wink

But isn't that part of the code you just told me to add?
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 5:50 PM
It's part of the code that handles sounds, I didn't tell you to add it wink
Posted By: SuperSaiyan-Jin Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 8:30 PM
I've rehacked ultimatebb.cgi and still the same.

The owner doesnt want me giving out the forum address - Soz.

Anymore ideas?

SSJ
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 8:40 PM
Forum summary - rehack vars_wordlets_mods.cgi, then rehack ultimatebb.cgi steps from MOD WORDLETS instructions @ www.qasic.net

?ubb=chat - rehack ultimatebb.cgi (chat mod, not wordlets) again wink the step with if ($ubb eq 'chat') {
Posted By: SuperSaiyan-Jin Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 9:02 PM
Got the forum summary working but i re and rehacked the ?ubb=chat part and i still get the same. is there anything else?

SSJ
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 9:11 PM
Nothing else, do it AGAIN tipsy It _has_ to be it.
Posted By: SuperSaiyan-Jin Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 9:16 PM
Quote
code:
Code
 if ($ubb eq 'chat') {
&RequireCode("$vars_config{CGIPath}/ubb_chat.cgi");
&chat;
exit(0);
}

if ($vars_chat{Invite}) {
if ($ubb eq 'newinvite') {
&RequireCode("$vars_config{CGIPath}/ubb_chat.cgi");
&invite_form("$vars_wordlets_mods{invite_message}");
exit(0);
}

if ($ubb eq 'invite') {
&GetOrPost("POST");
&RequireCode("$vars_config{CGIPath}/ubb_chat.cgi");
&invite;
exit(0);
}
}

That is what i'm adding in ulitmatebb.cgi right?

code:
[qb]
Code
 # forum summary
if ($ubb eq '') {
&RequireCode("$vars_config{CGIPath}/ubb_forum_summary.cgi");
&forum_summary;
exit(0);
[/qb]
Under that?

SSJ
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 9:24 PM
Quote
quote:
Originally posted by SuperSaiyan-Jin:
That is what i'm adding in ulitmatebb.cgi right?

code:
[qb]
Code
 # forum summary
if ($ubb eq '') {
&RequireCode("$vars_config{CGIPath}/ubb_forum_summary.cgi");
&forum_summary;
exit(0);
[/qb]
Under that?

SSJ
You forgot the "}" after "exit(0);"
Posted By: SuperSaiyan-Jin Re: [6.3.x] [beta] Chat Mod 1.2 - 10/17/2002 9:28 PM
Nevermind. One to many }'s

Thanks for your help LK

SSJ

*EDIT*

Its working now THANK YOU!!!!

*EDIT*
Posted By: Neo11223 Re: [6.3.x] [beta] Chat Mod 1.2 - 10/18/2002 4:55 AM
Question: Does the chat run off your server or IRC's server?
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/18/2002 7:13 AM
The IRC's server.
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/22/2002 2:06 PM
Thanks to http://www.vwcorrado.de , we have a TCL version for the eggdrop: it shows the exact details about chat visitors. untested.

TCL file: https://www.ubbdev.com/ubb/upload/00004463/userlist.zip

Instructions:
Code
What I did to chat.cgi was:

if ($in{f} eq 'topic') {

my @file = &OpenFileAsArray("$vars_config{MembersPath}/chat.cgi");
my $chat_topic = $file[0];

my $chat_user = $file[1];
my $chat_counter = $chat_user =~ tr/,/,/s;
$chat_counter++;

$chat_topic =~ s/</</g;
$chat_topic =~ s/>/>/g;
$chat_topic =~ s/"/"/g;

if (length($chat_topic) > 55) {
$chat_topic = substr($chat_topic,0,54);
$chat_topic .= "[...]";
}

$ChatHTML .= "Aktuelle Besucher: $chat_counter</b> - Thema: '$chat_topic'";
$ChatHTML =~ s/"/\"/isg;
print "Content-type:
text/javascriptnndocument.write("$ChatHTML");"; exit(0);

}

if ($in{f} eq 'summary') {

my @file = &OpenFileAsArray("$vars_config{MembersPath}/chat.cgi");

my $chat_topic = $file[0];
my $chat_user = $file[1];
my $chat_counter = $chat_user =~ tr/,/,/s;
$chat_counter++;

my $ChatHTML;

$ChatHTML .= "$chat_user";
$ChatHTML =~ s/"/\"/isg;
print "Content-type:
text/javascriptnndocument.write("$ChatHTML");"; exit(0);

}
That is instead of everything between if ($in{f} eq 'summary') { and }.
Posted By: Kwik Re: [6.3.x] [beta] Chat Mod 1.2 - 10/22/2002 2:38 PM
Additionaly, you should put a
Quote
code:
Code
<script type="text/javascript" src="$vars_config{CGIURL}/chat.cgi?f=topic"></script> 

in public_forum_summary.html where you would like to display the topic. I did it just right after $vars_wordlets_mods{chat}

I put this code after

$Top .= $pntf_locations[1];

code:
[qb]
Code
	$Top .= qq~

<tr bgcolor="$vars_style{CategoryStripColor}">
<td colspan="8">
<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=chat"><font size="1" face="$vars_style{FontFace}" color="$vars_style{CategoryStripTextColor}"><b>$vars_wordlets_mods{chat} - <script type="text/javascript" src="$vars_config{CGIURL}/chat.cgi?f=topic"></script></font></a>
</td>
</tr>
<tr>
<td bgcolor="$vars_style{AltColumnColor1}" valign="top" align="center"><img src="$vars_config{NonCGIURL}/chat.gif" border="0" alt="" /></td>
<td colspan="6" bgcolor="$vars_style{AltColumnColor2}">
<font size="1" face="$vars_style{FontFace}">
<script type="text/javascript" src="$vars_config{CGIURL}/chat.cgi?f=summary"></script>
</font></td></tr>

~;
[/qb]
and deleted the other chat-display-stuff in "sub PageBottom {"
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 10/22/2002 4:05 PM
Yes, thanks, I forgot about it smile

BTW, the code I posted above has "Thema", "Aktualle Besucher"... It's "Topic" and "Actual Guests"/"Actual Users", it's suggested to translate it to English tipsy
Posted By: BigMrC Re: [6.3.x] [beta] Chat Mod 1.2 - 11/05/2002 10:40 PM
LK,
I installed this ages ago on 6.2... and to stop everyone that entered the board being asked to change their name because it was already being used you gave me a fix that made it when anyone joined it would add "-Ox" to the end of their name thereby making it unique. Just installing it again on different server and latest version - can you give me it again?

thanks
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 11/05/2002 10:48 PM
In CP, go to Chat Settings and make "Extension" "-Ox"
Posted By: BigMrC Re: [6.3.x] [beta] Chat Mod 1.2 - 11/05/2002 11:26 PM
ok I think that's working - although if I log in as A. Blonde which is one of my usernames it says erroneous nickname?

Also - and I had this problem with the last board - on my main page where it says chat it doesn't say "there are currently such and such people in the chatroom click here to join it" - it just says nothing on the main page, even though I've got those settings in chat mod wordlets (haven't changed from default) ?

board:
http://www.scotiwis.pwp.blueyonder.co.uk/ubb/ultimatebb.php
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 11/05/2002 11:28 PM
1) Try to remove the dot. Remind me to fix it in the 6.4 version smile

2) Upload chat.cgi from the ZIP file to cgi-bin folder.
Posted By: BigMrC Re: [6.3.x] [beta] Chat Mod 1.2 - 11/05/2002 11:41 PM
thanks - success !

now all I have to do is get my license key transferred to new domain - have emailed them hopefully they can do it.

A couple of other things:

1. With the old one when I join as The Webmaster it isn't allowed and you changed it before so that when I joined as The Webmaster it would show as The W3bmaster or The W3bmaster-Ox which would allow it. Can you advise again how you did this ?

2. The first 3 of my graemlins/smilies don't work - any idea?

3. When you join - how do you get rid of all the crap that comes up - eg, WALLCHOPS/MODES etc etc - I just want it to say Welcome !

4. Is there any way possible to connect to the chat board when I or anybody else is at work - ie behind a firewall ?

thanks
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 11/06/2002 7:59 AM
1. ubb_chat.cgi, under:
Quote
code:
Code
		$nick .= $vars_chat{Extension} if $vars_chat{Extension};

Add
code:
[qb]
Code
		$nick =~ s/Webmaster/W3bmaster/i;
[/qb]
2. no

3. I don't think it's possible, the IRC server generates it...

4. I have no idea, but in chat settings you can choose to show some more fields in the connection box, enable all of them and try to find something similar
Posted By: BigMrC Re: [6.3.x] [beta] Chat Mod 1.2 - 11/06/2002 9:31 PM
thanks again LK. I have tried everything I can think of for no.2 (the first 3 smilies not appearing). Could you possibly see a reason why they're not showing up?

thanks
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 11/06/2002 10:08 PM
There are some problems in the applet for big images. If you choose to use regular smilies for that (in CP - Chat Settings - Filter Vals, choose for example smile2, rolleyes2, etc and then make X2 the stock UBB's X), it should work.
Posted By: BigMrC Re: [6.3.x] [beta] Chat Mod 1.2 - 11/07/2002 2:54 AM
LK I've had some requests from users to be able to send people an invitation to join the chatroom, even if the person sending the request is not registered or logged in. Can you possibly hack it somehow to allow guests to invite members into the chatroom? This would be much appreciated on my board.
Posted By: havoq Re: [6.3.x] [beta] Chat Mod 1.2 - 11/21/2002 6:42 PM
I get this error when I try to run cp.cgi

Software error:
"use" not allowed in expression at cp.cgi line 55, at end of line syntax error at cp.cgi line 55, near "pm use constant " BEGIN not safe after errors--compilation aborted at cp.cgi line 56.
Posted By: havoq Re: [6.3.x] [beta] Chat Mod 1.2 - 12/03/2002 7:02 PM
LK? any ideas?
Posted By: catcherman Re: [6.3.x] [beta] Chat Mod 1.2 - 12/05/2002 11:26 PM
I'm getting the following error on my CP:

An error has occured:

Undefined subroutine &main::AlternateColors called at C:/Client Websites/www.catcherman.com/web/ubb/Templates/cp_vars_chat.pl line 19.
Posted By: BRIT Re: [6.3.x] [beta] Chat Mod 1.2 - 12/08/2002 5:58 PM
I need help here guys.
I have installed this chat mod three times on my test site with the same results, zilch!!
Everything appears to be correct but you can only enter the chat forum by clicking on the category header, once inside which ever command you attempt it generates a new blank page. Here's my test site addy, anyone point me to where I'm wrong??

http://www.themotorhead.net/cgi-bin/ultimatebb.cgi
Posted By: LK Re: [6.3.x] [beta] Chat Mod 1.2 - 12/08/2002 6:14 PM
havoq, try to rehack cp.cgi from a clean version.

catcherman, it requires 6.3.1+.. If you use 6.3.0, remove all "&AlternateColors;" from cp_vars_chat.pl

BRIT, you got a test user/pass?
Posted By: BRIT Re: [6.3.x] [beta] Chat Mod 1.2 - 12/08/2002 8:53 PM
I have if I can find it, for ftp access?? or for cp access??
Posted By: Zombie Re: [6.3.x] [beta] Chat Mod 1.2 - 12/09/2002 5:44 AM
LK ... I just PM'd you the user/pass for themotorhead.net

this is a user login ... are you looking for ftp access also ?
Posted By: catcherman Re: [6.3.x] [beta] Chat Mod 1.2 - 12/10/2002 10:25 AM
Thanks LK, that did it.

Some more questions:

1) I invited one of my users into the chat and the pop-up won't stop popping up on his system. It happens everytime he visits a forum.

2) Are there instructions somewhere about what all the stuff in the Chat CP does?

2) Are there instructions somewhere about what all of the 20 buttons at the bottom of the chat window do?

3) Will my non-moderator and non-admin users be seeing these buttons too? Is that appropriate, and if not, how do I remove them from member view?

Thanks for this great mod - it is perfect for my community.
Posted By: catcherman Re: [6.3.x] [beta] Chat Mod 1.2 - 12/12/2002 1:24 AM
Does anyone else that uses this mod have any of these answers? Please.
Posted By: Painfool Re: [6.3.x] [beta] Chat Mod 1.2 - 12/31/2002 9:46 AM
1) I invited one of my users into the chat and the pop-up won't stop popping up on his system. It happens everytime he visits a forum.

No idea, what browser is he using?

2) Are there instructions somewhere about what all the stuff in the Chat CP does?

In the Chat CP smile Anything specifically? Seemed fairly self explanatory to me and Im a noob smile

2) Are there instructions somewhere about what all of the 20 buttons at the bottom of the chat window do?

They are basic IRC Commands that unless you own the IRC server serve no real purpose for you. Op and Voicing give users elevated status in the channel. (Voice allows for private conversation among the regualr chat if I recall, OP allows you to voice users, kick, ban etc.) Do a search for IRC commands for more indepth information. Very common and very wide spread, but nothing to fear smile

3) Will my non-moderator and non-admin users be seeing these buttons too? Is that appropriate, and if not, how do I remove them from member view?

No it checks for Admin/Mod status before drwing them, you can turn them off in the Chat CP, just have to stop the jumble of sentences from spinning around to actually spot it smile
Posted By: tgreene Re: [6.3.x] [beta] Chat Mod 1.2 - 01/02/2003 5:46 PM
I wish to eliminate the text that says:

There is currently ??? person in the chatroom. Click here to join it.

The majority of my "chatters" use mIRC, so the number of people shown would be false, and often times 0. What I want to be able to do, is replace this with my own text, letting everyone know what time we generally Chat every evening.

How do I do this..?
Posted By: tgreene Re: [6.3.x] [beta] Chat Mod 1.2 - 01/02/2003 6:14 PM
Again, I must have been stuckin {Idiot Mode}, because I didn't even stop to think that this solution was staring me in the face, in the mods_wordlets file...

Hey, at least I'm beginning to respond with a solution to my own questions, so there is hope! laugh
Posted By: Daryl Fawcett Re: [6.3.x] [beta] Chat Mod 1.2 - 01/04/2003 1:00 AM
Is there a version out yet for UBB Classic 6.4?
Posted By: Painfool Re: [6.3.x] [beta] Chat Mod 1.2 - 01/10/2003 11:09 AM
LK,

This Mod rocks smile

Thanks!
Posted By: havoq Re: [6.3.x] [beta] Chat Mod 1.2 - 01/10/2003 6:22 PM
is there a way to OP and DEOP etc for this applet?
Posted By: tgreene Re: [6.3.x] [beta] Chat Mod 1.2 - 01/10/2003 6:40 PM
Yes, but in order to receive OP's, a nick must first be registered with nickserv.

I have a select few of my Mods & Admins setup for auto-OP's, when they enter the chatroom.

As an Admin that spends a lot of time in my chatroom, I obviously find it a lot easier to use mIRC since I have a greater level of control over my channel. Most of my "chatters" however, use the Java portal.
Posted By: havoq Re: [6.3.x] [beta] Chat Mod 1.2 - 01/10/2003 6:52 PM
is it possible to display the part where it says "there are # of users in the chatroom" lets say on ur main index.html home page? It doesnt use SSI , so is there alternative ways? ANyone?
Posted By: spiffy Re: [6.3.x] [beta] Chat Mod 1.2 - 02/26/2003 2:38 AM
Hi, I used to have this mod working okay, but then the users started to have problems. When I had a look the error message ended "...Cannot join channel: Only registered, identified users can create channels".

Can anyone tell me what this means and if I am supposed to create a channel? Where?

Also, the line of text which shows how many users are in the chat room on the forums summary page has dosappeared.

Any help much appreciated.

Spiffy.
Posted By: tgreene Re: [6.3.x] [beta] Chat Mod 1.2 - 02/26/2003 5:48 PM
Oddly enough, and all of a sudden, my CHAT room no longer automatically joins the channel...
Posted By: spiffy Re: [6.3.x] [beta] Chat Mod 1.2 - 02/26/2003 7:26 PM
Is anyone else having this problem - if you have the chat installed could you check please?
Posted By: spiffy Re: [6.3.x] [beta] Chat Mod 1.2 - 02/27/2003 12:17 PM
Hi tgreene can you tell me if your chat is working now?

Do I have to set up my own chat server/channel to get this to work? It worked before, but has recently stopped saying that I cannot join a channel.

I'm getting confused, maybe it was just luck that it worked earlier...
Posted By: tgreene Re: [6.3.x] [beta] Chat Mod 1.2 - 02/27/2003 6:22 PM
It suddenly works fine from the Java based CHAT portal on my site, but not through mIRC, which is what I generally prefer to use...

I only have the CHAT portal as a convenient option for my members that are not IRC savvy.
Posted By: Ed Re: [6.3.x] [beta] Chat Mod 1.2 - 06/14/2003 3:16 PM
Anyone help here with Chat mod.?

Nevermind - I got it working
Posted By: Furinax Re: [6.3.x] [beta] Chat Mod 1.2 - 04/21/2004 4:25 PM
FYI
You are attempting to reach a page that does not exist.

» Please use your browser's back button to return.

uploaded and CHModded all the files, re & re & re-hacked/checked again.
Board: 63.1.1

http://www.tuwclan.com/cgi-bin/ubb/ultimatebb.cgi?ubb=chat
Posted By: Ian Spence Re: [6.3.x] [beta] Chat Mod 1.2 - 04/21/2004 7:54 PM
recheck ultimatebb.cgi
Posted By: Furinax Re: [6.3.x] [beta] Chat Mod 1.2 - 04/21/2004 8:09 PM
done that about 3 times now. everything is copy/paste and correct.

ok my mistake, placed a } in the wrong place. It works now!
© UBB.Developers