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
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 3

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  14:09:39  Show Profile  Visit Maxime's Homepage
Hello,

Try to clear browser caches and all coockies. Close and open the browser try

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 :  16:20:55  Show Profile
quote:
Originally posted by Maxime

Hello,

Try to clear browser caches and all coockies. Close and open the browser try


I got into the chat room 10 hours ago when I first installed it and I haven't been able to get back in since. I cleared all browser caches, history, temp files, rebooted several times.

When I click on chat, it brings me to a login page that has my username filled in, I enter the password and i continue to get this:

That username is already in use. Thanks.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  18:10:23  Show Profile  Visit Maxime's Homepage
I do not know much about the system. But that would come your host or your site is installed because flashchat uses a virtual space that might be blocked?

Cordially,
Maxime

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


Edited by - Maxime on 18 June 2014 18:11:03
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  18:19:58  Show Profile  Visit Maxime's Homepage
In chat_ini.asp, your name is not duplicated? And your fields are filled you own or done manually. Can you give me the procedure for the automatic name please.

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 :  20:29:08  Show Profile
quote:
Originally posted by Maxime

In chat_ini.asp, your name is not duplicated? And your fields are filled you own or done manually. Can you give me the procedure for the automatic name please.



The user names are automatic with the new version I posted to SnitzBitz, Maxime. You have to make the required change to "inc_header.asp" and I also modified three files from the previous version: "chat.ini", "chatroom.asp", and "login_html.asp".
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  20:32:18  Show Profile
quote:
Originally posted by Zenfor
I'm locked out of the chat room!!

I put the global asa in my forum folder.


OK - I modified the "kickuser.asp" file to let you boot yourself very easily. Replace your file with the below. To boot yourself, use the following URL: strforumurl(flashchat path)/kickuser.asp?UserToBan=(your user name)

So if your flashchat is in a directory titled "flashchat" and your user name is "admin", you would use: (strforumurl)flashchat/kickuser.asp?UserToBan=admin

"kickuser.asp"


<%@Language = "VBScript"%>
<%
Option Explicit
Response.Buffer = True
Response.Expires = 5

%>
<!-- #INCLUDE FILE="inifiles.asp" -->
<!-- #INCLUDE FILE = "chatlib.asp" -->
<%
Dim vUserToKick, vBanUser
Dim vMyName, vMyPassword
Dim vRoomNo
Dim vUserArray, vUserCount
vUserToKick = Request.QueryString("UserToBan")
vBanUser = (Request.QueryString("Ban") = "True")
vMyName = Session("ChatName")
vMyPassword = Session("Password")
If CheckOp(vMyName, vMyPassword) = "OK" Then
	vRoomNo = Session("RoomNo")
	Application.Lock
	vUserArray = Application("ChatUsers" & vRoomNo)
	vUserCount = Application("UserCount" & vRoomNo)
	If vMyName=vUserToKick Then
		vUserArray = 0
		Application("ChatUsers" & vRoomNo) = 0
		Application("UserCount" & vRoomNo) = 0
		Application.Unlock
		Response.Redirect	"../default.asp"
	End If
	If KickUser(vUserToKick, vBanUser, vUserArray, vUserCount) = True Then
		Response.Write "Result=OK"
	Else
		Response.Write "Result=Failed"
	End If
	Application("ChatUsers" & vRoomNo) = vUserArray
	Application("UserCount" & vRoomNo) = vUserCount
	Application.Unlock
Else
	Response.Write "Result=BadPassword"
End If

Function KickUser(ByVal vUserName, vBan, vUserArray, vUserCount)

	Dim vUser

	For vUser = 0 To vUserCount - 1
		If UCase(vUserArray(vUser)) = UCase(vUserName) Then
			If vBan Then
				vUserArray(vUser) = vUserArray(vUser) & "[banned]"
			Else
				vUserArray(vUser) = vUserArray(vUser) & "[kicked]"
			End If
			KickUser = True
			Exit Function
		End If
	Next
	KickUser = False
	
End Function

Response.Flush
Response.End
%>

Edited by - Carefree on 18 June 2014 21:07:32
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  20:47:53  Show Profile  Visit Maxime's Homepage
quote:
Originally posted by Carefree

quote:
Originally posted by Maxime

In chat_ini.asp, your name is not duplicated? And your fields are filled you own or done manually. Can you give me the procedure for the automatic name please.



The user names are automatic with the new version I posted to SnitzBitz, Maxime. You have to make the required change to "inc_header.asp" and I also modified three files from the previous version: "chat.ini", "chatroom.asp", and "login_html.asp".



You must be logged in to the forum to use the chat
I did that, but it not work, there is a message like this to launch below.

I do not know what code to put in inc_header.asp. Whoever is on the post did not seem to work.
nothing is written on the install file.





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 :  21:01:53  Show Profile
The new "install.htm" file DOES have instructions for the "inc_header.asp" file.
Go to Top of Page

Zenfor
Junior Member

372 Posts

Posted - 18 June 2014 :  21:04:32  Show Profile
quote:
Originally posted by Carefree

quote:
Originally posted by Zenfor
I'm locked out of the chat room!!

I put the global asa in my forum folder.


The change you made should have done it. Move the "global.asa" file to your server root directory, exit and re-enter. See if that doesn't solve it.


OK, moved global out of forum and into root so now I got in, let me keep checking this, thanks. Great job!
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  21:11:52  Show Profile
quote:
Originally posted by Maxime

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



The new version is designed to work from a Snitz forum, Maxime. If you are signed into the forum (and have made the indicated change to "inc_header.asp"), the chat will use your forum user name.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  21:23:47  Show Profile  Visit Maxime's Homepage
As you have an account on my forum. You want to come see why this does not work and I made it there on the installation file and changed the files provided.

My forum here: http://www.chatquiz.org clic Salles De 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

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 18 June 2014 :  22:40:32  Show Profile
Post a link to a .txt version of your "inc_header.asp" file for me to look at.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 18 June 2014 :  23:15:09  Show Profile  Visit Maxime's Homepage
Carefree here is if you find some things

http://www.chatquiz.org/fichier/inc_header.txt

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

Maxime
Average Member

France
521 Posts

Posted - 19 June 2014 :  00:36:31  Show Profile  Visit Maxime's Homepage
I put the old version of chat waiting for you to find me a solution

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 - 19 June 2014 :  00:51:55  Show Profile
But now it's filling in my user name, etc. That's the right page.... It's working properly.

Edited by - Carefree on 19 June 2014 00:52:53
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Previous Page | 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