Questions tagged [remember-me]

A way to store personal information to make it easier for a user to fill in forms or login to websites at a later time.

A "remember me" option is often used on login forms on websites. It is represented as a checkbox labeled "remember me" and stores either the username or a login token to re-login the user when visiting the website again.

525 questions
0
votes
0 answers

ASP MVC 5 - Remember Me

I have an ASP MVC 5 app. The app talks to a WCF service. Once the user has passed in their credentials, a connection to WCF is established using those credentials. This is done so that the WCF services restricts their access and only returns useful…
Christian Findlay
  • 6,770
  • 5
  • 51
  • 103
0
votes
0 answers

Remember me in yii

How to Work Remember me Function in Yii. My Coding. In Config/Main.php 'user'=>array( // enable cookie-based authentication 'allowAutoLogin'=>true, ), UserIdentity.php public function authenticate() { $this->errorCode =…
Geethika SJ
  • 73
  • 1
  • 13
0
votes
1 answer

Changing the page that my ASP.net site redirects to when a user reopens a page after clicking remember me on login

How would I go about changing the page that my ASP.net site redirects to when a user reopens a page after clicking remember me on login. The remember me function works but the user stays of the home page. I would like the user to be redirected to…
Philip Crocker
  • 107
  • 5
  • 18
0
votes
1 answer

Persistent cookie normal timeout behaviour

Im implementing a persistent cookie based on http://jaspan.com/improved_persistent_login_cookie_best_practice. Question : If a user tries to access a page. After the authentication is successful, the used token is removed from the database. A new…
Max
  • 651
  • 8
  • 16
0
votes
0 answers

Implement Remember me and copy paste url in MVC3

The requirement is implement "Remember Me" and "Copy Paste url on browser" functionality using MVC3. I am using Active Directory (LDAP) for authenticate user, on success create Cookies and store a value. On NEXT visit check for cookies values not…
SSI
  • 1
  • 2
0
votes
1 answer

Spring security Remember-me doesn't work

I'm trying to apply spring security with custom user detail service and custom authentication provider. Also, I'm trying to apply the remember-me functionality. However, somehow, after I configured the custom user detail service and custom…
Sooyong Kim
  • 221
  • 1
  • 3
  • 8
0
votes
1 answer

MVC5 OWIN Authentication persistence is not working in production

I'm having an issue with login persistency using MVC5 OWIN authentication on my website. User will sign out automatically after 5 minutes, although they've checked remember me option. Everything work perfectly when running my website on localhost,…
0
votes
1 answer

How can I set a logged in session to be remembered for 2 weeks in CodeIgniter?

If a user logs in and selects "Remember me for 2 weeks", I want the session to remember them for 2 weeks. If not, it should expire in 2 hours. How do I do this?
Shamoon
  • 41,293
  • 91
  • 306
  • 570
0
votes
1 answer

Spring Security and custom Remember me filter: logout issue

I need to define a custom RememberMeAuthenticationFilter so that I can override the onSuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) method to put some custom logic. I've configured the…
filippo.derosa84
  • 126
  • 1
  • 2
  • 14
0
votes
1 answer

How to remember login status in an iOS app with a Node.js backend

I'm making a social iOS app. In order to "remember" user's login status, what I did so far: for the first time the user logs in/create a new account, the app saves his/her username and password in keychain, and next time when the app launches, in…
dulan
  • 1,584
  • 6
  • 22
  • 50
0
votes
0 answers

Implement remember_me option with http_basic auth in SF2 SecurityBundle

I think that I already know the answer (as I really cannot see where to put the checkbox) so forgive this question that might be stupid but is there anyway to implement the remember_me option with an http_basic authentication in a Symfony2…
D4V1D
  • 5,805
  • 3
  • 30
  • 65
0
votes
1 answer

ZF2 Remember me

I'm trying to remember the session when the user logs on successfully. The time of the session works correctly, just does not work when I close the tab of my browser (Chrome) and back into the page. if ($authResult->isValid()) { …
0
votes
1 answer

Android-Xamarin: Remember EditText in sessions

I am developing an Android application on Visual Studio with his Xamarin plugin. I need remember the user and password on a TextView in all session of this application, i.e. when the user close the application and reopen, this TextView must remember…
Kevin F
  • 169
  • 7
  • 17
0
votes
1 answer

Remember me Symfony

I don't understand why RememberMe functionality Symfony is not supported by my user class. The cookie is create for 1 year (31536000s). DEBUG - Remember-me cookie detected. WARNING - User class for remember-me cookie not supported. DEBUG -…
swagney
  • 3
  • 3
0
votes
1 answer

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? When I login a user, the sfRemember cookie is created…
Tom
  • 30,090
  • 27
  • 90
  • 124