 |
|
 |
|
Next: Looking Reliable, multi browser 2 clo and 3 col l..
|
| Author |
Message |
External

Since: Feb 06, 2006 Posts: 126
|
(Msg. 16) Posted: Tue Jul 18, 2006 10:00 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: alt>www>webmaster (more info?)
|
|
|
"Beauregard T. Shagnasty" <a.nony.mous.DeleteThis@example.invalid> wrote in message
news:3%Vug.410308$Fs1.363198@bgtnsc05-news.ops.worldnet.att.net...
>>
>> Methinks you misunderstood the OP's question.
>> How is a database going to *remember* the user?
>> Without a cookie, cnce the session is over, the site "forgets" about the
>> user. A database won't fix that.
>
> Depends on how you use the database, and how you write the pages. <g>
>
I'd be interested to hear how you would bypass manual authentication using
just a DB... >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: May 30, 2006 Posts: 452
|
(Msg. 17) Posted: Tue Jul 18, 2006 2:17 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Imported from groups: alt>www>webmaster, others (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2003 Posts: 366
|
(Msg. 18) Posted: Tue Jul 18, 2006 3:17 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: alt>www>webmaster (more info?)
|
|
|
CJM wrote:
> "Beauregard T. Shagnasty" <a.nony.mous DeleteThis @example.invalid> wrote
>>> [Karl Groves wrote:]
>>> Methinks you misunderstood the OP's question.
>>> How is a database going to *remember* the user?
>>> Without a cookie, cnce the session is over, the site "forgets" about the
>>> user. A database won't fix that.
>>
>> Depends on how you use the database, and how you write the pages. <g>
>
> I'd be interested to hear how you would bypass manual authentication
> using just a DB...
Sorry if you took my meaning that way; I meant that you should use a
database so registered users do not have to re-authenticate themselves
each time they return to a site. If you didn't, anybody could log in.
A cookie - which can be erased - doesn't help a returning user next
week. Store valid users in the database, request they log in, and look
them up in your database and reestablish a session cookie.
I have a private online system with valid users stored in a table, and
with session cookies set to expire after 20 minutes of inactivity. While
the user is active, each page of the site checks the cookie. (Being
private, I can't show you those pages.)
--
-bts
-Warning: I brake for lawn deer >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Feb 06, 2006 Posts: 126
|
(Msg. 19) Posted: Tue Jul 18, 2006 4:42 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"Beauregard T. Shagnasty" <a.nony.mous DeleteThis @example.invalid> wrote in message
news:VX6vg.145020$mF2.15180@bgtnsc04-news.ops.worldnet.att.net...
>> I'd be interested to hear how you would bypass manual authentication
>> using just a DB...
>
> Sorry if you took my meaning that way; I meant that you should use a
> database so registered users do not have to re-authenticate themselves
> each time they return to a site. If you didn't, anybody could log in.
>
OK, I might be getting the wrong end of the proverbial stick...
Using a database to store user credentials is fine; is recommended even.
But you can't persist authenication information between sessions (at the
client) without using either cookies or querystrings; which, IIRC, is the
question the OP was asking.
I wouldn't use querystrings because these can be easily abused, but cookies
are a relatively safe way of storing this information (if encrypted), and
are very convenient for developers.
> A cookie - which can be erased - doesn't help a returning user next
> week. Store valid users in the database, request they log in, and look
> them up in your database and reestablish a session cookie.
>
If a cookie is erased, clearly the user must re-authenticate. I would also
make them re-authenticate every x mins/hours/days/weeks anyway; but not
necessarily everytime.
> I have a private online system with valid users stored in a table, and
> with session cookies set to expire after 20 minutes of inactivity. While
> the user is active, each page of the site checks the cookie.
I'm assuming you do this manually, but in ASP (and presumably other
technologies) these Session cookies are created automatically. In fact, in
reality, ASP creates a cookie which simply holds the SessionID and all other
information is stored server-side by IIS - in a database, in essence. >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Dec 01, 2007 Posts: 40
|
(Msg. 20) Posted: Tue Jul 18, 2006 5:54 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: alt>www>webmaster, others (more info?)
|
|
|
In article <1153221974.419347.270060 RemoveThis @s13g2000cwa.googlegroups.com>,
"ship" <shiphen RemoveThis @gmail.com> wrote:
> > > But how ofren should the be asked to *re-logon* ?!
> >
> > Once per session.
>
> It seems me that logging back in EVERY time you visit a site is a
> MIGHTY pain!
OK, let's try an analogy: "unlocking my house every time I go home is a
pain! I'm just going to leave it unlocked from now on". Maybe where you
live, that's a relatively low risk proposal. Or maybe you don't care too
much if someone breaks in. That's your decision, and it is pretty hard
for someone else to judge whether or not you should feel comfortable
taking that risk.
--
Philip
http://NikitaTheSpider.com/
Whole-site HTML validation, link checking and more >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Feb 13, 2004 Posts: 1104
|
(Msg. 21) Posted: Tue Jul 18, 2006 9:26 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Nikita the Spider wrote:
> In article <1153221974.419347.270060 RemoveThis @s13g2000cwa.googlegroups.com>,
> "ship" <shiphen RemoveThis @gmail.com> wrote:
>>> > But how ofren should the be asked to *re-logon* ?!
>>>
>>> Once per session.
>>
>> It seems me that logging back in EVERY time you visit a site is a
>> MIGHTY pain!
>
> OK, let's try an analogy: "unlocking my house every time I go home is a
> pain! I'm just going to leave it unlocked from now on". Maybe where you
> live, that's a relatively low risk proposal. Or maybe you don't care too
> much if someone breaks in. That's your decision, and it is pretty hard
> for someone else to judge whether or not you should feel comfortable
> taking that risk.
It's not a good analogy though.
Your house door is most likely in the public street. My computer
isn't. So yes, I'm happy for sites to give me an option to remember my
login details. If I'm at home, I tick the box "remember me".
Especially on sites I use every day. If I'm in the public library, I
don't tick that box.
--
Els http://locusmeus.com/ >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Sep 19, 2003 Posts: 3499
|
(Msg. 22) Posted: Tue Jul 18, 2006 9:26 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Fleeing from the madness of the LocusMeus.com jungle
Els <els.aNOSPAM DeleteThis @tiscali.nl> stumbled into
news:alt.www.webmaster,macromedia.dreamweaver
and said:
>Your house door is most likely in the public street. My computer
> isn't. So yes, I'm happy for sites to give me an option to remember my
> login details. If I'm at home, I tick the box "remember me".
I'd like my home to have that facility. Talking of missing facilities,
new cars (often - well, mid range and up) have electric windows, air
conditioning, central locking and an intruder alarm. How come these seem
so hard to find on anything but the most expensive houses?
> Especially on sites I use every day. If I'm in the public library, I
> don't tick that box.
Isn't it a nuisance reintroducing yourself to the staff every visit?
--
William Tasso
http://williamtasso.com/words/what-is-usenet.asp >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Jul 18, 2006 Posts: 56
|
(Msg. 23) Posted: Tue Jul 18, 2006 10:00 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
William Tasso wrote:
> Fleeing from the madness of the LocusMeus.com jungle
> Els <els.aNOSPAM.TakeThisOut@tiscali.nl> stumbled into
> news:alt.www.webmaster,macromedia.dreamweaver
> and said:
>
>> Your house door is most likely in the public street. My computer
>> isn't. So yes, I'm happy for sites to give me an option to remember
>> my login details. If I'm at home, I tick the box "remember me".
>
> I'd like my home to have that facility. Talking of missing
> facilities, new cars (often - well, mid range and up) have electric
> windows, air conditioning, central locking and an intruder alarm.
> How come these seem so hard to find on anything but the most
> expensive houses?
Have you ever tried to steal a house? It's a pain, escapecially getting it
on the truck.
Grtz,
--
Rik Wasmus >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Feb 13, 2004 Posts: 1104
|
(Msg. 24) Posted: Tue Jul 18, 2006 10:39 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Rik wrote:
> William Tasso wrote:
>> Fleeing from the madness of the LocusMeus.com jungle
>> Els <els.aNOSPAM RemoveThis @tiscali.nl> stumbled into
>> news:alt.www.webmaster,macromedia.dreamweaver
>> and said:
>>
>>> Your house door is most likely in the public street. My computer
>>> isn't. So yes, I'm happy for sites to give me an option to remember
>>> my login details. If I'm at home, I tick the box "remember me".
>>
>> I'd like my home to have that facility. Talking of missing
>> facilities, new cars (often - well, mid range and up) have electric
>> windows, air conditioning, central locking and an intruder alarm.
>> How come these seem so hard to find on anything but the most
>> expensive houses?
>
> Have you ever tried to steal a house? It's a pain, escapecially getting it
> on the truck.
I've seen Americans do it though - if I'd ever move to the USA, I'll
have to get a car alarm on my house.
Hmm.. while looking for a picture of such a house, I found that it's
even more scary to move to Australia - they actually make the homes
transportable to make it easier for them to steal them:
<http://www.steelhomes.org/steel-home-plans/surrey-home-plan.html>
--
Els http://locusmeus.com/ >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Jul 14, 2003 Posts: 1507
|
(Msg. 25) Posted: Tue Jul 18, 2006 10:53 pm
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Rik wrote:
> William Tasso wrote:
>
>>Fleeing from the madness of the LocusMeus.com jungle
>>Els <els.aNOSPAM.RemoveThis@tiscali.nl> stumbled into
>>news:alt.www.webmaster,macromedia.dreamweaver
>>and said:
>>
>>
>>>Your house door is most likely in the public street. My computer
>>>isn't. So yes, I'm happy for sites to give me an option to remember
>>>my login details. If I'm at home, I tick the box "remember me".
>>
>>I'd like my home to have that facility. Talking of missing
>>facilities, new cars (often - well, mid range and up) have electric
>>windows, air conditioning, central locking and an intruder alarm.
>>How come these seem so hard to find on anything but the most
>>expensive houses?
>
>
> Have you ever tried to steal a house? It's a pain, escapecially getting it
> on the truck.
>
> Grtz,
Nonsense. All you need is a really good two-wheeler and 3,000 friends.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex.RemoveThis@attglobal.net
================== >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Sep 19, 2003 Posts: 3499
|
(Msg. 26) Posted: Wed Jul 19, 2006 12:01 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Fleeing from the madness of the LocusMeus.com jungle
Els <els.aNOSPAM DeleteThis @tiscali.nl> stumbled into
news:alt.www.webmaster,macromedia.dreamweaver
and said:
> Rik wrote:
>
>> William Tasso wrote:
>>> Fleeing from the madness of the LocusMeus.com jungle
>>> Els <els.aNOSPAM DeleteThis @tiscali.nl> stumbled into
>>> news:alt.www.webmaster,macromedia.dreamweaver
>>> and said:
>>>
>>>> Your house door is most likely in the public street. My computer
>>>> isn't. So yes, I'm happy for sites to give me an option to remember
>>>> my login details. If I'm at home, I tick the box "remember me".
>>>
>>> I'd like my home to have that facility. Talking of missing
>>> facilities, new cars (often - well, mid range and up) have electric
>>> windows, air conditioning, central locking and an intruder alarm.
>>> How come these seem so hard to find on anything but the most
>>> expensive houses?
>>
>> Have you ever tried to steal a house? It's a pain, escapecially getting
>> it
>> on the truck.
>
> I've seen Americans do it though - if I'd ever move to the USA, I'll
> have to get a car alarm on my house.
>
> Hmm.. while looking for a picture of such a house, I found that it's
> even more scary to move to Australia - they actually make the homes
> transportable to make it easier for them to steal them:
>
> <http://www.steelhomes.org/steel-home-plans/surrey-home-plan.html>
>
>
Already got container homes on your doorstep ... http://snipurl.com/tg3u
--
William Tasso
http://williamtasso.com/words/what-is-usenet.asp >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Feb 13, 2004 Posts: 1104
|
(Msg. 27) Posted: Wed Jul 19, 2006 1:26 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
William Tasso wrote:
> Fleeing from the madness of the LocusMeus.com jungle
> Els <els.aNOSPAM.TakeThisOut@tiscali.nl> stumbled into
> news:alt.www.webmaster,macromedia.dreamweaver
> and said:
>
>> Rik wrote:
>>
>>> William Tasso wrote:
>>>> Fleeing from the madness of the LocusMeus.com jungle
>>>> Els <els.aNOSPAM.TakeThisOut@tiscali.nl> stumbled into
>>>> news:alt.www.webmaster,macromedia.dreamweaver
>>>> and said:
>>>>
>>>>> Your house door is most likely in the public street. My computer
>>>>> isn't. So yes, I'm happy for sites to give me an option to remember
>>>>> my login details. If I'm at home, I tick the box "remember me".
>>>>
>>>> I'd like my home to have that facility. Talking of missing
>>>> facilities, new cars (often - well, mid range and up) have electric
>>>> windows, air conditioning, central locking and an intruder alarm.
>>>> How come these seem so hard to find on anything but the most
>>>> expensive houses?
>>>
>>> Have you ever tried to steal a house? It's a pain, escapecially getting
>>> it
>>> on the truck.
>>
>> I've seen Americans do it though - if I'd ever move to the USA, I'll
>> have to get a car alarm on my house.
>>
>> Hmm.. while looking for a picture of such a house, I found that it's
>> even more scary to move to Australia - they actually make the homes
>> transportable to make it easier for them to steal them:
>>
>> <http://www.steelhomes.org/steel-home-plans/surrey-home-plan.html>
>>
>>
>
> Already got container homes on your doorstep ... http://snipurl.com/tg3u
Didn't even know that!
I know people get evicted when they are persistently being a nuisance,
but didn't know about the container homes.
--
Els http://locusmeus.com/ >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2003 Posts: 366
|
(Msg. 28) Posted: Wed Jul 19, 2006 2:59 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: alt>www>webmaster (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Jul 14, 2003 Posts: 1507
|
(Msg. 29) Posted: Wed Jul 19, 2006 7:16 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Beauregard T. Shagnasty wrote:
> In alt.www.webmaster, Jerry Stuckle wrote:
>
>
>>Nonsense. All you need is a really good two-wheeler and 3,000 friends.
>
>
> You going to the rally in Essex Junction this weekend?
>
> (dreamweaver group snipped)
Sorry, it's a few hundred miles too far for a weekend trip.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex.RemoveThis@attglobal.net
================== >> Stay informed about: Remembering website (registered) users - what is best prac.. |
|
| Back to top |
|
 |  |
External

Since: Jul 17, 2006 Posts: 16
|
(Msg. 30) Posted: Wed Jul 19, 2006 8:11 am
Post subject: Re: Remembering website (registered) users - what is best practice?! [Login to view extended thread Info.] Archived from groups: alt>www>webmaster, others (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
| Related Topics: | Can I use a registered domain name with Tripod Plus? - I have a domain name registered with another provider. Can I use that domain name with a Tripod Plus account? Will the visitor see my registered domain name when they are browsing my home page on my Tripod Plus account? Thanks for your help. ..
Who to find other websites registered to me - Hi all, I know you can do a WhoIs search on a URL to find out who owns it. Is there a way to tell what other URLs or sites that same owner owns? Someone just sent me an e-mail saying that they traced a credit repair site to my name and they wouldn't say...
Finding out what domain names got registered recently - I registered a domain name few days ago and got a spam message from someone offering his service for web promotion for the domain name. I was wondering how this person found out about newly registered domain names. Apart from someone inside my registrar...
1&1 Hosting. I need to point domains registered elsewhere .. - Ok here's the problem. We have just gotten ourselves a dedicated server with 1&1. took them five weeks to set it up...but that's another story! We have nearly all our domains registered through 123-reg and we're keeping it that way. So what we need ...
Users Logging in. - I am developing a website for a club that has 40 members. How can I set up the site so that users log in and are then shown as being on-line ? Thanks |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|