On Dec 13, 2010, at 4:01 AM, rcz wrote
> In Radiant CMS when I'm trying to save any page that has any PageType
> but "normal" (Archive, Index,etc.) I get this error:
>
> NoMethodError in Admin/pagesController#update
>
> undefined method `[]' for nil:NilClass
Are you running in development mode? If so, try opening config/environment.rb
and changing this line:
config.time_zone = 'UTC'
To this:
config.active_record.default_timezone = :utc
There's a persistent Activerecord bug:
https://rails.lighthouseapp.com/projects/8994/tickets/1339
If you're not in dev mode, or if that doesn't solve it, you've got other
problems. Let us know.