मुझे लगता है कि आपकी सरणी गड़बड़ है। साथ ही, आप मॉडल के लिए वर्चुअल फ़ील्ड कहां सेट करते हैं? अंतिम लेकिन कम से कम नहीं:एक क्वेरी के अंदर एक क्वेरी क्यों?
public function topvotes() {
$this->Post->virtualFields = array('total' => 'SUM(Post.vote_total)');
$posts = $this->Post->find('all', array(
'fields' => array('total'),
'recursive' => 1,
'group' => array('Post.user_id'),
'conditions'=>array('Post.type' => 'new')
));
$this->set('posts', $posts);
}