+ Reply to Thread
Results 1 to 3 of 3

Thread: ZipArchive

  1. #1
    Join Date
    May 2007
    Posts
    2

    Default ZipArchive

    Has anybody tried to use the ZipArchive classes built into PHP on Bluehost? Are these disabled? I haven't been able to get them to work.

    Thanks,
    Dalen

  2. #2
    Join Date
    Oct 2006
    Posts
    358

    Default

    For PHP 4:

    PHP Code:
    if (function_exists ("zip_open")) echo "Zip is installed"
    For PHP 5:

    PHP Code:
    if (class_exists ("ZipArchive")) echo "Zip is installed"

  3. #3
    Join Date
    May 2007
    Posts
    2

    Default

    The PHP 5 code returns false, so Bluehost must not have them enabled.

+ Reply to Thread

Posting Permissions

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