CONNECT ERROR: as extensões PHP “zlib” devem ser carregadas

1

Enquanto o Magento instala o Extension e os temas e também tenta fazer upload, eu estou recebendo

CONNECT ERROR: PHP Extensions "zlib" must be loaded.

Eu tentei instalar o zlib de lá link

O

zlib é insalled no My Ubuntu

TambémativadoecarregadoemPHP

    
por Puzzled Boy 06.11.2015 / 13:37

1 resposta

0

Solução:

Vá para downloader/lib/Mage/Archive/Helper/File/ em seu diretório Magento

e edite o arquivo Gz.php . Você precisa substituir:

if (!function_exists('gzopen')) {

com

if (!function_exists('gzopen64')) {

e também:

"$this->_fileHandler = @gzopen($this->_filePath, $mode);"

com

"$this->_fileHandler = @gzopen64($this->_filePath, $mode);”
    
por LandonL 16.11.2015 / 22:08