I had an issue while installing:
Timestamp columns in the database has not default value and they are not nullable.
To solve this replace all the occurrences of
TIMESTAMP NOT NULL,
with
TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
in file include\modules\files.php and in file include\modules\user.php
Additionally, I had to dig into the installation process and add a call to debug when needed, in this case on include\modules\files.php Ln: 2578, where was missing, and in the chain postRestart - createUser - onUserCreated
I had an issue while installing:
Timestamp columns in the database has not default value and they are not nullable.
To solve this replace all the occurrences of
TIMESTAMP NOT NULL,with
TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,in file include\modules\files.php and in file include\modules\user.php
Additionally, I had to dig into the installation process and add a call to
debugwhen needed, in this case on include\modules\files.php Ln: 2578, where was missing, and in the chain postRestart - createUser - onUserCreated