So about that Mac development server on my local network. It’s an old Mac, an Intel dual core xeon. It runs OS X Server 10.6.8 which hasn’t had an update from Apple in at least a year I’m guessing. Which of course means PHP hasn’t been updated which is not good for a development server. more »
I have a development Mac server on my local network that I use for developing new web sites or themes or you name it. My WP sites also run there as well. The problem has been getting WP to update on this server without providing my FTP credentials every time. I finally found a solution. more »
Using CSS it’s easy to spice up your WordPress posts by adding some fun styling to the post date. I’m certain this translates well into other blog or CMS systems, but I’m just focusing on WordPress with this one. more »
Or wrapping that is. I just had reason to look into this with run away non-wrapping URLs in a twitter feed. Turns out the solution is simple in CSS. Simply apply
word-wrap: break-word;
to the DIV containing the offending line and problem solved. Nice.