dreamwest Posted May 13, 2009 Share Posted May 13, 2009 how can i zip a file on my server? http://site.com/files/photo.jpg after zipped http://site.com/files/photo.zip Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/ Share on other sites More sharing options...
trq Posted May 13, 2009 Share Posted May 13, 2009 zip. Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833095 Share on other sites More sharing options...
dreamwest Posted May 13, 2009 Author Share Posted May 13, 2009 I searched on php.net for half an hour for this. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833096 Share on other sites More sharing options...
trq Posted May 13, 2009 Share Posted May 13, 2009 I searched on php.net for half an hour for this. Thanks You are kidding right? Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833097 Share on other sites More sharing options...
dreamwest Posted May 13, 2009 Author Share Posted May 13, 2009 no im really that crap at finding stuff on there I cant understand how i can get a plain file added to an archive. This also get me a fatal error: Fatal error: Class 'ZipArchive' not found in $zip = new ZipArchive; if ($zip->open('test.zip') === TRUE) { $zip->addFile('/path/to/index.txt', 'newname.txt'); $zip->close(); echo 'ok'; } else { echo 'failed'; } Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833103 Share on other sites More sharing options...
trq Posted May 13, 2009 Share Posted May 13, 2009 But the function reference is broken into sections. eg; zip obviously falls under 'Compression and Archive Extensions'. On top of that, if you know the name of a function you want to look up you can simply append it to the address. eg; http://php.net/functionname The first thing I do when learning any programming language is learn how the manual works. Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833106 Share on other sites More sharing options...
trq Posted May 13, 2009 Share Posted May 13, 2009 This also get me a fatal error: Fatal error: Class 'ZipArchive' not found in Did you view the 'Installation' section? Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833109 Share on other sites More sharing options...
dreamwest Posted May 13, 2009 Author Share Posted May 13, 2009 But the function reference is broken into sections. eg; zip obviously falls under 'Compression and Archive Extensions'. On top of that, if you know the name of a function you want to look up you can simply append it to the address. eg; http://php.net/functionname The first thing I do when learning any programming language is learn how the manual works. Thats where my problem is, i dont know what im searching for to begin with. For this i searched for "Create zip file" results were http://au.php.net/manual-lookup.php?pattern=create+zip+file and a few other search queries Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833112 Share on other sites More sharing options...
trq Posted May 13, 2009 Share Posted May 13, 2009 Simply searching zip would have gotten you a better result. Its not google. Quote Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833113 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.