UNA Auto-report-system reports Database error

Hi you coding nerds and database divers! 😁 

My self-hosted UNA plattform reports a database error and I'm not sure about what to do now. Maybe one of you expert programmers and db specialists could have a look on it (full error message in a pm) and can tell me, if its severe and how to handle it?

Here's the error message:

Database error in gruendungs.team Community

Query:
 SELECT `tmo`.`value` AS `value` FROM `sys_options_mixes2options` AS `tmo` INNER JOIN `sys_options_mixes` AS `tm` ON `tmo`.`mix_id`=`tm`.`id` AND `tm`.`active`='1' WHERE `tmo`.`option`=? LIMIT 1

Mysql error:
 Query execution was interrupted, maximum statement execution time exceeded

Thx in advance for your help!

thomlin

  • 555
  • More
Replies (2)
    • By default, the maximum execution time for PHP scripts is set to 30 seconds. If a script runs for longer than 30 seconds, PHP stops the script and reports an error. You can control the amount of time PHP allows scripts to run by changing the max_execution_time directive in your php.ini file.

      To change the maximum execution time, use a text editor to modify the max_execution_time directive in your php.ini file. For example, to set the maximum execution time to 300 seconds (5 Minutes), use the following setting:

      max_execution_time = 300

        Login or Join to comment.