I have an update query being run by a cron task that\'s timing out. The query takes, on average, five minutes to execute when executed in navicat.
The code looks ro
I had the same problem somwhere, and "solved" it with the following code (first two lines of my file):
set_time_limit(0); ignore_user_abort(1);