up vote 11 down vote favorite
share [g+] share [fb]

The CSRF prevention built in to Rails is causing some problems for some automated load testing we are doing, and I want to turn it off for the duration of the process. How do I do this?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 14 down vote accepted

I love simple questions with clear answers.

#I go in application.rb
self.allow_forgery_protection = false

If you want to do this for testing only you can move that into one of the environment files (obviously, you'll be touching Application then rather than self). You could also write something like:

#I still go in application.rb
self.allow_forgery_protection = false unless ENV["RAILS_ENV"] == "production"

See here for details. (Continuing Rails' wonderful tradition of having documentation of core features in 2 year old blog posts, which were distilled from commit logs.)

link|improve this answer
or self.allow_forgery_protection = ENV["RAILS_ENV"] == "production" for short – gunn Sep 27 '11 at 6:58
feedback

In Rails 3, remove the protect_from_forgery command in app/controllers/application_controller.rb

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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