Kiedy daje zatwierdzenie formularza otrzymuje komunikat
Too many forwards have been detected for this request (> 5).
<?php if ($this->getActionStack()->getSize() >= $this->maxForwards) { // let's kill this party before it turns into cpu cycle hell throw new sfForwardException(sprintf('Too many forwards have been detected for this request (> %d).', $this->maxForwards)); } ?>
plik edit.yml wyglada tak
- wciecia zachowalem tutaj sie rozjezdza
methods: post: [name] names: name: required: Yes required_msg: The name field cannot be left blank
w action klas dodalem tez
<?php public function handleErrorEdit() { $this->forward('gallery', 'edit'); } ?>
w czym problem ?