Jeff Dean wrote:
> I believe that this is because of a bug in rails, and not radiant.
> The SiteController has session :off, and adding session :on in your
> controllers doesn't seem to do anything.
>
> The only way I know to change this is to actually go into
> SiteController and comment out that line. I've seen posts about
> putting things like:
>
> SiteController.class_eval{session :on}
>
> in the activate method of your extension, but that didn't work for me.
>
> To get it to work, I did froze to edge radiant, then went into
> SiteController.rb and commented out the session line. This would mean
> that any pages that you want sessions off for you'd have to do
> manually - so use with caution.
>
> Jeff
Thanks for your help. Could you explain your last paragraph in more
details, I'm totally new to Radiant. where can I find the
SiteController.rb? any examples would be very helpful
My extension rails_support_extension.rb looks like this
**
require_dependency 'application'
class RailsSupportExtension < Radiant::Extension
version "1.0"
description "Allows you to render Rails views in Radiant Layouts. "
url "http://code.google.com/p/radiant-rails-support/"
def activate
end
def deactivate
end
SiteController.send :include, SiteControllerExtension
SiteController.helper SiteHelperExtension
end
**
Thanks in advance
Maged Makled
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
Radiant mailing list
Post: [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant