Enabling Error Reporting in Moodle Updated on March 11, 2022 by InMotion Hosting Contributor 0 Minutes, 56 Seconds to Read When your Moodle stops working and you need to find out why, you can enable error reporting. A common reason for this is when the page comes up blank. Blank pages don’t show you what error is that causes the screen to go blank so you will need to enable errors in your Moodle config.php. There are different types of error reporting you can enable to see why your Moodle stopped working. For more information on displaying errors for PHP, please see our tutorial on Display and log errors for PHP. Steps to enable error reporting Login into your cPanel. Go to the File Manager. Select your Moodle directory and click Go. Edit the config.php file with the code editor. Paste the following code at the bottom of the page. ini_set ('display_errors', 'on'); ini_set ('log_errors', 'on'); ini_set ('display_startup_errors', 'on'); ini_set ('error_reporting', E_ALL); Save the file. Now visit your site where you are having the problem and you should see the errors display. The snapshot to the right shows what the PHP errors will look like.. Share this Article InMotion Hosting Contributor Content Writer InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals! More Articles by InMotion Hosting Related Articles How to install Moodle using Fantastico Installing Moodle with Softaculous How to Add Content Security Policy in Moodle With the Local CSP Plugin Inserting an image slider in Moodle Changing the Moodle admin password through PhpMyAdmin Fix “uploaded file may exceed the post_max_size directive in php.ini” How to Add the Quiz Module in Moodle Adding the File Resource Module to Moodle Courses Integrate Jitsi with Moodle Courses How to Install a Plugin in Moodle
Sorry it did not work for you. I recommend following the steps in the official Moodle documentation on how to enable PHP error logs.