Hi!
$tarexec = "tar -c -f $tarfile $dir;";
$gzexec = "gzip -$gzcompress $tarfile;";
print "creating $tarfile\n";
print "executing $tarexec\n";
system($tarexec); # error!!!!
Ach error? Sagst Du uns auch, welcher?
Anmerkung: wenn es sich beim Server um eine halbwegs neue Linux-Version handelt, dann geht sicher aus
tar -czf $tarfile $dir
Zur Ergaenzung, weil das imho nicht so rauskommt: Die -z Option sorgt dafuer, dass gzip automatisch von tar aufgerufen wird, sodass gleich ein .gz Datei rauskommt.
So long