Frankline
Frankline

Reputation: 41005

Plone 4 : How to create Multiple Plone Sites

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

Answers (3)

Mikko Ohtamaa
Mikko Ohtamaa

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.

enter image description here

Upvotes: 3

user1358598
user1358598

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

Giacomo Spettoli
Giacomo Spettoli

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

Related Questions