Hallo
<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
$zip->addFile('/pfad/zur/datei.txt', 'neuername.txt');
$zip->close();
echo 'ok';
} else {
echo 'Fehler';
}
?>
Es kommt die Fehlermeldung:
Fatal error: Cannot instantiate non-existent class: ziparchive in /mnt/web6/12/12/5292012/htdocs/zip.php on line 3
Ist es möglich das der Provider Strato ein Modul nicht installiert hat, wenn ja, wo bekommt man so etwas?
MFG Jon