Ik have a problem with the redirect function in cakePHP.
When i use the saveAll
if($this->Invoice->save($this->request->data)){
$this->Session->setFlash('Factuur is opgeslagen.');
$this->redirect(array('controller'=>'Clients','action'=>'index'));
the saveAll works but when he redirects i get a white page.
Does someone has the answer?
try this: $this->redirect(‘/Clients/index’);