im trying to debug a symfony app.

I've added a debug_backtrace() calling to this function below. It outputs a list of functions called, but the save() function (that is just before the debug_backtrace() calling) is not that list.. why? any other way to debug that shows more things, in this case the save() calling ?

protected function processForm(sfWebRequest $request, sfForm $form)
  {
    $form->bind($request->getParameter($form->getName()));

    if ($form->isValid())
    {

      $sf_guard_user = $form->save();

      var_dump(debug_backtrace());
     die("fsdgsgsdf");

      $this->redirect('guardausuario/edit?id='.$sf_guard_user-
>getId());

    }
  } 

Regards

Javi

link|improve this question

66% accept rate
What is it exactly that you're having a problem with, that you feel you need to debug? Or does everything just work and you're curious :-) – richsage Apr 1 '10 at 22:28
feedback

2 Answers

I've just got my target using

xdebug_start_trace('/tmp/foo');
$usuario = $form->save();
xdebug_stop_trace();

http://www.xdebug.org/docs/all_functions

Javi

link|improve this answer
feedback

Symfony's web developer bar has some great information.

What exactly are you trying to see? Somethings it is good to echo $form because it will reveal all of the fields and any hidden fields in the form. Also, remember to include [_csrf_token] in your View if you are writing a custom View.

And... Symfony and xDebug are a good combination.

link|improve this answer
I want just to find a way to see all the functions called before that debug_backtrace(). – tirengarfio Apr 1 '10 at 20:21
1  
That'll be a longgg list... – Steve Apr 2 '10 at 16:57
I don't mind :). – tirengarfio Apr 3 '10 at 10:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.