March 31st, 2010
No Comments
Need a widget for b2evolution that lists other posts, links, podcasts, etc. related to the current post?
Use the Related Entries plugin as widget within a widgetized area such as your sidebar.
When a single post is displayed, the plugin will display other entries that share the same category with your post. The plugin displays the related entries by type, so all related links are in one section, all related podcasts in another section. If no related entries are found, nothing is displayed.
Download Related Entries 1.0
March 1st, 2010
No Comments

Partial Linkblog Settings
Partial Linkblog is a simple widget to add to your b2evolution theme.

Partial Linkblog screenshot
If you have a linkblog in your sidebar, you can add this widget to control what categories appear where in the sidebar. For instance, you can show the category name and link list for categories 4, 5, and 6 with one instance of this widget, followed by a completely different widget, and then finish with another instance of this widget showing category three and its link and description.
Install simply by copying the one file into your b2evolution plugin folder. Then visit your widget settings and add instances of the widget where you want them.

Partial Linkblogs in the Back-End
Partial Linkblog 1.0
February 27th, 2010
No Comments
A problem developed recently. Some time ago, I pointed my main domain and a parked domain to the same spot, my public_html directory. Recently, I decided to move my domain to a subdirectory where new blogging software was installed.
I elected to use Apache’s mod_rewrite. When you read in a multitude of sites that mod_rewrite can be tricky, believe it!
So, to redirect my main domain, softwarefemme.com, to a subdirectory index.php, but yet keep the parked domain, www.thewildlifeporch.com, directed to the main index.php:
(make sure to replace my domains with yours!)
# FOR GENERAL REWRITING
Options +FollowSymlinks
Options -Indexes
RewriteEngine on
# REDIRECT SWF
RewriteCond %{HTTP_HOST} ^softwarefemme\.com$ [NC]
RewriteRule ^$ wpswf/index.php [L]
# REQUIRED FOR TWP CLEAN URLS
RewriteCond %{HTTP_HOST} thewildlifeporch\.com$ [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ ./index.php
February 27th, 2010
No Comments
Welcome! This website functions as a resume of sorts for my career as a software developer.
If you’re looking for a freelance software developer for your website or desktop application, please contact me for my availability.
I’ll be posting updates about some ongoing and future projects. I’ll also be posting some of my problems and solutions in hopes they help other developers.