Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use the authentification system provided by FOSUser bundle

Everything was doing fine but recently when clicking on :

     <form action="{{ path('fos_user_registration_register') }}" method="post">                          
                           <button class="btn btn-small btn-success" type="submit">S'inscrire</button>                     
     </form>  

that generated the error: The CSRF token is invalid. Please try to resubmit the form.

none of the view nor controller of FOSUserBundle have being modified...!?

How come this happened and how can this be fixed?

share|improve this question

1 Answer

up vote 3 down vote accepted

Make sure your twig templates have

{{form_rest(form)}} 

or your php files have

<?php echo $view['form']->rest($form) ?> 

if you specify the individual fields

share|improve this answer
thanx...well i ma not sure where to place that {{form_rest(form)}} in {% extends "FOSUserBundle::layout.html.twig" %} {% block fos_user_content %} {% include "FOSUserBundle:Registration:register_content.html.twig" %} {% endblock fos_user_content %} – Matoeil Dec 8 '12 at 13:54

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.