XAMPP is an all-in-one LAMP development solution for multiple platforms. I use Linux on my main computer and OSX for my laptop.
I’ve selected XAMPP to provide the LAMP environment on my Mac. It is free, in on-going development and works well.
Because I have several projects in development at once, I need to be able to quickly [...]
This is a script to be run from a daily cron that created a series of sanely named SQL dump files: weekly, monthly, etc.
Always have that backup ready!
#!/usr/bin/perl -w
#
# No arguments. The program is to be modified to include each database to be archived.
#
#
use strict;
use warnings;
use DateTime;
my $numRotations = 6; # base 0, [...]