Tagged Questions

36
votes
5answers
6k views

What is the best way to implement “remember me” for a website?

I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a ...
11
votes
3answers
101 views

Proper way to use “Remember me” functionality in PHP

Short Working on login system and trying to implement remember me feature. Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so, ...
7
votes
3answers
535 views

How can I create a secured “remember me” system using PHP?

I have a login system. How can I implement a secure remember me system using cookies. What value should I have to store in cookie username and password, but how I can secure it?
7
votes
6answers
873 views

'Remember-me' authentication feature, does it always mean 'Unsecure' Website?

I'm considering to implement the classic 'remember-me' checkbox on my webapp to allow the authenticated user to be 'remembered' once he returns to visit my website. Gmail, Facebook and others have ...
5
votes
1answer
1k views

PHP: Remember Me and security?

During the time I've spent taking breaks from learning how PHP supports Unicode I've been delving into making my "Remember Me" cookies a bit more secure. However there are a few things I don't ...
4
votes
5answers
400 views

Difference between creating a session and a cookie?

I'm working on my first website with the Play! framework, and at one point I'm calling this method when the user logs in: static void connect(User user){ session.put("userid", user.id); } ...
4
votes
5answers
899 views

Best practise for remember me feature

I am using 2 variables in cookie(7 day expiration) which is user id and hash. Hash is sha1 encode of user agent and user id. In this case some hacker can login who is know stolen cookie's browser. ...
2
votes
2answers
224 views

java servlet remember me option with cookies

I need to implement a simple remember me option in a java servlet with cookies, without using any advanced framework. First, at login, I create the cookie and send it in response to the browser ...
2
votes
1answer
689 views

Is it possible to implement “Remember Me” using jquery cookies?

Is it possible to implement "Remember Me" using jquery? If so, any suggestion how it can be done? EDIT: I am trying to remember username and password using jquery cookies.store cookies about ...
2
votes
1answer
1k views

How to handle “Remember me” in the Asp.Net Membership Provider

Ive written a custom membership provider for my ASP.Net website. Im using the default Forms.Authentication redirect where you simply pass true to the method to tell it to "Remember me" for the ...
2
votes
4answers
747 views

Cookie and session in “remember me” feature

I have never wanted to allow a user to stay logged in for any length of time so I never saw a use for a "remember me" feature. I started thinking about how it's done though and would like some ...
1
vote
1answer
98 views

Best way for hashing a “remember me” cookie token

I'm trying to implement a "remember me" feature, following the guidelines provided here: The Definitive Guide To Forms based Website Authentication, and here: ...
1
vote
2answers
194 views

Persistent cookie timeout with FormsAuthentication

I am creating some "Remember Me" functionality as part of logging in. When I create a persistent cookie during the login process with the following: FormsAuthentication.SetAuthCookie("someusername", ...
1
vote
2answers
400 views

Saving login status with JavaScript cookies

I'm working on the login/ucp module of an application and I'd love to add a "remember me" option to remember the currently logged-in user and keep them logged in next time they visit. I know this ...
1
vote
2answers
557 views

Making Authlogic 'not remember me'

I want my user session to end when the user closes the browser. But authlogic seems to remember the session even when a new browser is opened. I have tried setting @user_session.remember_me = false ...
1
vote
3answers
1k views

Automatic Login with Rails?

I am trying to get up a simple authentication system with Rails' Restful-Authentication plugin, and am just wondering how it works, b/c I can't seem to figure out what the requirements are for ...
1
vote
2answers
2k views

Implementing “Remember me” Functionality in ASP.NET

What is the best way to implement 'remember me' functionality on an ASP.NET web site? Should I use custom cookies or is there a simpler method?
0
votes
0answers
34 views

Why do Devise uses a table column for the “remember me” feature?

I was wondering, I remember setting a long lived cookie for the "remember me" feature back in my PHP times. So why do Devise needs a whole datetime column for it?
0
votes
1answer
117 views

Can't make user stay logged after restarting browser using cookies - PHP?

I've created a back end log in for my site, but for some reason, I can't get the "remember me" function to work properly. It saves the cookies with username password and ID number, but for some ...
0
votes
1answer
297 views

Remember-Me with Spring Security, various questions

I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to. As I don't have pretty much ...
0
votes
1answer
277 views

evercookie in Spring Security rememberme-service

I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it. I read a bit about implementing a custom remember-me service, but ...
0
votes
2answers
878 views

asp.net “Remember Me” cookie

I have implemented remember me option in my asp.net webform by using this, protected void LBtnSubmit_Click(object sender, EventArgs e) { if (this.ChkRememberme != null && ...
0
votes
1answer
1k views

Problem with sfRemember cookie / sfGuard Remember me

I'm using Symfony 1.4 with Doctrine. Sorry if this is a silly question but what exactly does one need to build on top of the sfDoctrineGuardPlugin to get the "remember me" functionality working? ...
0
votes
1answer
405 views

Manual authentication in spring using the rememember me cookie

I have a requirement by which I need to detect user authorization in the login screen itself. (refer to my Previous Question) I tried and searched for a cookie by name ...
0
votes
1answer
214 views

is it possible to not display login screen in remember me in spring security?

I have implemented spring security's remember me feature in our app, the way i understand it, If user opens main page directly and he is not authenticated by spring, he is taken to the login page. if ...