Session handler is misconfigured

Session handler is misconfigured

by Simon Turp -
Number of replies: 1

Hi,


I recently migrated to a new server and am getting this error, can anyone please help?


Running PHP 7.3, moodle version 3.8.3


Session handler is misconfigured

Average of ratings: -
In reply to Simon Turp

Re: Session handler is misconfigured

by Leon Stringer -
Picture of Core developers Picture of Particularly helpful Moodlers

Enable debugging in config.php by adding the following lines:

@error_reporting(E_ALL | E_STRICT);
@ini_set('display_errors', '1');
$CFG->debug = (E_ALL | E_STRICT);
$CFG->debugdisplay = 1;

Hopefully that will provide more details.