By Pramudita on Jan 3, 2008 in Plugins, Trouble | 0 Comments
Access denied for user ‘username’@’localhost’ (using password: NO) on line: 294. I get that error every time I save a post on new post or edit post. I confused with this error and didn’t know how to solve this. So I asked to Google and found this thread :
By Pramudita on Sep 6, 2007 in Plugins, Web Development | 2 Comments
I’m looking for best plugin for my network blog (Pramudita’s Network). I need a RSS aggregator/Feed Syndication which can generate content from my other feeds. Yes, auto content generator which take content from all of my blog feeds.
Let’s try to find that plugin.
First I try to find this plugin at : WordPress Plugin Database. Found [...]
By Pramudita on Feb 28, 2007 in Plugins | 0 Comments
Received email from Snap Preview Anywhere Team about Extreme MakeOver Contest. Win up to $2500 for the best ideas on improving Snap Preview Anywhere. Don’t have any ideas? You can still win up to $500 for the best comments on someone else’s idea.
Here is detail
By Pramudita on Dec 8, 2006 in Plugins | 1 Comment
I Modified AdSense-Deluxe a great WordPress Plugin and use it for Google Adsense sharing revenue site at HYIP Blog for Revenue Sharing
AdSense-Deluxe is a WordPress Plugin for quickly inserting Google or Yahoo! ads into your blog posts, and managing when and where those ads are displayed. You can use simple HTML comments for embedding AdSense [...]
By Pramudita on Jul 14, 2006 in Plugins | 10 Comments
Solution for Call to undefined function bcmod() in bsuite wordpress plugin is :
after
PLAIN TEXT
PHP:
foreach($refs as $ref){
line 960 of original bsuite plugin(bsuite.php), add this function :
PLAIN TEXT
PHP:
if (! function_exists('bcdiv')) {
function bcdiv($colour, $max_colours)
{
return floor($colour/$max_colours);
}
}
if (! function_exists('bcmod')) {
function bcmod($colour, $max_colours)
{
return $colour - ($max_colours*bcdiv($colour,$max_colours));
}
}
before
PLAIN TEXT
PHP:
$thiscolour = bcmod($colour,$max_colours);
so.., the original code of bsuite plugin is :
PLAIN [...]