New Moodle Install - Cant Access

Re: New Moodle Install - Cant Access

by Leon Stringer -
Number of replies: 0
Picture of Core developers Picture of Particularly helpful Moodlers

In the first instance I'd suggest enabling debugging by adding these lines to config.php:

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

These need to come before the require_once(__DIR__ . '/lib/setup.php'); line at the end.

Then try logging in again and see if there's any error message on screen or in your web server's error log.