Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

symfony2 error: sessionHandler::read()

Tags:

php

symfony

i got this error in production server. everything is ok on local server.

request.CRITICAL: Uncaught PHP Exception ErrorException: 
Warning: SessionHandler::read(): open(C:/Inetpub/vhosts//tanur.ir/vhosts/tanur.ir/private/session\sess_3olhvc8osdevomrh72bhsra4k6, O_RDWR) 
failed: No such file or directory (2) in C:\Inetpub\vhosts\tanur.ir\httpdocs\Symfony\vendor\symfony\symfony\src\Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy.php line 69" 
at C:\Inetpub\vhosts\tanur.ir\httpdocs\Symfony\vendor\symfony\symfony\src\Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy.php line 69 [] []

php version is 5.4.16 on production server

like image 387
AhmadF Avatar asked Mar 10 '26 18:03

AhmadF


2 Answers

I am running Fedora 18 with PHP 5.4 (using php-fpm) + nginx and I faced similar problem. Symfony was complaining that it was unable to create a session file called /var/lib/php/session/sess_

I gave apache rwx permission to /var/lib/php/session using the following acl command and it solved the problem:

sudo setfacl -m apache_username:rwx /var/lib/php/session 

apache_username is either apache, www-data depending on your linux distribution, it can be also a custom user

like image 175
Raptor Avatar answered Mar 13 '26 06:03

Raptor


just have to add/change these 2 lines in app/config/config.yml to fix it:

framework:
session:
    handler_id: session.handler.native_file
    save_path: "%kernel.root_dir%/sessions"
like image 34
shuster Avatar answered Mar 13 '26 06:03

shuster



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!