Cannot start Mongrel

Hi all,

I have rails 2.2.2 and Ruby 1.8.7.

I just updates my rails version (changed the environment.rb) and now
try to startup Mongrel resulting in Exiting…

Someone knows why?

** Starting Mongrel listening at 0.0.0.0:3000
** Starting Rails with development environment…
C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/lib/
initializer.rb:530:in send': undefined methodcache_template_extensions=’ for ActionView
::Base:Class (NoMethodError)
from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/
lib/initializer.rb:530:in initialize_framework_settings' from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/ lib/initializer.rb:529:ineach’
from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/
lib/initializer.rb:529:in initialize_framework_settings' from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/ lib/initializer.rb:526:ineach’
from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/
lib/initializer.rb:526:in initialize_framework_settings' from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/ lib/initializer.rb:154:inprocess’
from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/
lib/initializer.rb:112:in send' from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/rails-2.2.2/ lib/initializer.rb:112:inrun’
… 12 levels…
from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-
x86-mswin32-60/bin/…/lib/mongrel/command.rb:212:in run' from C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5- x86-mswin32-60/bin/mongrel_rails:281 from C:/InstantRails/ruby/bin/mongrel_rails:19:inload’
from C:/InstantRails/ruby/bin/mongrel_rails:19

On Nov 28, 8:51 am, Tarscher [email protected] wrote:

Hi all,

I have rails 2.2.2 and Ruby 1.8.7.

I just updates my rails version (changed the environment.rb) and now
try to startup Mongrel resulting in Exiting…

Someone knows why?

Because the cache_template_extensions setting was removed.

Fred

Frederick C. wrote:

On Nov 28, 8:51�am, Tarscher [email protected] wrote:

Hi all,

I have rails 2.2.2 and Ruby 1.8.7.

I just updates my rails version (changed the environment.rb) and now
try to startup Mongrel resulting in Exiting…

Someone knows why?

Because the cache_template_extensions setting was removed.

Fred

So Fred, how do we fix the problem? I don’t see anything in the/config
of my app that’s using or creating this setting. What do we do to fix
the problem?

On 29 Nov 2008, at 15:33, Scott H. <rails-mailing-list@andreas-
s.net> wrote:

Someone knows why?

Because the cache_template_extensions setting was removed.

Fred

So Fred, how do we fix the problem? I don’t see anything in the/config
of my app that’s using or creating this setting. What do we do to fix
the problem?

Assuming it was the same problem as the OP then you’d remove
references to that setting in production.rb etc…
If not then I’ve no idea what the solution is because I don’t know
what the problem is.

Fred

Scott H. wrote:

Frederick C. wrote:

On Nov 28, 8:51�am, Tarscher [email protected] wrote:

Hi all,

I have rails 2.2.2 and Ruby 1.8.7.

I just updates my rails version (changed the environment.rb) and now
try to startup Mongrel resulting in Exiting…

Someone knows why?

Because the cache_template_extensions setting was removed.

Fred

So Fred, how do we fix the problem? I don’t see anything in the/config
of my app that’s using or creating this setting. What do we do to fix
the problem?

Never mind, I found your post on

http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/51bc97ee5c3c8b58

that we need to edit /config/environments/development.rb, I commented
out the referece (didn’t see it there eariler). Thanks!

Oops, hadn’t seen your later message, ignore me :frowning:

Sent from my iPhone

On 29 Nov 2008, at 18:35, Frederick C.