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 have simple login form in codeigniter (2.0.2). Frequently the following error is displayed:

An Error Was Encountered The action you have requested is not allowed.

After short research I undertand that it is security issue connected with csrf_protection

In the config file my setting is the following:

$config['csrf_protection'] = TRUE;

My login form is open and closed with use of short tags, like this:

<?= form_open("/mycontroller/checklogin/process", array("method"=>"post","class"=>"login_form")) ?>

and I am closing the form like this:

<?= form_close() ?>

On the CodeIgniter forum I found the follwing code which some users say that it solved their problem:

<?=form_hidden($this->security->get_csrf_token_name(), $this->security->get_csrf_hash());?>

which after adding it after the form element, do nothing. Error reamin. I am not checking this hidden field in my controller...Have no idea should I??

I am not running form validation library in my controller. Should I?

Any help will be deeply appreciated.

Regards,Zoran

share|improve this question
If you are using the form helper you shouldn't have to add the hidden csrf field as CI does it for you. Have you tried setting csrf_protection to false to see if it works? check here for additional help codeigniter.com/forums/viewthread/163976 – jco Jul 10 '12 at 16:22
Perhaps try updating CodeIgniter to the latest version (2.1.2), as there have been two patches to the CSRF system since 2.0.2 Also, there is no need to do: "method"=>"post" as this is automatically added. You may also want to try removing the initial forward-slash in the path that it's posting to (depending on your setup). – PaulSkinner Jul 13 '12 at 10:51
Why was that turned in to a comment? It's a valid answer. Granted, it's scatter-gun, but it attempts to answer the question... – PaulSkinner Jul 13 '12 at 15:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.