Backup Manager feedback

Talk about anything in here.
Post Reply
ScTech
Posts: 92
Joined: Sat Aug 24, 2013 8:40 pm

Backup Manager feedback

Post by ScTech »

Hi. It's always nice to have feedback, so I would like to ask a few questions for anyone willing to answer :)

Background info: I am making an open source backup manager that does not require shell access. This is especially important to those users who are on subdomain hosting and can not use shell because, well, any smart host wouldn't. Because this script does not require shell access, the cron job backup ability is run through http://setcronjob.com to a page with GET variables to process the backup. Currently there are options to backup all public_html files, backup MySQL tables, backup a specific folder, and backup a specific file. Most importantly, an access password is required for authentication. My questions are:

1. Should I remove the specific file backup option? I mean... anyone can backup a file easily by copying its contents. Also, it seems pointless to create a zip file for one file inside, but if it's something that you would like, I can go with it.

2. Should I create an option to backup public_html files and MySQL tables in one process? This can get very lengthy depending on connection and size of the required backup. A sub question: Should I create a JQuery loading message telling the user to wait or something? In my opinion, it's a lot better than seeing a blank screen for 30+ seconds.

3. Should I create a backup specific MySQL table option? I'm debating on this one honestly. Seems smarter to backup all while at it, but you never know the circumstance the user wants.
<?php while(!$succeed = try()); ?>
User avatar
Temor
Posts: 1186
Joined: Thu May 05, 2011 8:04 pm

Re: Backup Manager feedback

Post by Temor »

I do agree with you it seems pointless to backup a specific file.
Folders are ok, but single files isn't necessary.

I do believe you should go with both a Full backup option, and an option where you can choose specific tables and folders.

I also do like jQuery loading screens. Some people tend to start clicking buttons again if they only see a blank screen.


I believe flexibility is key. The user wants as many options as possible, brought to them in as neat a package as possible.
ScTech
Posts: 92
Joined: Sat Aug 24, 2013 8:40 pm

Re: Backup Manager feedback

Post by ScTech »

Thanks for the feedback. I figured that would be the case with single files. Now to go attempt to add JQuery without breaking it...
<?php while(!$succeed = try()); ?>
User avatar
Temor
Posts: 1186
Joined: Thu May 05, 2011 8:04 pm

Re: Backup Manager feedback

Post by Temor »

Oh, it will break.
But I'm quoting you:
[syntax=php]<?php while(!$succeed = try()); ?>[/syntax]
ScTech
Posts: 92
Joined: Sat Aug 24, 2013 8:40 pm

Re: Backup Manager feedback

Post by ScTech »

Lol thanks. Yea I went a bit overboard with the JQuery and forgot to add noscript
<?php while(!$succeed = try()); ?>
Post Reply