![]() |
Redis Session Driver Setup - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: Redis Session Driver Setup (/showthread.php?tid=86134) |
Redis Session Driver Setup - rmartin93 - 01-13-2023 I'm trying to get the Redis Session drivers setup, but they don't seem to be working. I get the error: NOAUH Authentication Required. Here's the relevant code from Cache.php PHP Code: public $redis = [ PHP Code: public $sessionSavePath = "same as host in Cache.php"; BTW, I'm doing this on my local machine right now just to test whether or not I can connect before going into production. Maybe it will only connect in a production environment?? I don't know, that's why I'm here. RE: Redis Session Driver Setup - kenjis - 01-13-2023 Config/Cache.php is the config file for Cache. It does not used in Session at all. See https://codeigniter4.github.io/CodeIgniter4/libraries/sessions.html#redishandler-driver |