Table of Contents

Installing Zope

Zope 2.13 with Python 2.6 and Virtualenv

According to http://docs.zope.org/zope2/releases/2.13/INSTALL.html

  1. Download and install Python 2.7 (or 2.6) from http://python.org
  2. easy_install-2.7 virtualenv
  3. create virtualenv e.g. virtualenv --no-site-packages /usr/local/Zope-2.13
  4. activate the virtualenv: cd /usr/local/Zope-2.13 and source bin/activate
  5. easy_install additional bits if necessary, e.g. 4Suite-XML, Amara (==1.2.0.2), psycopg2, python-ldap (==2.3.13 on osx) with easy_install -Z 4suite-xml etc
  6. install Zope2 (in the version you want): easy_install -Z -i http://download.zope.org/Zope2/index/2.13.8 Zope2
  7. create your Zope instance with /usr/local/Zope-2.13/bin/mkzopeinstance (choose a directory outside of /usr/local/Zope-2.13 for the instance)

Additional Problems as of Zope 2.13 (8.7.2011)

Additional Problems as of Zope 2.12 (18.2.2010)

ZOPE tips

IntranetUserFolder

To log in any client from a subnet it is not longer necessary to use the IntranetUserFolder Product. It can be done with the normal User Folder:

From AccessControl/userfolder.py:

    def setDomainAuthenticationMode(self, domain_auth_mode):
	"""Set the domain-based authentication mode. By default, this                                       
           mode is off due to the high overhead of the operation that                                       
           is incurred for all anonymous accesses. If you have the                                          
           'Manage Users' permission, you can call this method via                                          
           the web, passing a boolean value for domain_auth_mode to                                         
           turn this behavior on or off."""