Hi,
I'm trying to save my session in a Redis store.
I coud install edis-2.6.9 and phpredis-2.2.2 on my php-5.3 server.
My phpinfo() displays:
Registered save handlers files user sqlite redis
session.save_handler redis redis
Redis Support enabled
Redis Version 2.2.2
My Redis server is started:
vps13495 src # ./redis-cli*
redis 127.0.0.1:6379> ping
PONG
redis 127.0.0.1:6379> exit
But when I try to configure my php in the /usr/local/lib64/php53/php.ini file by replacing with the directive:
session.save_handler = files
by the directive:
session.save_handler = redis
and I restart Apache, an http request is replied with a:
HTTP Error 500 (Internal Server Error)
Same thing if I add the directive:
session.save_path = "tcp://vpsXXXXX.ovh.net:6379?weight=1"
Same thing if I add the directive:
session.save_path = "tcp://localhost:6379"
My php log shows:
Error message: session_start() [function.session-start]: Cannot find save handler 'redis' - session startup failed
Any clue ?

