#39784 [NEW]: Can't make an instance of ZipArchive

Ask a Question related to PHP Bugs, Design and Development.

  1. #1

    Default #39784 [NEW]: Can't make an instance of ZipArchive

    From: itsmegawtf at gmail dot com
    Operating system: Gentoo linux
    PHP version: 5.2.0
    PHP Bug Type: Zip Related
    Bug description: Can't make an instance of ZipArchive

    Description:
    ------------
    Can't make an instance of ZipArchive

    Reproduce code:
    ---------------
    <?php

    $zip_handle = new ZipArchive();

    if($zip_handle->open('sample.zip')) {

    $zip_handle->extractTo('test');
    $zip_handle->close();

    }

    ?>


    Expected result:
    ----------------
    archive must be extracted

    Actual result:
    --------------
    Fatal error: Trying to clone an uncloneable object of class ZipArchive in
    Command line code on line 1


    --
    Edit bug report at [url]http://bugs.php.net/?id=39784&edit=1[/url]
    --
    Try a CVS snapshot (PHP 4.4): [url]http://bugs.php.net/fix.php?id=39784&r=trysnapshot44[/url]
    Try a CVS snapshot (PHP 5.2): [url]http://bugs.php.net/fix.php?id=39784&r=trysnapshot52[/url]
    Try a CVS snapshot (PHP 6.0): [url]http://bugs.php.net/fix.php?id=39784&r=trysnapshot60[/url]
    Fixed in CVS: [url]http://bugs.php.net/fix.php?id=39784&r=fixedcvs[/url]
    Fixed in release: [url]http://bugs.php.net/fix.php?id=39784&r=alreadyfixed[/url]
    Need backtrace: [url]http://bugs.php.net/fix.php?id=39784&r=needtrace[/url]
    Need Reproduce Script: [url]http://bugs.php.net/fix.php?id=39784&r=needscript[/url]
    Try newer version: [url]http://bugs.php.net/fix.php?id=39784&r=oldversion[/url]
    Not developer issue: [url]http://bugs.php.net/fix.php?id=39784&r=support[/url]
    Expected behavior: [url]http://bugs.php.net/fix.php?id=39784&r=notwrong[/url]
    Not enough info: [url]http://bugs.php.net/fix.php?id=39784&r=notenoughinfo[/url]
    Submitted twice: [url]http://bugs.php.net/fix.php?id=39784&r=submittedtwice[/url]
    register_globals: [url]http://bugs.php.net/fix.php?id=39784&r=globals[/url]
    PHP 3 support discontinued: [url]http://bugs.php.net/fix.php?id=39784&r=php3[/url]
    Daylight Savings: [url]http://bugs.php.net/fix.php?id=39784&r=dst[/url]
    IIS Stability: [url]http://bugs.php.net/fix.php?id=39784&r=isapi[/url]
    Install GNU Sed: [url]http://bugs.php.net/fix.php?id=39784&r=gnused[/url]
    Floating point limitations: [url]http://bugs.php.net/fix.php?id=39784&r=float[/url]
    No Zend Extensions: [url]http://bugs.php.net/fix.php?id=39784&r=nozend[/url]
    MySQL Configuration Error: [url]http://bugs.php.net/fix.php?id=39784&r=mysqlcfg[/url]
    itsmegawtf at gmail dot com Guest

  2. Similar Questions and Discussions

    1. #40494 [NEW]: Memory problem with ZipArchive::addFile()
      From: foster dot graeme at gmail dot com Operating system: Linux PHP version: 5.2.1 PHP Bug Type: Zip Related Bug...
    2. #39742 [NEW]: Class 'ZipArchive' not found
      From: eric dot leseint at ac-poitiers dot fr Operating system: Windows 2003 server PHP version: 5.2.0 PHP Bug Type: ...
    3. #39506 [NEW]: Archive corrupt with ZipArchive::addFile method
      From: hscheidegger at zumbach dot ch Operating system: Windows XP PHP version: 5.2.0 PHP Bug Type: Zip Related Bug...
    4. #38944 [NEW]: ZipArchive exits with SEGV
      From: judas dot iscariote at gmail dot com Operating system: linux PHP version: 5CVS-2006-09-25 (CVS) PHP Bug Type: Zip...
    5. #38943 [NEW]: serious misbehaviour extending ZipArchive class
      From: judas dot iscariote at gmail dot com Operating system: Linux PHP version: 5CVS-2006-09-24 (CVS) PHP Bug Type: Zip...
  3. #2

    Default #39784 [Com]: Can't make an instance of ZipArchive

    ID: 39784
    Comment by: judas dot iscariote at gmail dot com
    Reported By: itsmegawtf at gmail dot com
    Status: Open
    Bug Type: Zip Related
    Operating System: Gentoo linux
    PHP Version: 5.2.0
    New Comment:

    You need to disable zend.ze1_compatibility_mode.

    Pierre: can the engine disable it at runtime I guess right ?


    Previous Comments:
    ------------------------------------------------------------------------

    [2006-12-09 20:39:16] itsmegawtf at gmail dot com

    Description:
    ------------
    Can't make an instance of ZipArchive

    Reproduce code:
    ---------------
    <?php

    $zip_handle = new ZipArchive();

    if($zip_handle->open('sample.zip')) {

    $zip_handle->extractTo('test');
    $zip_handle->close();

    }

    ?>


    Expected result:
    ----------------
    archive must be extracted

    Actual result:
    --------------
    Fatal error: Trying to clone an uncloneable object of class ZipArchive
    in Command line code on line 1



    ------------------------------------------------------------------------


    --
    Edit this bug report at [url]http://bugs.php.net/?id=39784&edit=1[/url]
    judas dot iscariote at gmail dot com Guest

  4. #3

    Default #39784 [Opn]: Can't make an instance of ZipArchive

    ID: 39784
    User updated by: itsmegawtf at gmail dot com
    Reported By: itsmegawtf at gmail dot com
    Status: Open
    Bug Type: Zip Related
    Operating System: Gentoo linux
    PHP Version: 5.2.0
    New Comment:

    yes, you was right, thx.
    this bug can be closed.


    Previous Comments:
    ------------------------------------------------------------------------

    [2006-12-09 23:39:31] judas dot iscariote at gmail dot com

    You need to disable zend.ze1_compatibility_mode.

    Pierre: can the engine disable it at runtime I guess right ?

    ------------------------------------------------------------------------

    [2006-12-09 20:39:16] itsmegawtf at gmail dot com

    Description:
    ------------
    Can't make an instance of ZipArchive

    Reproduce code:
    ---------------
    <?php

    $zip_handle = new ZipArchive();

    if($zip_handle->open('sample.zip')) {

    $zip_handle->extractTo('test');
    $zip_handle->close();

    }

    ?>


    Expected result:
    ----------------
    archive must be extracted

    Actual result:
    --------------
    Fatal error: Trying to clone an uncloneable object of class ZipArchive
    in Command line code on line 1



    ------------------------------------------------------------------------


    --
    Edit this bug report at [url]http://bugs.php.net/?id=39784&edit=1[/url]
    itsmegawtf at gmail dot com Guest

  5. #4

    Default #39784 [Opn->Csd]: Can't make an instance of ZipArchive

    ID: 39784
    Updated by: [email]tony2001@php.net[/email]
    Reported By: itsmegawtf at gmail dot com
    -Status: Open
    +Status: Closed
    Bug Type: Zip Related
    Operating System: Gentoo linux
    PHP Version: 5.2.0


    Previous Comments:
    ------------------------------------------------------------------------

    [2006-12-10 08:47:26] itsmegawtf at gmail dot com

    yes, you was right, thx.
    this bug can be closed.

    ------------------------------------------------------------------------

    [2006-12-09 23:39:31] judas dot iscariote at gmail dot com

    You need to disable zend.ze1_compatibility_mode.

    Pierre: can the engine disable it at runtime I guess right ?

    ------------------------------------------------------------------------

    [2006-12-09 20:39:16] itsmegawtf at gmail dot com

    Description:
    ------------
    Can't make an instance of ZipArchive

    Reproduce code:
    ---------------
    <?php

    $zip_handle = new ZipArchive();

    if($zip_handle->open('sample.zip')) {

    $zip_handle->extractTo('test');
    $zip_handle->close();

    }

    ?>


    Expected result:
    ----------------
    archive must be extracted

    Actual result:
    --------------
    Fatal error: Trying to clone an uncloneable object of class ZipArchive
    in Command line code on line 1



    ------------------------------------------------------------------------


    --
    Edit this bug report at [url]http://bugs.php.net/?id=39784&edit=1[/url]
    tony2001@php.net Guest

  6. #5

    Default #39784 [Csd]: Can't make an instance of ZipArchive

    ID: 39784
    Updated by: [email]pajoye@php.net[/email]
    Reported By: itsmegawtf at gmail dot com
    Status: Closed
    Bug Type: Zip Related
    Operating System: Gentoo linux
    PHP Version: 5.2.0
    New Comment:

    "Pierre: can the engine disable it at runtime I guess right ?"

    I never used the ze1 compatibility mode. 5.1.x is required to use the
    new OO interface in Zip, do we really need hacks for that? I don't
    think :)


    Previous Comments:
    ------------------------------------------------------------------------

    [2006-12-10 08:47:26] itsmegawtf at gmail dot com

    yes, you was right, thx.
    this bug can be closed.

    ------------------------------------------------------------------------

    [2006-12-09 23:39:31] judas dot iscariote at gmail dot com

    You need to disable zend.ze1_compatibility_mode.

    Pierre: can the engine disable it at runtime I guess right ?

    ------------------------------------------------------------------------

    [2006-12-09 20:39:16] itsmegawtf at gmail dot com

    Description:
    ------------
    Can't make an instance of ZipArchive

    Reproduce code:
    ---------------
    <?php

    $zip_handle = new ZipArchive();

    if($zip_handle->open('sample.zip')) {

    $zip_handle->extractTo('test');
    $zip_handle->close();

    }

    ?>


    Expected result:
    ----------------
    archive must be extracted

    Actual result:
    --------------
    Fatal error: Trying to clone an uncloneable object of class ZipArchive
    in Command line code on line 1



    ------------------------------------------------------------------------


    --
    Edit this bug report at [url]http://bugs.php.net/?id=39784&edit=1[/url]
    pajoye@php.net Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139