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'm running my rails WEBrick server with 'thin' gem for minimal logging in development mode. I use data tables to show some tables on my html page. But I get errors with assets:

Started GET "/app/assets/images/sort_both.png" for 127.0.0.1 at 2012-11-24 20:14:45 -0800 2012-11-24 20:14:45 -- ActionController::RoutingError (No route matches [GET] "/app/assets/images/sort_both.png")

I have made sure that the image in the folder exists.

I have changed the config in config/environments/development.rb for WEBrick to be able to serve static content with:

config.serve_static_assets = true

I can't figure out what's going on. Could somebody please help me on this?

Cheers, ANi

share|improve this question
did you restart server ? – Said Kaldybaev Nov 25 '12 at 4:46
Yes, I did, indeed. :( – anipendakur Nov 25 '12 at 5:57
there's a railscasts on this theme: railscasts.com/episodes/340-datatables try it out – Said Kaldybaev Nov 25 '12 at 7:27

1 Answer

The logs are saying you're asking for the wrong url. Usually /app isn't part of the http request. Make sure you're using asset_path in your views.

I also bet a GET request to /assets/images/sort_both.png would work.

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.