Bug

Interaction Bug of WordPress 2.0 and Post2Blog

If you use WordPress 2.00 then please be aware of the following problem with new WordPress and Post2Blog that caused by error in WordPress: 

WordPress extended text entry tag not working in posts if you add new post using external application such as Post2Blog. This is can be fixed

Bytescout Software Blog » Blog Archive » WordPress 2.00 bug-fix

test33

test2
Technorati Tags: , ,

Drupal: AdSense Module - Getting access denied instead of page not found

If you noticed something weird at howforge.com, 404 file not found was missing. Instead, it was replaced by 403 access denied. The cause of this problem is exactly adsense.module. Let me show you something.

function adsense_menu($may_cache) { 
$items = array();

if ($may_cache) {
$items[] = array(
’path’ => ’’,
’callback’ => ’’,
’title’ => ’’,
’access’ => user_access(’hide adsense’),
’type’ => MENU_CALLBACK,
’weight’ => 0);
}
return $items;
}

This menu hooking is totally incorrect. The empty path makes all page not found errors replaced by access denied errors. To fix this problem, I simply commented this function out. The patch is as below and also submitted at drupal.org.