Author |
Topic  |
OBmoderator
New Member

98 Posts |
Posted - 07 October 2006 : 15:27:28
|
Yup got all that Not working though. More help would be appreciated |
 |
|
OBmoderator
New Member

98 Posts |
Posted - 07 October 2006 : 15:49:38
|
OK Never Mind, I figured it out. I used the original default.ASP instead of the one that's in the zip file. All working 100% now. Thanks to everyone |
 |
|
OBmoderator
New Member

98 Posts |
Posted - 07 October 2006 : 19:01:30
|
Timeouts Anyone else experiencing them? is there a setting to stop the whole chat from timing? |
 |
|
Simko
Starting Member
25 Posts |
Posted - 08 October 2006 : 06:29:24
|
ASP Chat works fine but with the add-on from KC I have some problems, always get this error:
Username: Microsoft VBScript runtime Error "800a01f4'
Variable is undefined: 'KCname'
/en/forum-new/Chat/default.asp, line 58
Chat default.asp |
 |
|
OBmoderator
New Member

98 Posts |
Posted - 08 October 2006 : 11:09:20
|
Simko, That's because in the moded default.asp file on line 57 there is a ' before KCname that is not included in the inc_chat.asp file <td>Username: <%='KCname%></td> Try removing it so it looks like this <td>Username: <%=KCname%></td> or use the original default.asp |
Edited by - OBmoderator on 08 October 2006 11:11:05 |
 |
|
leatherlips
Senior Member
   
USA
1838 Posts |
|
TastyNutz
Junior Member
 
USA
251 Posts |
Posted - 12 October 2006 : 14:48:51
|
I'm having some trouble. I get entered into chat okay, but even with the fixes by Pull My Finger and Obmoderator, the log out button isn't working properly. It gives me the login window with the same error Simko reported.
Any ideas? |
PowerQuad Disability Support Forum |
 |
|
TastyNutz
Junior Member
 
USA
251 Posts |
Posted - 12 October 2006 : 18:58:24
|
Okay, how's this for thinking outside the box?
The "logout" button kept giving me trouble, and as leatherlips noted, it makes the login reappear, allowing someone to use a different name. So, I just decided to eliminate it all together.
Thanks to Pull My Finger, closing the window logs users out. And like he said, most people do that anyway. So the logout button isn't really necessary anyway.
Works good so far. Thanks everyone. |
PowerQuad Disability Support Forum |
 |
|
TastyNutz
Junior Member
 
USA
251 Posts |
Posted - 13 October 2006 : 01:54:18
|
I feel like I'm talking to myself, but in case someone is still having trouble, I finally found the problem. The KC mod has an error in default.asp. But OBmoderator wasn't quite right when he wrote:
quote: Originally posted by OBmoderator
Simko, That's because in the moded default.asp file on line 57 there is a ' before KCname that is not included in the inc_chat.asp file <td>Username: <%='KCname%></td> Try removing it so it looks like this <td>Username: <%=KCname%></td> or use the original default.asp
Don't remove the ' before KCname. Just move it before the = sign. So, lines 57 and 58 should be:
<td>Username: <%'=KCname%></td> <td><input type="hidden" name="txtUsername" value="<%'=KCname%>"></td>
|
PowerQuad Disability Support Forum |
 |
|
Pull My Finger
Starting Member
43 Posts |
Posted - 13 October 2006 : 02:38:51
|
quote: Originally posted by TastyNutz
I feel like I'm talking to myself, but in case someone is still having trouble, I finally found the problem. The KC mod has an error in default.asp. But OBmoderator wasn't quite right
TastyNutz: I haven't been on my computer much during the last 10 days
When I installed the ASP Chat and added the default.asp replacement I saw the error and made the same changes as you did. On my last post about the log-out fix I ment to also add in the post about the error and fix for the default.asp replacement. I just completely forgot to add the default.asp error I found and the same fix you made. I sure do wish I didn't forget to add that into my last post so You and OB didn't have to waste your time.
I just want to say I'm "SORRY" about forgetting to post the error and fix in my last post.
I fiqured a "SORRY" to You and OB was needed because of the point of it all (fogetting).
Again SORRY!
|
Edited by - Pull My Finger on 13 October 2006 02:42:22 |
 |
|
TastyNutz
Junior Member
 
USA
251 Posts |
Posted - 13 October 2006 : 03:57:52
|
LOL No worries. But it is amazing how much time can be wasted over a single, misplaced apostrophe!
Sure feels good once you get it working though. :) |
PowerQuad Disability Support Forum |
 |
|
leatherlips
Senior Member
   
USA
1838 Posts |
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 13 October 2006 : 12:36:49
|
Lash up a link to a *.txt copy of the file.
|
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
 |
|
TastyNutz
Junior Member
 
USA
251 Posts |
Posted - 13 October 2006 : 14:32:53
|
removed to eliminate scrolling
<%' *** Change the server path above ***
' *** Get the chat user array ***
Const ApplicationUsers = "ChatUsers"
If IsArray(Application(ApplicationUsers)) Then saryActiveUsers = Application(ApplicationUsers) Else ReDim saryActiveUsers(6, 0) End If
If UBound(saryActiveUsers, 2) = 0 Then Response.Write(vbCrLf & "Nobody in Chat") Else Dim intArrayPass For intArrayPass = 1 To UBound(saryActiveUsers, 2) Response.Write(vbCrLf & saryActiveUsers(1, intArrayPass) & ", ") Next End If %>[/code] |
PowerQuad Disability Support Forum |
Edited by - TastyNutz on 14 October 2006 18:45:35 |
 |
|
leatherlips
Senior Member
   
USA
1838 Posts |
|
Topic  |
|