Hi,
i want to save the sessions in memcached on my debian server / nginx. I have updated our php.ini file /etc/php5/fpm/php.ini
session.save_handler = memcached;
session.save_path = "tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
But in phpinfo() session.save_path still stay /var/lib/php5 after nginx/php-fpm reload.
pp: the save_handler is successfully updated: session.save_handler:memcached
More Info: PHP Version 5.4.4-14+deb7u14
Can you guys help me? Thanks a lot !
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
i found the problem:
Additional .ini files parsed : /etc/php5/fpm/conf.d/000-session-store-default.ini
and the config was in the ini file.
Thanks
Try restating
php5-fpm
instead of reloading. Does that fix it?