I had my application running fine with rails 1.1.6. I am planning to shift rails 2.0. As recommended I am trying to make sure it works fine with rails 1.2.6. But I get the following message on my browser when I try to access the video page. This works fine with rails 1.1.6.
It's hard to guess just from the callstack. Is there anything interesting at
C:/work/programs/Programming/ruby/InstantRails/rails_apps/ ulinkx_beta_1_5/app/controllers/video_controller.rb:1790
(By the way, 1790+ line controller: yikes)
Fred
Thanks Frederick.
I have a call to render (render '/video/onevideo').
That's deprecated (and it looks like rails is trying to tell you that. You should be using either render :file => '/video/onevideo', or it looks like render :action => 'onevideo' might do the trick
Fred