2011-02-02 19:40:08: (mod_fastcgi.c.2610) FastCGI-stderr: PHP Fatal error:  Call to undefined method rTorrentSettings::load() in /var/www/rutorrent/plugins/unpack/unpack.php on line 123
it says..  
and unpack.php like 123
        static protected function formatPath( $taskNo )
        {
                return('/tmp/rutorrent-'.getUser().$taskNo."." );
        }
        public function startTask( $hash, $outPath, $mode = null, $fileno = null, $all = false )
        {
                global $rootPath;
                $ret = false;
            $theSettings = rTorrentSettings::load();
                if($theSettings->isPluginRegistered('quotaspace'))
                {
                        require_once( dirname(__FILE__)."/../quotaspace/rquota.php" );
                        $qt = rQuota::load();
                        if(!$qt->check())
                                return(false);
                }