Category: HOWTOs

Step by step guides to help with technical issues that I have worked on over the years.

Hints HOWTOs WordPress

Find and Replace With phpMyAdmin (or using SQL)

Ever need to find and replace something in your WordPress database? (perhaps you changed domain names and have the old domain name or folder structure hard coded into some of your posts) You can easily update your database by using phpMyAdmin or by using the following code in any SQL interface: The first part of […]

Hints HOWTOs Web Development

Undelete Something With SVN

Ever delete something with svn (svn del) and then realize you needed it again? You can get it back by using: svn copy -r HEAD filenameyoudeleted.extension filenameyoudeleted.extension svn copy is the command to get a working copy back -r is short for revision. I used HEAD which will give you the latest in repository. You […]

HOWTOs Web Development

HOWTO Change the SVN Editor

Because I always forget…to change the text editor that svn uses with the commit messages, just type in this command (if you use bash): export SVN_EDITOR=vi *Substitute vi for your editor of choice. **Personally, I once was a pico/nano fan, then I moved to emacs, and now I am a vi person.

HOWTOs Web Development

Switch Repositories (SVN)

In order to take a look at WordPress 2.5 before it was released, I used subversion to check out the latest code available using the instructions given on the WordPress site. Once WordPress 2.5 was released, I wanted to keep my sites using 2.5 and not the bleeding edge releases (2.6) so I needed to […]

Business Hints HOWTOs

How to Get Stuff Done

The last few weeks I have been extremely busy and on top of that I have been dealing with a sick child and also being sick myself. There is no time to be wasted so efficient use of the time I had was crucial. I feel that since owning my own business, I have had […]

HOWTOs Serenity Now!

Backup to Amazon S3 With Rsync.

Finally – I stumbled upon an article that outlines how to use rsync, Mac OS X, Jungle Disk, and Amazon S3 (all which I use). This will simplify and speed up my backup process. (Especially when my external backup drive has been acting a little irregular this morning.) If you do not backup your files, […]

HOWTOs WordPress

WordPress Thumbnails/PodPress Fix

WordPress has a great feature where it will make thumbnails out of any image you upload when creating a post. When you have PodPress installed (a great podcast plugin), the thumbnails option disappears. Finally I got sick of this and found the solution. If you ever run into this – now you know how to […]

Hosting HOWTOs Web Development

Jappler Recommends: CPsafe.

Start the year of right – set up a backup system! A few years ago, I documented how to backup your web sites, databases, email, etc when your host uses CPanel to a remote FTP server. Since then, there have been several CPanel updates and Perl updates that the script no longer works so I […]