source: products/quintagroup.pingtool/trunk/docs/INSTALL.txt @ 3565

Last change on this file since 3565 was 885, checked in by mylan, 17 years ago

Retag 2.3 version.

File size: 1.3 KB
Line 
1Installation
2============
3
4To install quintagroup.pingtool into the global Python environment (or a workingenv), using a traditional Zope 2 instance, you can do this:
5
6* Copy ``quintagroup`` folder to the ``/path/to/instance/lib/python`` directory of your Zope instance.
7
8* Create a file called ``quintagroup.pingtool-configure.zcml`` in the ``/path/to/instance/etc/package-includes`` directory of your Zope instance.
9  The file should only contain this::
10
11  <include package="quintagroup.pingtool" />
12
13* Restart the Zope server, for example with the following command in the terminal::
14
15   $ ./bin/zopectl restart
16
17Alternatively, if you are using zc.buildout and
18the plone.recipe.zope2instance recipe to manage your project, you can do this:
19
20* Add ``quintagroup.pingtool`` to the list of eggs to install.::
21 
22    [buildout]
23    ...
24    eggs =
25        ...
26        quintagroup.pingtool
27       
28* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
29 
30    [instance]
31    recipe = plone.recipe.zope2instance
32    ...
33    zcml =
34        quintagroup.pingtool
35       
36* Re-run buildout, e.g. with::
37 
38    $ ./bin/buildout
39       
40* Restart the Zope server, e.g with the following command in the terminal::
41
42   $ ./bin/instance restart
43
44Install quintagroup.pingtool with quickinstaller in Plone.
Note: See TracBrowser for help on using the repository browser.