•  
Posts Tagged ‘Bug Fix’

WP Cron has broken since 2.9 update

By Austin On December 22, 2009 No Comments

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

By Austin On March 16, 2009 4 Comments

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 reading


Bug Fix OIOPulisher 2.07

By Austin On November 30, 2008 No Comments

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.

OPEN

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",

Click here to continue reading