I didn't put any filters. In version 1.10.4 (5) works successfully (I would like to use the version with queues).

Tickets don't get in line. By the way, the numbering clearly fails.

Set DEBUG level and got errors in the logs.

System Events
=-=-=-=-=-=-=
Feb 20 13:06:34 ost apache2: PHP Warning: array_key_exists() expects parameter 2 to be array, boolean given in /var/www/html/osticket/upload/include/class.translation.php on line 419
Feb 20 13:06:34 ost apache2: PHP Warning: include(): Failed opening '' for inclusion (include_path='./:/var/www/html/osticket/upload/include/:/var/www/html/osticket/upload/include/pear/') in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:06:34 ost apache2: PHP Warning: include(): Filename cannot be empty in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:06:38 ost apache2: PHP Warning: array_key_exists() expects parameter 2 to be array, boolean given in /var/www/html/osticket/upload/include/class.translation.php on line 419
Feb 20 13:06:38 ost apache2: PHP Warning: include(): Failed opening '' for inclusion (include_path='./:/var/www/html/osticket/upload/include/:/var/www/html/osticket/upload/include/pear/') in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:06:38 ost apache2: PHP Warning: include(): Filename cannot be empty in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:07:31 ost apache2: PHP Warning: array_key_exists() expects parameter 2 to be array, boolean given in /var/www/html/osticket/upload/include/class.translation.php on line 419
Feb 20 13:07:31 ost apache2: PHP Warning: include(): Failed opening '' for inclusion (include_path='./:/var/www/html/osticket/upload/include/:/var/www/html/osticket/upload/include/pear/') in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:07:31 ost apache2: PHP Warning: include(): Filename cannot be empty in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:07:42 ost apache2: PHP Warning: array_key_exists() expects parameter 2 to be array, boolean given in /var/www/html/osticket/upload/include/class.translation.php on line 419
Feb 20 13:07:42 ost apache2: PHP Warning: include(): Failed opening '' for inclusion (include_path='./:/var/www/html/osticket/upload/include/:/var/www/html/osticket/upload/include/pear/') in /var/www/html/osticket/upload/include/class.translation.php on line 565
Feb 20 13:07:42 ost apache2: PHP Warning: include(): Filename cannot be empty in /var/www/html/osticket/upload/include/class.translation.php on line 565
  • RBGE replied to this.

    Trying this solution: https://github.com/osTicket/osTicket/issues/4720
    Great, that helped. It worked!

    --- a/include/class.search.php
    +++ b/include/class.search.php
    @@ -960,7 +960,7 @@ class SavedQueue extends CustomQueue {
         }
    
     static function clearCounts() {
    -        if (function_exists('apcu_store')) {
    +        if (PHP_SAPI !== 'cli' && function_exists('apcu_store')) {
                 if (class_exists('APCUIterator')) {
                     $regex = '/^counts.queues.\d+.' . preg_quote(SECRET_SALT, '/') . '$/';
                     foreach (new APCUIterator($regex, APC_ITER_KEY) as $key) {
    
    yaigor changed the title to [Done] No new tickets are created from email.
    Write a Reply...