Archive for the ‘Applications’ Category

WordPress Bad Behaviour blocking wp-cron

Wednesday, November 28th, 2007

I noticed that Bad Behaviour did block my WordPress’ wp-cron requests. There is a solution: Add your server’s IP address to the whitelist.inc.php variable $bb2_whitelist_ip_ranges:

$bb2_whitelist_ip_ranges = array(
                "10.0.0.0/8",
                "172.16.0.0/12",
                "192.168.0.0/16",
                "<your-ip-here>",
);

TYPO3-like templating with Java

Tuesday, November 20th, 2007

Here is a class I wrote to apply TYPO3-like templating mechanism within Java. I am quite familiar with that kind of templates, so I decided to use it within one of my projects, too. The implementation requires Java 5.

Java Templating class

You need to adopt the class’ package though ;-)

Icons for usage in GoogleEarth

Thursday, November 15th, 2007

You’ll find all available icons for use in GoogleEarth here:

http://www.cems.uwe.ac.uk/~cjwallac/apps/phpxml/showIcons.php

Thanks to Chris Wallace, I might copy the page and make it available here in case the original gets lost ;-)