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
https://forums.phpfreaks.com/topic/92073-php-zip-wont-show-files-in-windows-zip/
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

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.