You are not logged in.
Pages: 1
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
Last edited by carlos_tw (2020-08-31 21:23:25)
Offline
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
Pages: 1