Reputation: 41005
I am using Plone 4 and I need to add another Plone Site in my Zope Instance i.e. One Plone site for testing/development and the other Plone site for production. I already have one Plone site installed and wonder how to install the other in the same instance.
I have followed the steps listed here but have not been successful. I am using buildout.
Could anyone tell me how to go about it or if I'm doing something wrong. Thanks.
EDIT: I am looking for a way that will result in a different Data.fs file for each Plone site.
Upvotes: 1
Views: 1732
Reputation: 83398
To add multiple Plone sites under Zope
Go to Zope Management Interface root: http://localhost:8080/manage
(this is usually directly under port 8080)
In the real ZMI Zope root you see your Plone site as one of content items
In top right corner you should see button Add Plone Site. Press it.
Upvotes: 3
Reputation: 1
You want to set up multiple mount points within Zope. Each mount point has it's own database file. http://plone.org/documentation/kb/multiple-plone-sites-per-zope-instance-using-separate-data-fs-files-for-each-one
Upvotes: 0
Reputation: 4496
To create more plone sites just go to:
http://<hostname>:<port>/manage
for example:
http://localhost:8080/manage
There you'll find a button in upper-right corner that says "Add Plone site".
Upvotes: 3