Tagged Questions

11
votes
3answers
176 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, ...
6
votes
2answers
5k views

ExtJS: Login with 'Remember me' functionality

I'm trying to create a simple login window with the very common 'Remember me' functionality. The login validation is done AJAX style, thus the browser won't remember my input. My approach is to use ...
2
votes
1answer
1k views

Asp.net “Remember Me” does not work through FormsAuthentication.RedirectFromLoginPage()

In my login page I'm using FormsAuthentication.RedirectFromLoginPage() to redirect to Home page after the user is validated. But it doesn't seem to obey CreatePersistenceCookie parameter. I have ...
2
votes
1answer
710 views

Implement a “Remember me” CheckBox in windows application?

Hello I am creating a Windows application (WPF) that is going to be running in few stations accessing 1 database. I already implemented a login form with a login system thru My.User.CurrentPrincipal. ...
1
vote
1answer
50 views

Login with Facebook/Twitter/Google 'remember me' functionality

On my site I have a traditional username/password login form which has a remember me functionality - which work great. I have recently added login with Facebook, Twitter and Google options also. ...
1
vote
3answers
54 views

Implementing a login screen with tabs

I am working on an application which requires me to create a log in screen. The way I have planned to do this is have 2 tabs log in, sign up and what I wanted to know is I want to be able to have a ...
1
vote
2answers
330 views

Django Login Form with “Remember Me” Option, What would be the best way?

I am developing a django application and i would like some suggestions on what would be the best way to provide "Remember Me" option with the Login Form. I am really concerned about the performance of ...
1
vote
1answer
207 views

Can the Lotus Notes Browser remember standard webpage login credentials?

We have a client who uses a website we have created. The requires the standard username/password combination to access site contents. In IE, FF and Chrome the browser offers to remember the login ...
1
vote
3answers
4k views

how to create a secure php login system, allowing for “keep me logged in” functionality?

I use a simple login system based on SESSION vars. Once the user logs in, a session var is set that tells my script the user is to be accepted in. I don't use any custom clientside cookie var. I ...
0
votes
0answers
139 views

PHP Login - Remember Me

My configuration file included on each page has this. session_name('fourptLogin'); session_set_cookie_params(2*7*24*60*60); session_start(); My login form currently has, <label><input ...
0
votes
1answer
95 views

How to get Chrome to remember login on forms?

On many websites when you login via Chrome it will offer to remember your login details. I have a login form and this does not happen. Here's the form: <form action="/login" method="post"> ...
0
votes
0answers
96 views

Cannot get shared prefs to work with checkbox

Having an issue creating a checkbox that will onCheck save my users name and password. I've tried 101 different approaches and all have failed in one form or another. So, back to the drawing board. My ...
0
votes
1answer
417 views

“Remember Me” Login for website - Problem with different browsers/computers

I'm trying to implement a "Remember Me" login functionality for an ASP.NET MVC site I'm building. I'm trying to use this approach http://jaspan.com/improved_persistent_login_cookie_best_practice (see ...
0
votes
5answers
275 views

How can I log any login operation in case of “Remember Me” option?

I have an asp.net login web form that have ( username textBox - password textBox ) plus Remember Me CheckBox option When user login i do the below code if (provider.ValidateUser(username, ...
0
votes
2answers
211 views

logging in, logging out & session behavior

When you log out of a web app, should ALL your session be logged out? When I log out of the web app from the public library, should it also log me out of the session I have on my home computer? When ...
-1
votes
1answer
158 views

Avoiding Remember me security issues

How do you avoid session hijacking and other problems with remember me on logins? One thing i know is to add a md5 or the useragent, but that's isn't a very good protection in itself... is there ...