You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
nhoobin
changed the title
Session handle checking for memcached uses memcache functions.
Session handler checking for memcached uses memcache functions.
Jun 20, 2017
When checking the status of the session handler, it is hard coded to use '\core\session\memcached'.
moodle-tool_heartbeat/index.php
Line 111 in fa97887
During the actual check, it uses a function 'memcache_connect()' which belongs to the php module 'memcache'.
moodle-tool_heartbeat/index.php
Line 117 in fa97887
If the server is not using the memcache extension a fatal error will be thrown.
Additionally the Moodle error handling has changed with PHP7 https://docs.moodle.org/dev/Moodle_and_PHP7#Exception_and_Throwable and diagnosing that there is an issue with the previous code will return a HTTP status code 500.
The text was updated successfully, but these errors were encountered: