Every time I try to load a page in either the admin section or show
one of my pages, I can do one request and then I get the following
error:
"A copy of AuthenticatedSystem has been removed from the module tree
but is still active!"
Any ideas?
Here is my config:
Comatose.configure do |config|
# Includes AuthenticationSystem in the ComatoseController
config.includes << :authenticated_system
# admin
config.admin_title = "Comatose CMS"
config.admin_sub_title = "blah"
# Includes AuthenticationSystem in the ComatoseAdminController
config.admin_includes << :authenticated_system
config.helpers << :users_helper
# Calls :login_required as a before_filter
config.admin_authorization = :login_required
# Returns the author name (login, in this case) for the current user
config.admin_get_author do
current_user.login
end
end