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
2 answers

PHP: Remember Me, Stay logged in doesn't work

In my PHP project, I want to add a user remember me checkbox so that everybody can choose to stay logged in: Until now I do my normal log in like: public function loginUser($psMail, $psPwd, $pnRememberMe = 0) { // Check credentials and so on …
Kelle
  • 15
  • 4
0
votes
1 answer

remember me using codeigniter

Hi i have this remember me in my website and i want that to work. Ive noticed that my code does not work. Heres my code below public function __construct(){ parent::__construct(); $this->load->model('login_model', 'lm'); …
hello
  • 81
  • 1
  • 12
0
votes
0 answers

Why does not remember-me function sometimes work in Spring Security?

I use 'remember me' function from Spring Security. Also I use LDAP to check user authentication. Here is my security-context.xml:
RuF
  • 548
  • 1
  • 11
  • 31
0
votes
0 answers

spring remember me logoff taking user to secure page instead of login page

i am trying to make user to stay at login page when he does logoff but user is redirecting back to secured url , since i have remember me filter for my login url. i want user stay at login page after logout.
pappu_kutty
  • 2,378
  • 8
  • 49
  • 93
0
votes
1 answer

problem with overriding autologin in spring security?

greetings everybody iam using spring security 3 remember me service as follows .... and i want to perform some logic in the autologin so i tried to override the AbstractRememberMeServices as follows: package…
sword101
  • 151
  • 1
  • 2
  • 5
0
votes
0 answers

I cannot get the "remember me" function on Laravel to work

In my application I have made a login with “remember me” functionality. When I connect to the application with “remember me” it creates a remember token in the cookies. However, when I test and close the navigator with and without the remember me it…
Ahmed Karmous
  • 373
  • 2
  • 10
  • 25
0
votes
3 answers

Why am I always logged in even after closing browser with remember me set to false

I've creating a working user/login system with the laravel 4 framework and all is working well. However I'm always logged into the site unless I run the logout process. I would assume that if I login, close all browser windows and open the browser…
Shane
  • 2,375
  • 4
  • 22
  • 31
0
votes
0 answers

Remember-me don't work(with Spring security 3.1, LDAP, ActiveDirectory)

I'm trying to cofigure "remember-me" in my web app. I use Spring security 3.1, LDAP and ActiveDirectory. This is applicationcontext-security.xml:
Diego87
  • 1,617
  • 3
  • 17
  • 20
0
votes
0 answers

Limit Spring Security Remember Me to Certain URLs

I'm using the Groovy/Grails Spring Security plugin and I'm wondering if is it possible to limit the URLs that will allow (or trigger) the Remember Me auto login functionality? I have a custom (somewhat complicated) implementation of the…
Harry Muscle
  • 2,247
  • 4
  • 38
  • 62
0
votes
1 answer

Remember login with PhoneGap and Laravel

I need to be permanently connected in a PhoneGap Application with Laravel. In a webpage, I can use the remember me option but in the PhoneGap Application I must save the token in localStorage and send it via AJAX in each request. In each request i…
SnakeDrak
  • 3,406
  • 4
  • 28
  • 41
0
votes
1 answer

Apache Shiro on App Engine - rememberMe not working

At this point I am completely stumped on how Shiro "rememberMe" services are supposed to work. I am using Shiro with my app which is hosted on Google App Engine. I have sessions-enabled set to TRUE in my appengine-web.xml file. I can see the…
edcincy
  • 321
  • 2
  • 3
  • 14
0
votes
1 answer

Is there a way to disable the 'remember me' feature in ServiceStack?

Obviously, not submitting that field to the login service works but anyone can override that. Is there a way to disable this feature on the server side entirely?
0
votes
1 answer

Apache Shiro: RememberMe feature doesn't work with default password service

I am developing a jsf-based project using Apache Shiro 1.2 for security. I have a problem with 'remember me' feature. [main] jdbcRealm=org.apache.shiro.realm.jdbc.JdbcRealm jdbcRealm.authenticationQuery = SELECT password from user where username…
Rhododendron
  • 559
  • 2
  • 7
  • 15
0
votes
3 answers

Add "Remember me" option to Classic ASP website

I need to add a "remember me" check to a Classic ASP web login form. How I can keep users logged for weeks or months, despite the Application Pool recycling, and when users restart your browser? The site is on a server with iis8. Thanks.
AlvaroV
  • 433
  • 1
  • 4
  • 10
0
votes
1 answer

remember me functionality symfony 2

I am working on symfony 2.4 framework. How to add remember me functionality in login form ??? security.yml firewalls: admin_area: pattern: ^/ anonymous: ~ form_login: login_path: login …
Sudin Manandhar
  • 145
  • 1
  • 2
  • 11