source: products/quintagroup.portletmanager.footer/trunk/docs/INSTALL.txt @ 1329

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

INSTALL.txt updated

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