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 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. 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 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? 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'; } 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. 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? 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 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. Link to comment https://forums.phpfreaks.com/topic/157946-zip-a-file/#findComment-833113 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.