Tagged Questions

11
votes
3answers
107 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
536 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?
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
901 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. ...
4
votes
2answers
1k views

Best way for authentication in PHP

What's the best and most secure way to go when writing an authentication library in a model-view-controller way? The things that give me a hard time are keeping track of the users activity and ...
2
votes
1answer
325 views

PHP session garbage collection becoming an annoyance, i need some help to modify this behavior

I have been having this problem for some time now, I dont exactly know that if this is the issue but I am pretty confident that it is, I have my remember me session set too expire after 1 week, but ...
2
votes
4answers
750 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
101 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
92 views

Remember fields across pages?

I have this: main.php: ID: <input name="id" id="id" type="text" size="20" value="<?php echo $_POST['id']; ?>"><br> Password: <input name="password" id="password" type="password" ...
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
101 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
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
2answers
54 views

Is extending cookie.gc_maxlifetime to one week a good idea for implementing 'Remember me'

The default setting of cookie.gc_maxlifetime is 24 minutes, so even if I set the cookie to expire in one week the 'Remember me' will work for 24 minutes so I thought about extending gc_maxlifetime, ...