Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 4 1 2 3 4
#151155 04/13/2002 7:48 AM
Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Sponsored Links
Joined: Dec 2000
Posts: 371
Member
Member
Offline
Joined: Dec 2000
Posts: 371
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) ???

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Fixed smile

Joined: May 2001
Posts: 186
Member
Member
Offline
Joined: May 2001
Posts: 186
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};

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Ignore that part, I forgot to upload the ZIP without it

Sponsored Links
Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
ZIP/MHK files updated - I forgot about a Wordlet - "FieldNameSignoff" - please add it smile

Modified files: ubb_chat and vars_wordlets_mods

Joined: May 2001
Posts: 186
Member
Member
Offline
Joined: May 2001
Posts: 186
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)

Joined: May 2001
Posts: 186
Member
Member
Offline
Joined: May 2001
Posts: 186
Call me an idiot. I forgot to upload the 3 cgi-and-pl-files in chat.zip :rolleyes:

Joined: May 2001
Posts: 186
Member
Member
Offline
Joined: May 2001
Posts: 186
Just one question: in this new version, the chat reloads continuesly - isn't that to much serverload?

Joined: Jun 2001
Posts: 297
Member
Member
Offline
Joined: Jun 2001
Posts: 297
The page or the applet?

Sponsored Links
Joined: May 2001
Posts: 186
Member
Member
Offline
Joined: May 2001
Posts: 186
*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

Joined: Jan 2001
Posts: 38
Member
Member
Offline
Joined: Jan 2001
Posts: 38
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Yup, sorry, thanks smile

Joined: Jan 2001
Posts: 38
Member
Member
Offline
Joined: Jan 2001
Posts: 38
Your welcome!!!

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

laugh

Joined: Nov 2001
Posts: 745
Admin Emeritus
Admin Emeritus
Offline
Joined: Nov 2001
Posts: 745
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)

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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[]

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Fixed a problem: most admin commandbuttons didn't work. Please upload the new ubb_chat.cgi smile

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
I have a probelm, i see the little logo chat and no the text for connect to the chat :
My URL

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Reinstall Mod Wordlets - www.qasic.net and rehack vars_wordlets_mods.cgi part of chat mod.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
ZIP/MHK files updated - added HTML feature to CP.

Please re-upload cp_vars_chat.pl, ubb_chat.cgi and rehack cp_lib.cgi.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Fixed a bug in the counter - please re-upload ubb_chat.cgi smile

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
It doesn't really help, rehack everything wink If it still doesn't work, please leave your ICQ/AIM/MSN/Yaho! ID

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
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.

Joined: May 2002
Posts: 28
Junior Member
Junior Member
Offline
Joined: May 2002
Posts: 28
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

Joined: Feb 2001
Posts: 78
Member
Member
Offline
Joined: Feb 2001
Posts: 78
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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?

Joined: Feb 2001
Posts: 78
Member
Member
Offline
Joined: Feb 2001
Posts: 78
Yup, the spelling error was the problem. Works now, Thanks!

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Fixed a minor bug in ubb_chat.cgi, please re-upload from the updated ZIP/MHP.

Joined: Oct 2000
Posts: 51
Member
Member
Offline
Joined: Oct 2000
Posts: 51
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

Joined: Apr 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 20

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
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


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
1) so you hacked it twice tipsy

2) it should work, try to rehack public_common.pl?

Joined: Feb 2002
Posts: 2,286
Veteran
Veteran
Joined: Feb 2002
Posts: 2,286
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


Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)
Joined: May 2002
Posts: 28
Junior Member
Junior Member
Offline
Joined: May 2002
Posts: 28
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: May 2002
Posts: 28
Junior Member
Junior Member
Offline
Joined: May 2002
Posts: 28
LK sent the login nfo to your dkldkl2@ email address.

Thanks! laugh

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: May 2002
Posts: 28
Junior Member
Junior Member
Offline
Joined: May 2002
Posts: 28
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Worked when I tried smile (notice: it only works in forum summary, forum page, topic page, faq, ubbcode page)

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
ZIP/MHK files updated... Added the changes to ultimatebb.php, and now ubb_chat.cgi uses $ULTIMATEBB

Joined: Jan 2002
Posts: 5
Junior Member
Junior Member
Offline
Joined: Jan 2002
Posts: 5
Had no problem hacking everything and from what I've seen it works great! Thanks a lot LK! laugh

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Updated, using instead of that thing (now it doesn't break cache).

Thanks brett (raiyan) for the idea!

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Updated again, fixed a bug in chat.cgi, re-upload it.

Joined: Mar 2001
Posts: 644
Member
Member
Offline
Joined: Mar 2001
Posts: 644
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

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
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.

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
LK, please, Helpe Me wink !

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Sep 2001
Posts: 57
Member
Member
Offline
Joined: Sep 2001
Posts: 57
It's fine now, THANKS !!!

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
ZIP file updated, re-upload chat.cgi (only to fix an error in the error log, it doesn't matter)

Joined: Jun 2001
Posts: 51
Member
Member
Offline
Joined: Jun 2001
Posts: 51
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Rehack cp_lib.cgi.

Joined: Jan 2002
Posts: 266
Kel Offline
Member
Member
Offline
Joined: Jan 2002
Posts: 266
Bump!

The links aren't working.

Joined: Jan 2002
Posts: 266
Kel Offline
Member
Member
Offline
Joined: Jan 2002
Posts: 266
Bump again.

Has this mod been pulled for some reason?

Joined: Feb 2001
Posts: 251
Member
Member
Offline
Joined: Feb 2001
Posts: 251

Joined: Jan 2002
Posts: 266
Kel Offline
Member
Member
Offline
Joined: Jan 2002
Posts: 266
Thank you Maurice smile

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Updated to 6.3.1 (cp_lib.cgi, cp_common.pl)

Joined: Jul 2002
Posts: 1
Junior Member
Junior Member
Offline
Joined: Jul 2002
Posts: 1
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.

Joined: May 2001
Posts: 58
Member
Member
Offline
Joined: May 2001
Posts: 58
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

Joined: Nov 2000
Posts: 467
Code Monkey
Code Monkey
Offline
Joined: Nov 2000
Posts: 467
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 ??

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Speed, you don't need to do it anymore smile

Joined: Nov 2000
Posts: 467
Code Monkey
Code Monkey
Offline
Joined: Nov 2000
Posts: 467
Thanks LK (Less is better)

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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)

Joined: Sep 2001
Posts: 38
Member
Member
Offline
Joined: Sep 2001
Posts: 38
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.

Joined: May 2001
Posts: 58
Member
Member
Offline
Joined: May 2001
Posts: 58
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?

Joined: Sep 2001
Posts: 38
Member
Member
Offline
Joined: Sep 2001
Posts: 38
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!

Joined: May 2001
Posts: 180
Member
Member
Offline
Joined: May 2001
Posts: 180
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 ?


Regards Dennis Bode
-----------------------------
Webmaster of Hardwareluxx.com
Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: May 2001
Posts: 180
Member
Member
Offline
Joined: May 2001
Posts: 180
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


Regards Dennis Bode
-----------------------------
Webmaster of Hardwareluxx.com
Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
dbode, no ideas, I'm gonna check soon frown

FilAm, re-upload cp_vars_chat.pl to noncgi/Templates folder.

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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...

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Changes Done... Works fine. Thank you LK!

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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

Joined: Sep 2001
Posts: 38
Member
Member
Offline
Joined: Sep 2001
Posts: 38
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Okay, I removed that thingy. Please re-download chat mod, re-upload chat.cgi and rehack public_common.pl.

Joined: Sep 2001
Posts: 38
Member
Member
Offline
Joined: Sep 2001
Posts: 38
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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?

Joined: Sep 2001
Posts: 38
Member
Member
Offline
Joined: Sep 2001
Posts: 38
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

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Can Anyone Answer my question...

PLEASE.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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!

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Who was this in response to LK?

Please help...

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
1 was your first post, 2 was your second (I listed the files you have to upgrade there tipsy )

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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?

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
When I type in this url:

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

A download button comes up... If that helps.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Are you sure you have Mod Wordlets, and added Chat Mod wordlets for it?

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Just made sure... Yes. Cleared cache... Still nothing.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Well, I'm sure you did it incorrectly wink

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Just sent you user/pass

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
still not working... frown

Joined: Sep 2002
Posts: 26
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 26
Hey LK,

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

Any other ideas?

Joined: Mar 2000
Posts: 63
Member
Member
Offline
Joined: Mar 2000
Posts: 63
Hi, does anyone know if this chat mod will work with version 6.3.1.1 of UBB?

Ta much.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Please try it before asking wink

Joined: Jun 2001
Posts: 729
Coder
Coder
Offline
Joined: Jun 2001
Posts: 729
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

Joined: Mar 2001
Posts: 37
Member
Member
Offline
Joined: Mar 2001
Posts: 37
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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>";
}

Joined: Jun 2001
Posts: 729
Coder
Coder
Offline
Joined: Jun 2001
Posts: 729
LK, thanx! But what file does this go into and after/before what?

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Jun 2001
Posts: 729
Coder
Coder
Offline
Joined: Jun 2001
Posts: 729
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

...

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Because you should remove the if ($vars_chat{Sound}) { thing (and the "}" at the end) tipsy

Joined: Jun 2001
Posts: 729
Coder
Coder
Offline
Joined: Jun 2001
Posts: 729
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?

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
It's part of the code that handles sounds, I didn't tell you to add it wink

Joined: Mar 2001
Posts: 37
Member
Member
Offline
Joined: Mar 2001
Posts: 37
I've rehacked ultimatebb.cgi and still the same.

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

Anymore ideas?

SSJ

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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') {

Joined: Mar 2001
Posts: 37
Member
Member
Offline
Joined: Mar 2001
Posts: 37
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Nothing else, do it AGAIN tipsy It _has_ to be it.

Joined: Mar 2001
Posts: 37
Member
Member
Offline
Joined: Mar 2001
Posts: 37
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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);"

