You are not logged in.

Announcement

 Téléchargez la dernière version stable de GLPI      -     Et vous, que pouvez vous faire pour le projet GLPI ? :  Contribuer
 Download last stable version of GLPI                      -     What can you do for GLPI ? :  Contribute

#1 2020-08-31 19:18:59

carlos_tw
Member
Registered: 2020-08-31
Posts: 2

Problema com Dashboards - Resolvido

Boa tarde!

Atualizei a versão do GLPI (da 9.3 para 9.5) que utilizo e me deparei com estes erros, alguém tem alguma dica ?

Uncaught Exception Laminas\Cache\Psr\SimpleCache\SimpleCacheException: apcu_store('glpi_cache_db_9.5.0e6c9e72f63e2ff2eb817327ea4df352e:4ea1e7d9c28c082ef976b674e33e892cf9809c85', , 40) failed in /var/www/dynvhost/glpi.xxx.xxx/htdocs/vendor/laminas/laminas-cache/src/Psr/SimpleCache/SimpleCacheDecorator.php at line 307

Obs.: apcu extension is installed
GLPI 9.5.0
PHP 7.2.32
Apache/2.4.6 (CentOS)

Já limpei o cache do GLPI.
Permissões das pastas estão corretas


erro

Last edited by carlos_tw (2020-08-31 21:23:25)

Offline

#2 2020-08-31 20:10:30

carlos_tw
Member
Registered: 2020-08-31
Posts: 2

Re: Problema com Dashboards - Resolvido

Resolvido temporariamente.
Irei atualizar para a versão 9.5.1 e verificar se o problema continua.


Solução temporária:
Alterado o arquivo
glpi/htdocs/vendor/laminas/laminas-cache/src/Psr/SimpleCache/SimpleCacheDecorator.php

linha 121

De:
        try {
            $result = $this->storage->setItem($key, $value);
        } catch (Throwable $e) {
           throw static::translateException($e);
        } catch (Exception $e) {
           throw static::translateException($e);
        } finally {
            $options->setTtl($previousTtl);
        }

Para:

    $result = '';

        try {
            $result = $this->storage->setItem($key, $value);
        } catch (Throwable $e) {
            // throw static::translateException($e);
        } catch (Exception $e) {
            // throw static::translateException($e);
        } finally {
            $options->setTtl($previousTtl);
        }

Offline

Board footer

Powered by FluxBB