The remember-me tag has no wiki summary.
0
votes
1answer
24 views
How do I check a cookie using MVC 4 and the “Remember Me” function?
I created a new MVC 4 web application using the newer SimpleMembership model. The "out of the box" site creation by VS2012 creates the Account Controller and a "Remember Me" checkbox on the log in ...
0
votes
3answers
48 views
Remember me in android application
I am working in remember me function in android where i have stored the username and password in storage class,the storage class is the class where i implement the Shared preferences.
What i have ...
0
votes
0answers
43 views
remember me option in phonegap for iphone
I have to implement remember me functionality for an iphone app. I am using Java at the server side and Jquery mobile at the client side. As of now, I am returning the cookie to the client side from ...
1
vote
0answers
42 views
ZF2 user remember me not working
I am trying to implement rememberme functionality for my ZF2 v2.2 site.
So here is what i have done so far :
I created a service for session manager to write the session to db :
'session' => ...
2
votes
1answer
36 views
Keep state of user in rails app with extra details
I am new to rails , previously I have worked extensively with Yii (PHP, MVC framework) . Yii , allowed web user methods to set state variable , such as
Yii::app()->user->userid
...
0
votes
1answer
105 views
How to change Grails Spring Security Cookie Path
I've got two grails applications using spring security:
Core
Module (user and role tables mapping to Core db tables)
I want to have a single sign on functionality using "remember me". The problem ...
1
vote
2answers
101 views
SpringSecurity: how to specify remember me authentication?
I'm developing an app based on Grails and Vaadin 7. I managed to make them work with SpringSecurity for authentication and authorization, but I had to develop my own Service that calls the Spring ...
0
votes
0answers
90 views
Spring Security Remember-me does not save tokens on Mongo
I try to implement Remember-me with Spring Security 3.1 with MongoDB. But tokens are not persisted on bbdd. I can login successfully and other spring security config works fine.
I have seen those ...
0
votes
2answers
138 views
Spring Security custom authentication and remember me
I used this tutorial http://krams915.blogspot.de/2010/12/spring-security-mvc-integration-using_26.html to implement a custom authentication manager. Login and logout works fine.
Now I want to use ...
0
votes
1answer
80 views
Cookie issue on google chrome
I encounter a cookie issue with my website.
When a customer click on "remember me" before log-in, a cookie is created, and then when he leave and come back later, he is automatically re-logged.
It ...
0
votes
1answer
152 views
spring security remember me authentication
I have the mechanism to save cookies at the client-side. But when I was trying to implement remember-me using spring security I came upon this tutorial :
...
0
votes
1answer
73 views
Is having a Persistent Login Cookie (“Remember me”) that never expires a good idea?
In the most recommended solution for Persistent Login Cookies, a user's "Remember me" Cookie is always renewed with a new token when they login with their Persistent Login Cookie. Let's say you set ...
2
votes
2answers
166 views
How to work “Remember Me?” Funcitonality without using Cookie in Java?
First of apology to ask this Repeated Question but i have lot of confusion in that..
Actually in my spring Application Have Home.jsp, login.jsp and LoginController.java,LoginForm.
(Hear Login.jsp is ...
0
votes
1answer
38 views
CAS Jasig remember me uses old user attributes
It seems that when login with remember me feature, the user attributes (comming from AttributeRepository) are not refreshed.
The use case :
A user logs on monday. Its attributes are retrieved.
On ...
0
votes
0answers
148 views
Remember Me feature in spring security core and grails
I am trying to implement 'remember me' feature in my grails application using spring security core. The idea is to login user directly without asking for username and password if the user has logged ...
0
votes
1answer
121 views
Attribute jsessionid remove cookie
I logged in my site. Cookie created correctly.
I see JSESSIONID and SPRING_SECURITY_REMEMBER_ME_COOKIE (at this moment Its name is testMecook). It's ok
Then, I close my browser, then open it. And ...
0
votes
2answers
56 views
Spring remember-me doesn't redirect to homepage
Here is how I configured Spring-security :
<security:http auto-config="true">
<security:remember-me key="123456" /> <!-- Be Aware -->
<!-- Restrict URLs ...
0
votes
0answers
32 views
Remember me function in ASP.NET MVC [duplicate]
I'd like to have a remember me function in my website that automatically logins users.
I know i can use use the setauthcookie true, but isn't this unsecure and how does it work? Because you only ...
6
votes
1answer
296 views
Silex / Symfony2 Remember Me Authentication User Interface RedBean Wrapper
I've been trying to use RedBean ORM (http://redbeanphp.com) to implement UserInterface and UserProviderInterface of the Silex Security Provider Package.
Because of the way the RedBean ORM handles ...
0
votes
1answer
161 views
Symfony 2 & Remember me function
Having a strange problem that others don't seem to have.
I can't get the "remember me" function working on my Symfony 2.1 app.
I've tried local and deployed on a server, I've tried with and without ...
0
votes
1answer
299 views
Django “Remember Me” with built-in login view and authentication form
How can I reuse the original admin login() and AuthenticationForm to set longer cookie length for users with "remember me" option checked at login page? I am currently using the built-in login through ...
0
votes
1answer
324 views
Spring Security Remember-Me REST web service - how to return token back in the 200 response with the Persistant Token Approach
I have my rest web services secured with Spring Security. I'm returning the the appropriate responses (401 for failure, 200 for success, etc) via the various handlers. The client does not want to ...
1
vote
1answer
190 views
how to delete remember me cookie in spring security
I was wondering how to the remove the remember me cookie when using spring remember me services.
I am using the default remember me cookie name
I came across the following documentation in spring to ...
1
vote
1answer
138 views
How do I add remember-me login on Silex?
I try but don't understand Security core, could anyone help me to add remember-me? I have been waiting several months for @fabpot (https://github.com/fabpot/Silex/pull/464)
Otherwise, I need to ...
1
vote
1answer
68 views
Spring security remember me - logging out one PC forgets all other persistent logins on other PCs
Remember-me service definition:
<security:remember-me services-alias="rememberMeService" data-source-ref="dataSource" user-service-ref="userService"/>
and my persistent_login table (via ...
0
votes
1answer
181 views
Remember me not working chrome and IE
I am working in asp.net and c#.In my application i have login page for which i am having remember me feature.My code works well in firefox but not working in chrome and IE.please let me know where i ...
0
votes
1answer
67 views
Progammatic remember-me with spring secruity
My remember-me bean definition looks like this, and works fine
<security:remember-me data-source-ref="dataSource" user-service-ref="userService"/>
However the first time a user registers, ...
3
votes
1answer
135 views
Remember me cookie decoding process
I am using spring remember me services. I am seeing a strange behavior.
Steps I am taking:
login to my website using username /password and checking the remember me checkbox
than I am closing the ...
0
votes
1answer
41 views
Devise rememberable does not work in jQuery Mobile
Devise rememberable is supposed to set a remember_user_token cookie on the client so that even when the session cookie is deleted, the user does not have to log in again.
t.rememberable is set in the ...
0
votes
0answers
144 views
Implement remeber me checkbox in login form joomla 3.0
I want to implement "Remember Me" checkbox in joomla 3.0 login form. I am add html in /components/com_users/views/login/tmpl/default_login.php
> <?php if (JPluginHelper::isEnabled('system', ...
1
vote
1answer
126 views
Knockout.js doesn't pick up autocompleted or prefilled values
I've noticed that Knockout doesn't seem to update my view model when I use autocomplete (remembering password, for example).
I read that there was an issue with this, but should have been fixed by ...
0
votes
0answers
95 views
user login system cookie based over ssl
i created user login system and with this function i start sessions
function sessionStart() {
$session_name = 'sec_session_id'; // Set a custom session name
$secure = false; // Set to true ...
-1
votes
2answers
333 views
php login system remember me style
i wrote this code to start session in secure way
function sessionStart() {
$session_name = 'sec_session_id'; // Set a custom session name
$secure = false; // Set to true if using https.
...
0
votes
2answers
162 views
Remember me checkbox in the joomla ADMIN login Form. How to?
Anyone know how to create a "remember me" checkbox in the joomla ADMIN login form? I am tired to "re-login" everytime that I need to change something in the backend.
I have created the checkbox, but ...
0
votes
1answer
278 views
grails - Spring Security Core Plugin - ajax call - Invalid remember-me token mismatch.
I get the below errors on the first ajax call after a remember-me login. (causes a manual login.)
Strange thing is the persistent_login record is deleted
and then it tries to find the record with ...
0
votes
0answers
48 views
Charles Miller's solution for Remain Logged In cookie?
I was reading this answer about how /why/why not should I implement "remember me" option.
However I'm more interested in this section
If you DO decide to implement persistent login cookies, this ...
2
votes
2answers
81 views
Remember me cookie forgery
When a user log in and check the "remember me" box, I generate a key (very random numbers on a md5) for it and save on it's cookies. If the user is not logged, my code check for a "remember me key" ...
0
votes
0answers
8 views
Script is not remembering type=email field?
I have a script running on my registration page to avoid blank input fields after submitting and failing to submit the form. Anyway, I have managed to get this script working for the input[type=text"] ...
3
votes
0answers
83 views
How to administratively invalidate a session that used “Remember Me” option?
I'm using Symfony 2.1.6 and PdoSessionStorage. I'm trying to add the same functionality that Facebook has to my application where you can show a user all the active sessions they have with the website ...
0
votes
0answers
91 views
How do I set a remember me cookie for custom auth action in spring security (Grails)?
Using grails with spring security I have a custom auth action for a facebook login. The Auth action contains
def target = facebookContext.getLoginURL(
...
0
votes
0answers
115 views
symfony2 fosuserbundle remember_me cookie aftre register
In my registerAction i turned off the confirmation so if the user fills in the form correctly, it is authenticated.
Does anyone know how to create rememberme cookie so as the user can stay ...
6
votes
4answers
239 views
PHP “Remember Me” security flaw?
I'm in the middle of coding a 'remember me'-equipped login form, and so far the tutorials I've read (partly to make sure I'm doing it right) all say to store the encrypted password in a cookie along ...
0
votes
1answer
56 views
How to make Listbox to not remember its last view
I have a Listbox that bind to an ObservableCollection. In my app, I need to clear this collection in OnNavigatedFrom and read it in OnNavigatedTo to reduced memory.
However, I see that when using ...
0
votes
1answer
163 views
Configuring remember-me in spring security
How can i configure remember-me service in spring security.Am using spring3.0 +hibernate3+ struts2.I have tried as below.
login.jsp
<input type="checkbox" ...
1
vote
2answers
658 views
KendoUI PanelBar remember expanded items
I try implement Kendo UI PanelBar (see http://demos.kendoui.com/web/panelbar/images.html) If I open some items (Golf, Swimming) and next click to "Videos Records", I have expanded items. But when I do ...
1
vote
0answers
220 views
Spring security remember me
As per this link, I'm trying to implement the Persistent Token Approach for the "remember me" functionality. The tokens are stored in my database (postgres). I have the datasource set up properly, ...
0
votes
0answers
48 views
Symfony2: Conflict between framework_session_lifetime and remeber me functionality
My site must deal with a cookie that has a long lifetime. For this reason, I have in my app/config/config.yml:
framework:
session:
lifetime: 31104000
The site should have as well a ...
1
vote
1answer
291 views
How to “automatically login” user after remember me cookie is checked?
I need to implement "Remember me" functionallity on my JSF site, i´ve been researching about this topic trying to find what the best practices are. Ive found many answers, but i still have a question ...
0
votes
1answer
59 views
Cookie to Remember Form Submission
I have a form that when submitted appends the current page's URL: domain.com becomes domain.com?name=value
The form works great, but I need to write a cookie so that when the user goes to another ...
0
votes
1answer
111 views
Spring “Remember Me” not working with jetty and session replication
I am using Jetty 8 and currently have two instances set up and running behind a round robin load balancer. I have configured it use session replication via MongoDB. My application uses spring ...


