filemanager da compress özelliği yoksa backup ile komple yedek alabilirsin veya bir php script yazarsın

$folder="path/";
$output="compressed.zip";
$zip = new ZipArchive();
 
if ($zip->open($output, ZIPARCHIVE::CREATE) !== TRUE) {
    die ("Unable to open Archirve");
}
 
$all= new RecursiveIteratorIterator(new RecursiveDirectoryIterator($folder));
 
foreach ($all as $f=>$value) {
$zip->addFile(realpath($f), $f) or die ("ERROR: Unable to add file: $f");
}
$zip->close();
echo "Compressed Successfully";
?>
şöyle birşey buldum deneyebilirsin