RE: Duplicate UserNames / Passwords logging into a site

2002-10-16 Thread Tony Weeg
-Original Message- From: CS [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 11:42 AM To: CF-Talk Subject: RE: Duplicate UserNames / Passwords logging into a site I didn't give it much thought, you're right, session management is the way to go. Don Li ---

RE: Duplicate UserNames / Passwords logging into a site

2002-10-16 Thread CS
t > invalid login, throw > some warning up there...and let them know you have > their ip > address...scare > em a little, and most will roll on > > tw > > -Original Message----- > From: CS [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 20

RE: Duplicate UserNames / Passwords logging into a site

2002-10-15 Thread Tony Weeg
: RE: Duplicate UserNames / Passwords logging into a site what if user loses internet connectionthey are still logged in to the site, and cant relogin now? no use session management and some client state management, set some cookies and manage it that way.set the session timeout to

RE: Duplicate UserNames / Passwords logging into a site

2002-10-15 Thread Tony Weeg
: Re: Duplicate UserNames / Passwords logging into a site Another simple and efficient solution would be: on database side, add a column like LogonYN (bit) (for MS SQL Server) to the {user login} table, upon successful login turn the flag to 1 (ON) -- the user is login on now; when a user attempts

Re: Duplicate UserNames / Passwords logging into a site

2002-10-15 Thread CS
Another simple and efficient solution would be: on database side, add a column like LogonYN (bit) (for MS SQL Server) to the {user login} table, upon successful login turn the flag to 1 (ON) -- the user is login on now; when a user attempts to logon in, verify this column as well, if it's 0 (this

RE: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Mark Leder
logging into a site I do something similar to what Jeffry describes to provide exclusive record locks in my content management system. Managing the things can be a bit tricky but it works great once you have it set up. You can do the following to determine if your period of inactivity exceeds whatever

Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Matt Robertson
I do something similar to what Jeffry describes to provide exclusive record locks in my content management system. Managing the things can be a bit tricky but it works great once you have it set up. You can do the following to determine if your period of inactivity exceeds whatever it is you

RE: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Cornillon, Matthieu
Message- From: Benoit Hediard [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2002 1:59 PM To: CF-Talk Subject: RE: Duplicate UserNames / Passwords logging into a site I don't think that there is clean way to accomplish this. Because there is no good way to know when the user

Re: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread David Hannum
is already logged in. Dave - Original Message - From: "Mark Leder" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 14, 2002 1:30 PM Subject: Duplicate UserNames / Passwords logging into a site Hi All, I need some ideas on the

RE: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Benoit Hediard
MAIL PROTECTED]] Envoyé : lundi 14 octobre 2002 19:30 À : CF-Talk Objet : Duplicate UserNames / Passwords logging into a site Hi All, I need some ideas on the best approach to the following: I have a subscription based site, where everyone has their own user name and password (I keep duplicates

RE: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Eugene, Joseph
PROTECTED]] Sent: Monday, October 14, 2002 1:30 PM To: CF-Talk Subject: Duplicate UserNames / Passwords logging into a site Hi All, I need some ideas on the best approach to the following: I have a subscription based site, where everyone has their own user name and password (I keep duplicates

Re: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Jeffry Houser
This might be a tricky one. You can use an application variable that contains a list of all users on the site. Perhaps you'll want to use a structure. Take the username as the key and the date / time of there last access as the value. You'll have to update this value on every page, prob

Re: Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread nick
mall to medium sized sites (ranging from near nothing to about 2500 unique users daily). Good luck. Nick - Original Message - From: "Mark Leder" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 14, 2002 11:30 AM Subject: Duplicate

Duplicate UserNames / Passwords logging into a site

2002-10-14 Thread Mark Leder
Hi All, I need some ideas on the best approach to the following: I have a subscription based site, where everyone has their own user name and password (I keep duplicates from being entered in the database). However, the problem is with sharing of usernames and passwords. Say for example I log in