Reputation: 69
There are lot of configuration options on plone control panel, for example "security settings". I need to pre-set for checking "enable user folders " option, it should be immediately effect when a plone site created.
How do I configure control panel settings from a generic setup profile?
Upvotes: 1
Views: 196
Reputation: 3293
It's often a good idea to create a policy product that'll be installed to initialize your site. In your case, your policy product would only have a GS profile.
To get what you're asking, the easiest way would be to simply, make the change on a vallina plone site, then export the GS settings of your site and then use that in your product.
To export the current settings for your site:
Upvotes: 3
Reputation: 2090
You import a changed version of the "controlpanel.xml" GenericSetup file. Some details on the controlpanel.xml file are at http://plone.org/documentation/manual/developer-manual/generic-setup/reference/control-panel, and the general procedure for working with GenericSetup is at http://plone.org/documentation/manual/developer-manual/generic-setup. You also may find http://collective-docs.readthedocs.org/en/latest/components/genericsetup.html helpful.
Upvotes: 1