Joined: Mar 2001
Posts: 37
Member
Member
Offline
Joined: Mar 2001
Posts: 37
Nevermind. One to many }'s

Thanks for your help LK

SSJ

*EDIT*

Its working now THANK YOU!!!!

*EDIT*

Joined: Mar 2002
Posts: 18
Junior Member
Junior Member
Offline
Joined: Mar 2002
Posts: 18
Question: Does the chat run off your server or IRC's server?

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
The IRC's server.

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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 }.

Joined: Mar 2001
Posts: 65
Member
Member
Offline
Joined: Mar 2001
Posts: 65
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 {"

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: Nov 2001
Posts: 70
Member
Member
Offline
Joined: Nov 2001
Posts: 70
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
In CP, go to Chat Settings and make "Extension" "-Ox"

Joined: Nov 2001
Posts: 70
Member
Member
Offline
Joined: Nov 2001
Posts: 70
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Nov 2001
Posts: 70
Member
Member
Offline
Joined: Nov 2001
Posts: 70
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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

Joined: Nov 2001
Posts: 70
Member
Member
Offline
Joined: Nov 2001
Posts: 70
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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.

Joined: Nov 2001
Posts: 70
Member
Member
Offline
Joined: Nov 2001
Posts: 70
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.

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
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.

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
LK? any ideas?

Joined: May 2001
Posts: 283
Member
Member
Offline
Joined: May 2001
Posts: 283
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.

Joined: Aug 2002
Posts: 41
Member
Member
Offline
Joined: Aug 2002
Posts: 41
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

Joined: Mar 2001
Posts: 7,394
LK
Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
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?

Joined: Aug 2002
Posts: 41
Member
Member
Offline
Joined: Aug 2002
Posts: 41
I have if I can find it, for ftp access?? or for cp access??

Joined: Dec 2001
Posts: 13
Newbie
Newbie
Joined: Dec 2001
Posts: 13
LK ... I just PM'd you the user/pass for themotorhead.net

this is a user login ... are you looking for ftp access also ?

Joined: May 2001
Posts: 283
Member
Member
Offline
Joined: May 2001
Posts: 283
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.

Joined: May 2001
Posts: 283
Member
Member
Offline
Joined: May 2001
Posts: 283
Does anyone else that uses this mod have any of these answers? Please.

Joined: Aug 2000
Posts: 178
Member
Member
Offline
Joined: Aug 2000
Posts: 178
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

Joined: Nov 2002
Posts: 188
Member
Member
Offline
Joined: Nov 2002
Posts: 188
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..?

Joined: Nov 2002
Posts: 188
Member
Member
Offline
Joined: Nov 2002
Posts: 188
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

Joined: Nov 2001
Posts: 28
User
User
Offline
Joined: Nov 2001
Posts: 28
Is there a version out yet for UBB Classic 6.4?


Daryl Fawcett
Joined: Aug 2000
Posts: 178
Member
Member
Offline
Joined: Aug 2000
Posts: 178
LK,

This Mod rocks smile

Thanks!

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
is there a way to OP and DEOP etc for this applet?

Joined: Nov 2002
Posts: 188
Member
Member
Offline
Joined: Nov 2002
Posts: 188
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.

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
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?

Joined: Mar 2000
Posts: 63
Member
Member
Offline
Joined: Mar 2000
Posts: 63
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.

Joined: Nov 2002
Posts: 188
Member
Member
Offline
Joined: Nov 2002
Posts: 188
Oddly enough, and all of a sudden, my CHAT room no longer automatically joins the channel...

Joined: Mar 2000
Posts: 63
Member
Member
Offline
Joined: Mar 2000
Posts: 63
Is anyone else having this problem - if you have the chat installed could you check please?

Joined: Mar 2000
Posts: 63
Member
Member
Offline
Joined: Mar 2000
Posts: 63
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...

Joined: Nov 2002
Posts: 188
Member
Member
Offline
Joined: Nov 2002
Posts: 188
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.

Joined: Dec 2000
Posts: 78
Ed Offline
Member
Member
Offline
Joined: Dec 2000
Posts: 78
Anyone help here with Chat mod.?

Nevermind - I got it working

Joined: Apr 2004
Posts: 2
Junior Member
Junior Member
Offline
Joined: Apr 2004
Posts: 2
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

Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
recheck ultimatebb.cgi

Joined: Apr 2004
Posts: 2
Junior Member
Junior Member
Offline
Joined: Apr 2004
Posts: 2
done that about 3 times now. everything is copy/paste and correct.

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

Page 1 of 4 1 2 3 4

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
Gizmo
Gizmo
Portland, OR, USA
Posts: 5,833
Joined: January 2000
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
Morgan 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)