I have a program that unzips uploaded archives. it uses unzip.lib.php..
Great for PC created zips but on MAC created zips it doesn't know what to do.. I don't either.. Does anyone know anything about this??
thanks
Laurus
a zip file is a zip file regardless of what OS it's been made on. if it was made on a Mac and doesn't work it's probably another format or uses a compression algorythm not yet supported by php. try using mime_content_type() on the incoming file. If it's something other than application/x-zip it's not a zip file.