Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 flashchat very good
 New Topic
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 3

Maxime
Average Member

France
521 Posts

Posted - 16 June 2014 :  13:29:11  Show Profile  Visit Maxime's Homepage  Reply with Quote
Thank you very much Carefree,

I just installed the flash chat chat works great. Congratulations to you for the good work done.

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Maxime
Average Member

France
521 Posts

Posted - 16 June 2014 :  15:25:34  Show Profile  Visit Maxime's Homepage
How to submit a member who has been banned from the chat. It was not until the timeout of 120% or execute something else, I have not found.

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 16 June 2014 :  17:16:38  Show Profile
Yes, line 4 of "chat.ini" sets it to 120 seconds (2 minutes). Look for
<%Response.Expires = 120%>
and change the 120 to the number of seconds you wish.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 16 June 2014 :  22:56:33  Show Profile  Visit Maxime's Homepage
Hello,

It is possible to fill in the name field with the unique id of the member please. By putting the code in the right place thank you

chat_ini.asp

<%@Language = "VBScript"%>
<%Option Explicit%>
<%Response.Buffer = True%>
<%Response.Expires = 120%>
<%Response.Write "Accès Refusé"%>
<%Response.Flush%>
<%Response.End%>

[Rooms]
Name1=Room1
Name2=Room2
Name3=Room3
Password3=PW3
Name4=Room4
Password4=PW4

[Skins]
Name1=Default Skin (2K)
File1=defaultbg.swf
Name2=Green Skin (2K)
File2=greenbg.swf
Name3=Sunny Day (27K)
File3=lfskin.swf
Name4=Ice Blue (2K)
File4=iceblue.swf
Name5=Unicorn (77K)
File5=unicorn.swf
Name6=Violet (10K)
File6=lounge.swf
Name7=Balloons (22K)
File7=balloon.swf
Name8=Circles (4K)
File8=circlesbg.swf
Name9=Globes (34K)
File9=globe.swf
Name10=Looking for Love (11K)
File10=hearts.swf
Name11=Leopard Skin (52K)
File11=leopardbg.swf
Name12=Pens & Pencils (39K)
File12=pensbg.swf
Name13=Spots (1K)
File13=spot.swf
Name14=Matrix (36K)
File14=matrix.swf

[Languages]
ChatLanguage=Language_English

[Language_English]
langMenu=Menu
langSkins=Skins...
langMoods=Moods...
langRooms=Rooms...
langTranscript=Transcript
langAbout=About...
langExit=Exit
langMessage=Message
langOtherActions=Other Actions
langLoading=Loading...
langLoggingIn=Logging In...
langAccessDenied=Access Denied
langPassword=Password
langPrivateMsg=Private Message To
langLoginName=Nickname
langEnterNickname=Choose a nickname for the chat
langNameInUse=The name you entered was either in use or was invalid. Please try a different name.
langLoggingOut=Logging Out...
langLoggedOut=Logged Out.
langTranscriptTitle=Chat Transcript
langPasswordRequired=Password Required
langKick=Kick User From Chat
langBan=Ban User From Chat
langUser=User
langUsers=Users

[Ops]
Op1Name=Administrator
Op1Password=Secret
Op2Name=Moderator1
Op2Password=NotSoSecret

[Sounds]
sounds=

[Logout]
redirect=../default.asp


Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 17 June 2014 :  09:32:21  Show Profile
You cannot do it from the .ini file, you would have to first set a session variable in "inc_header.asp". I have not tested this, but something like this should work.


In "inc_header.asp", look for the following line (appx 236):

Response.Write	"<script language=""JavaScript"" type=""text/javascript"">" & vbNewLine & _

Above it, insert these:

'	##	Flashchat Below
Session("ChatName")=strDBNTUserName
'	##	Flashchat Above



Edited by - Carefree on 17 June 2014 09:34:08
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 17 June 2014 :  09:58:50  Show Profile  Visit Maxime's Homepage
Sorry it does not work, the cat is on the FlashChat folder not in the same forum that it can be harmful?

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 17 June 2014 :  11:07:58  Show Profile
Sorry, but the prompt is in the swf file. I'll decompile it and see if I cannot edit it to accept the variable.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 17 June 2014 :  12:02:44  Show Profile  Visit Maxime's Homepage
Thank you very much Carefree,

Do not make extra work for if possible. I would do with what there is.

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  02:55:19  Show Profile
OK - I redid some of it. It now forces users to sign in to the forum and uses their forum accounts.
Go to Top of Page

Zenfor
Junior Member

372 Posts

Posted - 18 June 2014 :  07:38:26  Show Profile
I kicked someone out by accident now they can't get in, how do I fix that, thanks. Also, seems if you log in and leave the page then try to login again, it says you are already logged in. Thanks.
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  08:24:29  Show Profile
If you don't log out, the session variable keeps you online for the specified number of minutes. Look at the readme file, it will show you where to change the default.
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  08:25:31  Show Profile
quote:
Originally posted by Zenfor

I kicked someone out by accident now they can't get in, how do I fix that, thanks. Also, seems if you log in and leave the page then try to login again, it says you are already logged in. Thanks.



Kicking a user won't prevent their returning, banning will. It's done with cookies, so the user will have to delete the forum cookies to return.
Go to Top of Page

Zenfor
Junior Member

372 Posts

Posted - 18 June 2014 :  08:51:21  Show Profile
quote:
Originally posted by Carefree

If you don't log out, the session variable keeps you online for the specified number of minutes. Look at the readme file, it will show you where to change the default.


So if you log out of the forum then log back in, you should be able to get back in chat?
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  09:52:03  Show Profile
You have to log out of chat when leaving chat (or wait for the session time-out); otherwise, the admin/moderators can "kick" the user who exits by closing the window.

Look in "chat.ini", the 4th line. The inactivity session defaults to 2 HOURS (120 minutes). I usually set it to 5 MINUTES.

<%Response.Expires = 5%>
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  11:08:51  Show Profile  Visit Maxime's Homepage
Hello Carefree,

Here is the answer I when I installed your new version of FlashChat.
You must be logged in to the forum to use the chat

What should I do exactly that, I'm no in asp.
I gave the old version so that my members can chat


Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Zenfor
Junior Member

372 Posts

Posted - 18 June 2014 :  13:17:46  Show Profile
quote:
Originally posted by Carefree

You have to log out of chat when leaving chat (or wait for the session time-out); otherwise, the admin/moderators can "kick" the user who exits by closing the window.

Look in "chat.ini", the 4th line. The inactivity session defaults to 2 HOURS (120 minutes). I usually set it to 5 MINUTES.

<%Response.Expires = 5%>



I'm locked out of the chat room!!

I keep getting: That username is already in use.

I exited an hour ago, deleted my cookies, changed chat.ini to 1 minute, waited 20 minutes, logged out of the forum, logged back in and I still can't get into my own chat room.

I put the global asa in my forum folder.

Appreciate any help thanks!


Edited by - Zenfor on 18 June 2014 13:21:08
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Next Page
 New Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07