magebash Posted July 18, 2008 Share Posted July 18, 2008 Ok I get this error: Fatal error: Class 'ZipArchive' not found in /home/www/possal.freehostia.com/backup.php on line 3 When I use this code from php.net: <?php $zip = new ZipArchive(); $filename = "backup.zip"; if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) { exit("cannot open <$filename>\n"); } $zip->addFromString("testfilephp.txt" . time(), "#1 This is a test string added as testfilephp.txt.\n"); $zip->addFromString("testfilephp2.txt" . time(), "#2 This is a test string added as testfilephp2.txt.\n"); $zip->addFile($thisdir . "/too.php","/testfromfile.php"); echo "numfiles: " . $zip->numFiles . "\n"; echo "status:" . $zip->status . "\n"; $zip->close(); ?> Just experimenting right now... Link to comment https://forums.phpfreaks.com/topic/115530-solved-zip-issue/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.