First thing I’d do is specify the controller name and see if that fixes the problem. I run into this all the time with partials.
<%=link_to “link here”, :action=>‘my_action’, :id=>1 %>
try
<%=link_to “link here”, :controller=>“whatevver”, :action=>‘my_action’, :id=>1 %>