Latest Articles

Use the navigation at the bottom to see older articles

How to repair MySQL tables from the Command Line

Sometimes your tables crash and your website is unresponsive. You don’t have access to phpMyAdmin to do a repair, because you can’t access Plesk. That sucks! When you’re out in the field and all that’s at hand is a trusty SSH connection from your mobile, here’s an alternative way to bring your WordPress Sites back … Read more

Where are the Backup Files in Plesk?

By default, they’re located in /var/lib/psa/dumps It’s useful to clear this directory out every once in a while, especially because Plesk doesn’t overwrite old backups. So if you ever find that you’re using 60GB of storage on your system, but are fully aware that your entire site shouln’t be bigger than 100MB, then this is … Read more

CSS Dropdown Menu hides behind Videos

Yes, that’s an annoying one – and it has less to do with your Theme’s CSS and more to do with teh Flash Player. Easy remidy is at hand, even though it means that you need to add code to each video. Here’s how you do it: Your videos will be embedded with both <OBJECT> … Read more

How to install MySQL on CentOS

Assuming you’d like to run WordPress on your very own vanilla CentOS system, open a terminal window and do the following: yum install php-mysql mysql mysql-server /sbin/chkconfig –levels 235 mysqld on /etc/init.d/mysqld start You have to be logged on as root to do this. The next thing you probably want to do is create a … Read more