skip to Main Content

I have tried to install Moodle 3.5.1 on my development server (Apache 2.4.29 and MySQL v.5.7).

The installation process went smoothly: The MySQL database has been set up, all required PHP packages are installed, the system has been successfully installed, all file permissions are correct.

After the installation I only get the following error:

"Coding error detected, it must be fixed by a programmer: PHP catchable fatal error"

There are no further error messages. There are no error messages in Apache Error log or PHP log files. In the PHP ini file the display of error messages is activated.

So I can not figure out what did not work or how to fix it.

2

Answers


  1. Put error_reporting(E_ALL); and ini_set('display_errors', 1); in the beggining of the script you see problem in for more debug info

    Login or Signup to reply.
  2. Moodle 3.5 requires PHP 7

    https://docs.moodle.org/35/en/PHP

    Could that be your problem?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search