مطالب مطرح شده توسط Howard Miller

عکس Core developers عکس Documentation writers عکس Particularly helpful Moodlers عکس Peer reviewers عکس Plugin developers
At the very least, we need to know the Moodle version and you'll need to enable Debugging (in your case, in your config.php file.
عکس Core developers عکس Documentation writers عکس Particularly helpful Moodlers عکس Peer reviewers عکس Plugin developers
This is my understanding / experience...

- If you set up Redis as the session handler in config.php, then your session data is stored in Redis. It does not use PHP's native sessions which would be stored in a 'sessions' folder. That folder is not created. Nor will sessions be stored in the database (e.g. MySQL).

- There is no such this as 'caching' sessions. The MUC/Cache has a 'session cache' but that just means caches that have a lifetime of the session. Nothing to do with 'Sessions'. If you see what I mean.

- Returning to the (e.g. MySQL) database, there is a 'sessions' table and this gets populated with the session id, userid and IP address for each user (presumably it's needed for something). However, it does NOT store the sessions if Redis is used. You should find that the 'sessdata' field is NULL.