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
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
For PHP 4:
For PHP 5:PHP Code:if (function_exists ("zip_open")) echo "Zip is installed";
PHP Code:if (class_exists ("ZipArchive")) echo "Zip is installed";
The PHP 5 code returns false, so Bluehost must not have them enabled.