How do I backup multiple Movable Type blogs?
-
I have four blogs on one Movable Type installation. I'd like to set up a system to make backups of all my entries and templates in one click. [More inside...] The manual process is to go into each blog in a browser, click Export Entries, then connect to my FTP server and download each of the 4 folders that contain my "external" template files. There are two solutions that I've thought of already. One, a complete dump of the mySQL database -- definitely does the job, but the filesize would be a lot bigger than it has to be, and it's clumsy. Two, I could make a BAT file to grab the entry exports via HTTP, and then the templates via FTP (Windows command line FTP?). This is very efficient, but not robust -- if I were to change hosts, I'd have to redo the BAT file accordingly. Also, to be truly one-click, it'd need my FTP login and password to be stored in the file in plain text, which I'd rather avoid. Any plugin gurus know of a versatile solution? Maybe a cron job?
-
Answer:
Depending on how robust you need your backup to be, it might be worthwhile to have a cron job just tar up the whole thing -- scripts, output, data and all -- every so often, compress it, and just email it to you. I don't know enough about MT automation to give you advice about exporting things, but at least this would give you a backup of everything you have.
Aaorn at Ask.Metafilter.Com Visit the source
Other answers
How have you got MT set-up? Is it storing your entries in MySQL? The easist solution would be to write a shell/perl script that tar/gzips everything and stores it somewhere, and then get cron to run it daily, then download it from a secret page on your server.
cheaily
Crap. Something like this (this is just an algorithm): in ~/backup.shexport entries from mysql, copy sql file to ~/mtbackup/sqlcopy your mt installation directory to ~/mtbackup tar czf ~/mtbackup mtbackup.tar.gz cp mtbackup.tar.gz ~/public_html/secretfolderthatonlyyouknowabout/then, install the win32 version of wget on your system, and have something like this in a batch file on your desktop:wget http://yourhost/yourdirectory/mtbackup.tar.gz
cheaily
Okay, here's a sub-question: Is there a variable I can use in my crontab file to indicate the current date? So it makes a daily backup named like "mt_20031212.tar", for example.
Aaorn
Not that I'm aware of, but your crontab should only be invoking a shell or Perl script that lives elsewhere (which can understand the date) so that shouldn't matter.
majick
The problem with ~/public_html/secretfolderthatonlyyouknowabout/ is that there's no guarantee that it will remain secret, either via a malicious party guessing, making a dictionary attack, etc. Once someone has that tarball, they have unfettered access to your weblog (if not your entire account.) Security through obscurity is always a gamble. If you have a static IP address for your desktop, you could theoretically include an .htaccess file that denies access to all IPs except yours, but I still wouldn't trust that degree of protection. (You'd also have to update the file if/when you change IPs.) Personally, I would install a Win32 copy of `scp` and use that to transfer the file from server to desktop. SCP is encrypted (thus, not spamming your password in plaintext over untrusted connections.) You'd have to put your password into the SCP command on your desktop, but if someone has physical access to/has rooted your home machine, you have far more to worry about than your Web server.
Danelope
There's nothing about the backup itself that would need to be private/secure -- it's just an export of my entries and photos, and the HTML templates for presenting them. wget is proving quite useful, thanks for that suggestion.
Aaorn
Danelope: "security through obscurity" describes nearly every password based system in existence. What's to stop me from guessing or making a dictionary-based attack on Aaorn's ftp password? There's no guarantee that that would remain a secret either, despite his best efforts. Besides, it's not like he's storing ASIO records... it's a weblog. Who's going to try to come along and steal his backups?
cheaily
You can use the http://mt-plugins.org/archives/entry/template.php to include the code of templates in an MT-generated page. (Even when you're using the "Link to an External File" feature, the code is duplicated from the file into the database.) So maybe you could create a template that's basically a dump of all the templates you want to back up, and grab the resulting built page via HTTP, eliminating the need for the FTP part of the process.
staggernation
Hmm, http://mt-plugins.org/archives/entry/showtemplates.php may actually be better--you could loop through all the templates for a given blog without having to specify them all by ID or name.
staggernation
Related Q & A:
- How do I issue multiple commands using telnet or netcat?Best solution by Super User
- How do i get multiple images?Best solution by Stack Overflow
- How do I run Multiple Parallel Suites in TestNG?Best solution by Stack Overflow
- How do I upload multiple files into a folder?Best solution by Yahoo! Answers
- How can I send multiple Yahoo E mails?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.