i'm using the searchplugin from cakeDC (https://github.com/CakeDC/search) with cakePHP 2.3.0. That Plugin works fine. I had a little error in the index-action like this. Thanks for that.
Indirect modification of overloaded property AtlasController::$paginate has no effect [APP\Controller\AtlasController.php, line 47]
My Index-action
public function index() {
$this->Prg->commonProcess();
$this->paginate['conditions'] = $this->Atla->parseCriteria($this->passedArgs);
$this->Atla->recursive = 0;
$this->set('atlas', $this->paginate());
$this->set('_serialize',array('atlas'));
}
The question is, how can i solve it? So i found out a way thats so simple and easy.