This is a "process" question...
I am building a site for a client who has some fixed ideas of how things should be, so I'd like any comments on the following:
1) he wants it backed up every hour
- I suggested it might work to do a single 24 hour backup and add to that a duplicate database so all updates/inserts etc are mirrored onto another server-
any advice?
2) there is a function where logged-in third parties can upload a text file for later processing - this is so they dont have to sit and wait while the processing happens
the process will be checking information on an external dataset, with multiple entries (perhaps a few hundred) which returns a fairly simple set of results - the results are shown to the user separately, with an emailed summary
it could possibly take a few minutes to process and it seems to me less trouble to do it at the time
is there a method to do something like this in the background?
otherwise I'll need to allow them to set pseudo arbitrary times for cron to trigger the process - which sounds a pita
(it would have to be be a fudged 'arbitrary' so maybe choose the hour only, then the cron checks if there is a file waiting for that time and if so triggers the process)
thanks for all and any advice !