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 am using this code insite my controller

class ProjectsController < ApplicationController

    cache_expire = 60*60*24*365
    response.headers["Pragma"] = "public"
    response.headers["Cache-Control"] = "max-age=#{cache_expire}"
    response.headers["Expires"] = Time.at(Time.now.to_i + cache_expire).strftime("%D, %d %M % Y %H:%i:%s")
    render :layout => "application", 
           :inline => "<script src='//connect.facebook.net/en_US/all.js'></script>"

The caching is working properly, and my webapp does support subdomains.

When I browse to mysubdomain.something.com it gives me an "Routing Error"

undefined local variable or method `response' for ProjectsController:Class

Any suggestions?

share|improve this question

1 Answer

This code is supposed to be inside of some method.

def index
  cache_expire = 60*60*24*365
  response.headers["Pragma"] = "public"
  response.headers["Cache-Control"] = "max-age=#{cache_expire}"
  response.headers["Expires"] = Time.at(Time.now.to_i + cache_expire).strftime("%D, %d %M % Y %H:%i:%s")
  render :layout => "application", 
         :inline => "<script src='//connect.facebook.net/en_US/all.js'></script>"
end

response doesn't exist or make sense at class level.

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.