Category Archives: WordPress
WordPress Brute-Force Attacks
A post on Twitter today alerted me to the fact that my WordPress application was probably under brute-force attack. Â A growing series of links told me reasons why it was happening, methods for understanding the degree of the problem and … Continue reading
WordPress security vulnerability
According to the BBC News today, WordPress is under a huge Botnet attack that targets the ‘admin’ account. Â In accordance with advice from WordPress, I’ve just deleted that account. Â Upgraded to v3.5.1 at the same time, just for good measure.
WordPress Server Migration
Last weekend I was chatting to my best mate Jamie who appears to be the prime reader of my Blog, (hi mate!). He pointed out that my Blog was very slow to access and I’ve been pondering on what to … Continue reading
Database Backup
This script will dump a mysql database into a given directory and keep a 7 day rolling history. Parameters should be fairly self-explanitory. This needs to be run daily via cron. #!/bin/bash DATE=`date +%y-%b-%d` DESTDIR=/home/duplicity/wordpress DATABASE=myblog DB_USER=root DB_PASSWORD=password cd ${DESTDIR} … Continue reading
phpMyAdmin
During an upgrade of WordPress, I realised it was about time I figured out how to backup my databases. This led to the requirement for phpMyAdmin, and this section. There doesn’t seem to be any Debian packaging for phpMyAdmin, so … Continue reading