Changes between Initial Version and Version 2 of Ticket #25061
- Timestamp:
- 08/17/2013 07:07:48 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25061
-
Property
Severity
changed from
normal
tomajor
-
Property
Milestone
changed from
Awaiting Review
to3.6.1
-
Property
Severity
changed from
-
Ticket #25061 – Description
initial v2 1 1 When downloading an update in the form of a zip file the update consistently fails with a failure to find the end of central dir record when unpack is attempted. For example: 2 2 {{{ 3 3 Downloading update from http://downloads.wordpress.org/plugin/addthis.3.5.1.zip… 4 4 … … 6 6 7 7 The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature 8 8 }}} 9 9 The download is using curl. 10 10 11 11 To reproduce add the following to PHP configuration: 12 12 {{{ 13 13 mbstring.func_overload = 2; 14 14 }}} 15 15 which enables str*() function overloading. 16 16