|
Posted by shimmyshack on 05/13/07 20:56
On May 13, 2:48 pm, mrwheel <henrik.larse...@gmail.com> wrote:
> Hello
>
> I am seeking after a backup script, to take backup of my webspace on
> my server, my server iswww.servage.neti need to take backup 2 times
> per day. Via cronjob onwww.cronjob.debut i have seeking i 2 days
> without reslut.
>
> Where can i find some webspace / serverspace backup scripts?
>
> Kind redgards
> Henrik
what control have you got over the server. Any large backup will take
CPU time, and memory. If you had cron access I would suggest using
zip.
You might be able to find out what functions are on your system, and
use on of them to recursively zip up a website.
for instance try
<?php
$files = file_get_contents('tobezipped.txt');
system('minizip -o -9 pdfs.zip '.$files);
exit();
?>
where tobezipped.txt is a space separated list of double quoted files.
[Back to original message]
|