svenfuchs / adva_cms

cutting edge cms, blog, wiki, forum ...
http://adva-cms.org
MIT License
490 stars 74 forks source link

uninitialized constant BaseController::OutputFilter #1

Closed galenking closed 15 years ago

galenking commented 15 years ago

Hi guys,

When I try to run the rake tasks, I get this error every time: "uninitialized constant BaseController::OutputFilter"

Any ideas?

Cheers,

Galen

m3talsmith commented 15 years ago

Yeah I ran in to this a few days back. It looks like the load_path is off some how. I think it might be a race condition because the module and class definitely exist.

m3talsmith commented 15 years ago

Add this after line 5 of engines/adva_cms/lib/tasks/adva_cms.rake

ENV['plugins'] = %w(adva_cells).join(',')
galenking commented 15 years ago

Awesome, that did it. Thanks.