source: products/quintagroup.pfg.captcha/trunk/docs/INSTALL.txt @ 2053

Last change on this file since 2053 was 2053, checked in by olha, 14 years ago

INSTALL and README files updated.

File size: 1.4 KB
RevLine 
[2053]1Installation
2============
[1969]3
[2053]4Buildout
5--------
[1969]6
[2053]7To install quintagroup.pfg.captcha to your buildout-based project:
[1969]8
[2053]9* Add ``quintagroup.pfg.captcha`` to the list of eggs to install::
[1969]10
11    [buildout]
12    ...
13    eggs =
14        ...
15        quintagroup.pfg.captcha
[2053]16       
17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
[1969]18
19    [instance]
20    recipe = plone.recipe.zope2instance
21    ...
22    zcml =
23        quintagroup.pfg.captcha
[2053]24     
25* Re-run buildout, e.g. with::
[1969]26
27    $ ./bin/buildout
[2053]28   
29* Restart the Zope server, e.g with the following command in the terminal::
[1969]30
[2053]31   $ ./bin/instance restart
32   
33* Install ``quintagroup.pfg.captcha`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)
34       
35       
36Traditional Zope 2 instance
37---------------------------
38
39To install quintagroup.pfg.captcha into the global Python environment (or a workingenv),
40using a traditional Zope 2 instance, you can do this:
41
42* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory.
43
44* Create a file called ``quintagroup.pfg.captcha-configure.zcml`` in your instance's ``/etc/package-includes`` directory. The file
45should only contain this::
46
47    <include package="quintagroup.pfg.captcha" />
48
49* Restart the Zope server, for example with the following command in the terminal::
50
51   $ ./bin/zopectl restart
52
53* Install ``quintagroup.pfg.captcha`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)
54
Note: See TracBrowser for help on using the repository browser.