0
votes
0answers
23 views

symfony2 flash not disappear

I have a validation action that is fired by AJAX. That action sets flash message: $this->container->getFlashBag->set('phone_verified_flash', 'ok'); and when the response comes, the page ...
0
votes
2answers
167 views

Symfony Session - How to add a custom field to the session table

I'm currently using Symfony 2.1.8 and the built-in PdoSessionHandler. I want to add a user_id field in the session table to identify to which (logged-in) user the session belongs. The idea is that I ...
1
vote
0answers
98 views

can't access session data after redirect

I use FOSUserBundle to register new users. User answers few questions which are saved to the session. If the answers are correct the user is redirected to register action. After register the user is ...
0
votes
1answer
81 views

Symfony 2.1 permissions, unit test, session

I am creating application based on Symfony 2.1. I write code locally, upload it on server and then run unit tests. When every test pass I run Jenkins job to check code style and etc. Recently I ...
0
votes
1answer
271 views

symfony2/fos-user-bundle: Login User by Entity

I have a user entity in a symfony2 controller and i need to log that user in. Apparently i do not understand how the process works with the Csrf Token and loging in a user. What do i have to do to ...
1
vote
1answer
175 views

Lifetime of a cookie (for session id) ? Deleted after closing the browser + error : Failed to start the session because headers have already been sent

I would like to store in a cookie the session id of the user. So I write this piece of code : public function indexAction() { $session_id = $this->get('session')->getId(); $request = ...
0
votes
1answer
130 views

External access to symfony 2.1 session

I use BlueImp file uploader server side with symfony 2.1 as external must-be-lightweight php UploadHandler.php script I want to get logged user id to use its own directory for uploading For security ...
0
votes
0answers
178 views

back button shows previous page after logout in Symfony 2.1

I have done project in Symfony 2.1 in which session management works properly. i.e. after logout it shows login page.But while cliking on back button of browser it shows previous page which should not ...
3
votes
0answers
82 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 ...
2
votes
0answers
165 views

Symfony2, symfony1.4 and $_SESSION

I have a project where I want to use Symfony2.1 and symfony 1.4 and of course I need to share some data between them with the session, but I don't understand why the sessions are not visible between ...
0
votes
1answer
141 views

Detect if request service is accessible in Symfony 2?

Function getCurrentOrDefaultLocale(), defined in my service, may be invoked from a controller or through a command line script. Accessing request service from CLI throws an exception, and I'm using ...
8
votes
1answer
170 views

share authentification between domain and subdomain in symfony 2.1

In an application I implemented an javascript chat with long polling. Since there is just one Ajax Request per domain allowed I wanted to move the poll request to a subdomain. So I have two domains: ...
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 ...
0
votes
3answers
131 views

There is a session cookie even if I don't log in

I delete all cookies for the site in my browser, check cookies again: no cookies. Reload example.com, check cookies: SESSID (my php session cookie). Shouldn't there be no cookies at all if I don't ...
0
votes
1answer
63 views

Users get logged out frequently since we started to use APC

I have a Symfony2 project and use the FOSUserBundle. Ever since I have installed APC, users seem to get logged out very frequently/fast. Does anyone recognize this? I have the default value set for ...
1
vote
1answer
580 views

Symfony 2.1.2 memcache session kinda SSO

I'm kinda lost in all the session stuffs in Symfony. I'm gonna explain what I want to achieve and I only want to be pointed out on the right track. I have PHP session stored in memcache (I don't have ...
0
votes
1answer
646 views

Symfony 2.1 Session Local Value and Master Value (read on phpinfo)

I'm having problems with sessions when i sarted migration from symfony 2.0 to symfony 2.1. I'm using simplesamlphp for authentication and everything was working ok on symfony 2.0. On Symfony 2.1 it ...
2
votes
1answer
437 views

Symfony 2 sessions not persisting after created via AJAX call

Let me give you the scenario. I have an AJAX call that calls /auth - that page in turn checks if the user is authenticated and sets a couple session variables (code below). $session = ...
1
vote
1answer
1k views

Symfony2 A session had already been started - ignoring session_start()

I can't use Symfony2 session in my local server. I'm getting a "Notice: A session had already been started - ignoring session_start()" error. Same script works fine in my production server. I'm ...
0
votes
1answer
206 views

Why is my flashbag item not there anymore?

I set up my session in my request kernel event listener where I update a last_seen session variable like this: class RequestListener { public $session; public function __construct( Session ...
0
votes
0answers
250 views

symfony2: Setting PdoSessionHandler correctly

I followed the symfony 2.1 cookbook page on using PDO for saving sessing data, on this link: http://symfony.com/doc/master/cookbook/configuration/pdo_session_storage.html the thing is, on my dev ...