|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-11-26 20:14 UTC] mauroi at digbang dot com
Description: ------------ I have the following statements in my php.ini : mbstring.language=Neutral mbstring.encoding_translation=On mbstring.internal_encoding=UTF-8 mbstring.http_input=UTF-8 mbstring.http_output=pass mbstring.detect_order=auto mbstring.func_overload=6 mbstring.script_encoding=UTF-8 When I try to run go-pear.bat I get the error: "Warning: gzinflate(): data error in C:\Program Files\PHP5\PEAR\go-pear.phar on line 404 Notice: Undefined variable: size in C:\Program Files\PHP5\PEAR\go-pear.phar on l ine 407 Fatal error: Not valid gz file (size error != 0) in C:\Program Files\PHP5\PEAR\go-pear.phar on line 408". If I remove those php.ini lines everything works ok. Thanks. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
I think I'll opt for door #3 which is to insert: if (function_exists('mb_internal_encoding')) { mb_internal_encoding('ASCII'); } at the top of the .phar