Jump to content

carl^

Retired Forum Member
  • Posts

    3
  • Joined

  • Last visited

Everything posted by carl^

  1. WHMCS replied to a ticket: > However there are some issues in version 8.0.4 that can cause it to not function as expected, that have since been resolved in version 8.1.0 and updating should resolve this going forward.
  2. This causes quite a bit of performance overhead, we see up-to a dozen MySQL inserts per second, check yours: ``` MariaDB [whmcs]> select (select created_at from tblerrorlog order by created_at desc limit 1) as start, (select created_at from tblerrorlog order by created_at asc limit 1) as end, (select created_at from tblerrorlog order by created_at desc limit 1)-(select created_at from tblerrorlog order by created_at asc limit 1) as seconds, (select count(*) from tblerrorlog) as totalrows; +---------------------+---------------------+---------+-----------+ | start | end | seconds | totalrows | +---------------------+---------------------+---------+-----------+ | 2020-12-30 09:54:32 | 2020-12-30 09:38:33 | 1599 | 14005 | +---------------------+---------------------+---------+-----------+ 1 row in set (0.02 sec) ```
  3. We're seeing a lot of these too, there really needs to be a way to control what is logged as buggy modules cause performance issues.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated