This page isn’t working 34.220.46.218 is currently unable to handle this request. HTTP ERROR 500
I am getting this message when i submit a form for download zip in "wordpress".Can anyone help me to fix it.
$zip=new ZipArchive();
$tmp_file=tempnam('.','');
$zip->open($tmp_file, ZipArchive::CREATE);
foreach($file_names as $file){
$download_file=file_get_contents($file);
$zip->addFromString(basename($file),$download_file);
}
$zip->close();
header('Content-disposition: attachment;filename=Resumes.zip');
header('Content-type:application/zip');
readfile($tmp_file);
Comments
Post a Comment