“Fatal error: Class ’scbWidget’ not found” Solution
New version of the popular Wordpress Plugin WP-UserOnline version 2.60 has arrived but with a problem. A small piece of code is missing for some reason and it gives the following error when its being enabled.
Fatal error: Class ’scbWidget’ not found in /wp-content/plugins/wp-useronline/wp-useronline.php on line 515
The solution for it is very simple; if you have upgraded to version 2.60 and are getting the fatal error then login to your FTP and edit wp-useronline.php file, the fault lies in very first line so it’s very easy to find. It currently looks like,
< ?php
/*
Plugin Name: WP-UserOnline
All you have to do is add include ’scb/Widget.php’; under the very first line so it looks like this.
< ?php
include 'scb/Widget.php';
/*
Plugin Name: WP-UserOnline
(Remove the space between < and ? php
and you are done, just activate the plugin. For those of you who are either lazy ;) or do not understand what I am talking about. Here's updated version of the Plugin with the fix applied to it. Just download it, login to your Wordpress and add it via upload.
http://rapidshare.com/files/349568652/wp-useronline.2.60.zip.html
You can retweet and Digg this to all of your friends and you can also follow me on twitter @ http://twitter.com/thepatri0t
Related Posts:
- Display and Highlight Code in your Wordpress blog without any plugins
- Google Checkout is down in UK and US
- How to remove comment author’s URL from your Wordpress blog?
- WordPress Wins CMS Award
- Bill Gates Off to Antarctica
Trackbacks & Pingbacks
- Pingback by Fujifilm – Total creative control >> :FUJI FINEPIX DIGITAL CAMERA on February 12, 2010 @ 6:52 pm




works now!