Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
lyle edited this page Sep 12, 2010 · 3 revisions

A couple things to make this extension work on 0.9 radiant:
(Actually I never did get it working… if you follow these instructions you can install it, but it breaks the admin tool in 0.9)

If you run into these problems

rake production db:migrate:extensions
Could not load extension from file: page_group_permissions_extension.
#<MissingSourceFile: no such file to load -- application>
open page_group_permissions_extension.rb
change:
require_dependency 'application'
to:
require_dependency 'application_controller'
rake production db:migrate:extensions
rake aborted!
uninitialized constant Admin::PageController
change:
    Admin::PageController.module_eval &PageControllerExtensions
to:
    Admin::PagesController.module_eval &PageControllerExtensions
Clone this wiki locally