WP Cron has broken since 2.9 update
Did you make the update to WordPress 2.9? Well you may want to check out this post regarding an issues with WP Cron, which controls you auto (scheduled) posts. I know one of my sites has an issue, so I installed the three files and it fixed the issue.
Click here to continue reading
Comment Validation update plus fix
On this site I use the Comment Validation plugin from Jörn Zaefferer.
You can find out more about this plugin at the WordPress directory.
This plugin is an amazing plugin, but the new version breaks W3C validation. Mostly due to typo’s and small oversights. Lets take a looks at the original comment-validation.php file in version 0.3.
function commentValidation() { echo ' '; echo ''; echo ''; echo ''; } add_action('wp_head', 'commentValidation');Hey, where you able to tell what need to be fixed? Well lets take a closer look.
Corrections
On line 15 you’ll see we need to change
Click here to continue readingBug Fix OIOPulisher 2.07
As I have mentioned before, I am using the OIO Publisher Plugin, which you can see/use/purchase by clicking on the advertisement ad, or my advert page.
Anyway, it suddenly was not working and would say “plugin off line” on the purchase page, when it most certainly was not.
After contacting Simon over at OIO. I got a quick response to view this forum thread.
Indeed, this fix worked!
Here is what you need to do.
Click here to continue readingOPEN
include/config.php
FIND
if($oiopub_set->wp_load == 1) {
include_once($oiopub_set->wp_config);
}REPLACE WITH
if($oiopub_set->wp_load == 1) {
$oio_cwd = getcwd();
chdir(str_replace("/wp-config.php",
