Need a Weather Widget?

… then head over to the Weather Underground. I searched high a lo for an international weather widget, with no luck. Then, I landed at the underground. They have plenty of widgets to choose from. Check ‘em out!
You can see one of their widgets in action at HungaryGuide.com, my latest development project.

Installing phpLD Into The Root of Your Domain

I ran into a snag while using a phpLD install into the root of my domains. It appears that the installation’s .htaccess file is missing a line (RewriteBase /). Here’s a complete snippit of the mod_rewrite section:

# URL rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
## Category redirect
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php […]