php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #47274 Zipfile get corrupted.
Submitted: 2009-02-02 10:36 UTC Modified: 2009-02-02 10:42 UTC
From: wolfgang dot forstmeier at gmail dot com Assigned: pajoye (profile)
Status: Not a bug Package: Zip Related
PHP Version: 5.2.8 OS: Windows XP
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: wolfgang dot forstmeier at gmail dot com
New email:
PHP Version: OS:

 

 [2009-02-02 10:36 UTC] wolfgang dot forstmeier at gmail dot com
Description:
------------
As described in Bug # 39506 Zip packaged generated through Apache get damaged. Creating Zip packages on CLI does work proper.

This bug seems to be introduced within 5.2.8, 5.2.6 is also working proper.

Reproduce code:
---------------
<?php
$zip = new ZipArchive;
$res = $zip->open( 'test.zip', ZipArchive::CREATE );
if ($res === TRUE) {
   $zip->addFile( 'TestDoc1.txt', 'entryname1.txt' );
   $zip->close();
   echo 'ok';
} else {
   echo 'failed';
  }
?>


Expected result:
----------------
Readable Zip Archive

Actual result:
--------------
Zip Archive could not be read with WinZip.
Zip file is currently larger created with Apache than with CLI.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-02-02 10:42 UTC] pajoye@php.net
Duplicated, see #46985

Already fixed.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 09:01:30 2025 UTC