My site will not let me past the login page. It gives and error of
This page isn’t working
www.tnfiretraining.com is currently unable to handle this request.
?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = 'mysqli'; $CFG->dblibrary = 'native'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'db_moodle'; $CFG->dbuser = 'db_user'; $CFG->dbpass = 'password'; $CFG->prefix = 'mdl_'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbsocket' => 0, ); $CFG->wwwroot = 'https://www.mysite.com/moodle'; $CFG->dataroot = '/home4/db/moodledata'; $CFG->dirroot = '/home4/db/public_html/moodle'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0755; require_once(dirname(__FILE__) . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems!