Skip to content
This repository was archived by the owner on Nov 28, 2018. It is now read-only.
This repository was archived by the owner on Nov 28, 2018. It is now read-only.

redirect loop when branching  #4

@funinsun

Description

@funinsun

Im using your example for branching when i click on male or female i get this error

This webpage has a redirect loop
The webpage at http://localhost/fit/clients/wizard/Array has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.

the url looks like this
clients/wizard/Array

am i missing something here ?

//controller

$this->Wizard->steps = array('step1', 'step2', 'gender', array('male' => array('step3')), 'step4', array('female' => array('step5')));

function _processGender() {

$this->Owner->set($this->data);
if($this->Client->validates()) {

if($this->data['Owner']['gender'] == 'female') {

   $this->Wizard->branch('female');

} else {

   $this->Wizard->branch('male');

}

return true;

}

return false;
}

//view

$options=array('male'=>'male','female'=>'female');

echo $this->Form->radio('Owner.gender',$options,$attributes);?>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions