On Wed, Jun 25, 2014 at 11:36 AM, Jay Shah <[email protected]> wrote:

> I suspect the problem is the ZipArchive class, however, the 1.8.9 App
> Engine release notes
> <https://code.google.com/p/googleappengine/wiki/SdkReleaseNotes> indicate
> that the zip extension is now supported.
>
>   function CompressFile($inputFilePath, $ZipArchivePath,
>  $fileNameinArchive)
>     {  $zip = new ZipArchive();$zip->open($ZipArchivePath,  ZipArchive::
> CREATE);
>     $zip->addFile($inputFilePath, $fileNameinArchive);$zip->close();  }
> Any suggestions?
>



Can you call error_get_last
<http://www.php.net/manual/en/function.error-get-last.php> and see what the
last recorded error is?


-----------------
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.

Reply via email to