Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incremental Backups / Versioned backups using PHP

Tags:

php

backup

I'm trying to backup a folder containing several folders and files to a remote location (will be uploading zipped files). Is there any existing scripts that may help me, which checks if the files have been modified after the date of the last backup, and only backs up files created / modified after that?

The current size of the data is around 1gb, and I expect adding 50mb-200mb each month

Also, what would be the best way to extract the state of the files on a specific date?

like image 814
Dogbert Avatar asked Jan 21 '23 22:01

Dogbert


1 Answers

incremental backup script using php:

http://web4u.mirrors.phpclasses.org/package/4841-PHP-Manage-backup-copies-of-files-.html

like image 61
ftrotter Avatar answered Jan 30 '23 00:01

ftrotter