Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a small problem when trying to flash a message and redirect the user back to the previous page in Symfony 2. I have a very simple CRUD. When new, or edit, i want to flash a message if something goes wrong in the respective create/update methods. So:

User -GET> new -POST> create (fails) -REDIRECT> new (flash message).

I'm doing the following:

  $this->container->get('session')->setFlash('error', 'myerror');
  $referer = $this->getRequest()->headers->get('referer');   
  return new RedirectResponse($referer);

However, it's not redirecting to the correct referrer! Even though the value of referrer is correct (eg.: http://localhost/demo/2/edit/) It redirects to the index. Why?

share|improve this question
Can the downvoter explain why the hell? – vinnylinux Aug 9 '12 at 22:16

3 Answers

I just set up a simple app, and it seems to work fine. My createAction() looks like this:

public function createAction()
{
    $entity  = new Pokemon();
    $request = $this->getRequest();
    $form    = $this->createForm(new PokemonType(), $entity);
    $form->bindRequest($request);

    if ($entity->getName() == "pikachu")
    {
        $this->container->get("session")->setFlash("error", "Pikachu is not allowed");
        $url = $this->getRequest()->headers->get("referer");
        return new RedirectResponse($url);
    }

    if ($form->isValid()) {
        $em = $this->getDoctrine()->getEntityManager();
        $em->persist($entity);
        $em->flush();

        return $this->redirect($this->generateUrl('pokemon_show', array('id' => $entity->getId())));

    }

    return $this->render('BulbasaurBundle:Pokemon:new.html.twig', array(
        'entity' => $entity,
        'form'   => $form->createView()
    ));
}

The flow goes:

  • User navigates to /new
  • User enters invalid option of "pikachu"
  • User clicks submit (POSTs to /create)
  • Application rejects the entry, adds flash message, and redirects back to /new
  • User sees /new with the flash message

A few things to check:

  • Is your route for /demo/{entityId}/edit actually working? (i.e. if you enter it in the browser, does it actually go to where you expect it to?)

  • Are you chaining together different redirects/forwards? I've noticed that I get unexpected (but correct) behavior when I have a controller that redirects to a URL, and the controller responsible for that URL also redirects somewhere else. I've fixed this issue by using forwards instead.

That said, if all else fails, you could just use the controller's redirect() method to manage the redirect:

public function createAction()
{
    ...
    return $this->redirect($this->generateUrl("pokemon_new"));
    ...
}
share|improve this answer

seems like you need to have a payload for your redirect to point to. it seems like obscure concept code to me. I would also advise you to make sure your configuration files point to the correct redirect code snippet. Check your server access file to make sure it has redirects enabled also. Hope this helps.

share|improve this answer

The message from Naitsirch presented in the next url: https://github.com/symfony/symfony/issues/2951

Seems a good solution for that you need:

  public function getRefererRoute()
  {
    $request = $this->getRequest();

    //look for the referer route
    $referer = $request->headers->get('referer');
    $lastPath = substr($referer, strpos($referer, $request->getBaseUrl()));
    $lastPath = str_replace($request->getBaseUrl(), '', $lastPath);

    $matcher = $this->get('router')->getMatcher();
    $parameters = $matcher->match($lastPath);
    $route = $parameters['_route'];

    return $route;
  }

Then with a redirect:

    public function yourFunctionAction()
    {
        $ruta = $this->getRefererRoute();

        $locale = $request->get('_locale');
        $url = $this->get('router')->generate($ruta, array('_locale' => $locale));

        $this->getRequest()->getSession()->setFlash('notice', "your_message");   

        return $this->redirect($url);
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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