I've just uploaded my app to the heroku servers (with cedar stack) "http://hollow-waterfall-4266.herokuapp.com/" and I can see that the files load and are there, but they don't execute.
The css-file is fine and working, but the javascript files aren't. I've looked at a lot of other posts, but nobody seems to have the answer and I have no idea of where to start to debug this.
Any suggestions?
Your page is throwing "jQuery is not defined" errors. Your page's source looks like this:
jQuery should be the first JS file you load before any others. Right now, the unobtrusive JS file is loaded before the actual jQuery 1.4.4 file. Also, it looks like the link to the jQuery file (jquery-1.4.4-d1fb061dfe072deb1a689fdc40b2debe.min) doesn't work.
I had messed up my whole asset pipeline. Started a new rails app.