>
> Hi,
>
> I am fairly new at Rails, and attempting to deploy an application
> that's running fine using InstantRails on my PC. On the deployment
> server (I use railsplayground.net), I get the following error:
>
> Processing ApplicationController#index (for 220.224.229.156 at
> 2008-06-25 18:49:34) [GET]
> Session ID: 5921e7d789ee3aaa214f2d59aa40986a
> Parameters: {"action"=>:index, "controller"=>:tdf}
>
camelize is a string method, it's not defined on symbols. Normally
that portion of your log would have the action/controller as strings,
not symbols.
Something iffy in your routes maybe? Also you seem to be deploying
your app against 2.1 but developing it against 2.0.2, I would really
recommend that you use the same version in both places.
Fred