I wonder what is the most efficient and functional way to clone a Plone portal (on the same server). Both copy & paste, and export & rename & import methods in ZMI don’t work.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generally we find the easiest way is to do a .zexp export and then a .zexp import. However this only works if the path of where you import the site is the same as where it was originally so works from moving between identical servers, not copying a site.
If you really really want to copy a site on the same zope instance you can’t copy it directly.
You could export the settings via portal_setup and export the content via something like collective.jsonify or something similar.