Jump to content

PHP ZIP wont show files in windows zip


shocker-z

Recommended Posts

Hi all,

 

I'm having an issue at the moment where im putting upto 30 files into a zip file using PHP, this works great (currently only 1 or 2 files) when opening the zip with winrar or winzip but when i try opening with windows XP built in zip archive viewer no files are shown. when clicking extract it comes up saying "Windows has blocked access to these files to help protect your computer."

 

regards

Liam

Link to comment
Share on other sites

Here's my code

 

  $zip = new ZipArchive();
  $filename = 'E:/liam/bksbvalidation/bksb_results.zip';
  if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
    exit("cannot open <$filename>\n");
  }
addFile('E:/Liam/keyskillbuilder/trials/bksb Initial Assessment/Results/HTML/'.$result, 'Initial assessment result '.date("jS M Y G:i", filemtime("E:/Liam/keyskillbuilder/trials/bksb Initial Assessment/Results/HTML/$result")).'.html');
  $zip->close();

 

As i say above the file is added but just wont show with windows built in zip viewer.

 

Please see the zip file attached

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.