ZipArchive can not extract files when i download a zip file from a linux server. when I extract files manually and compress them again in windows, then there is no problem.

it seem that could be a problem with line ending in linux and windows zip files.

$zip = new ZipArchive;
$zip->open('test.zip'); // zip file has been download from a linux server
$zip->extractTo('./');
$zip->close();

any suggestion ?

link|improve this question

57% accept rate
1  
What does it mean "ZipArchive can not extract files"? What kind of error do you receive? – powtac Mar 7 '11 at 12:21
Zip files are binary, so they have nothing to do with newlines. Show us the relevant code, we can't help without it. – Maerlyn Mar 7 '11 at 12:22
Nothing will happen and i don't get any error. i just download a zip file from server and trying to extracting it so simple but no file will extract. – Omid Amraei Mar 7 '11 at 12:29
Add error_reporting(-1); ini_set('display_errors', 1); as first line to your script and try again. – powtac Mar 7 '11 at 12:44
Where do the zips come from? Are they static, or get generated? Enable display_errors, an error message would definitely help. – Maerlyn Mar 7 '11 at 12:45
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.