source: products/quintagroup.plonecomments/trunk/docs/INSTALL.txt @ 3324

Last change on this file since 3324 was 3073, checked in by olha, 13 years ago

package contributors added + installation instructions updated

File size: 1.4 KB
Line 
1Installation
2============
3
4If you are using zc.buildout and the plone.recipe.zope2instance
5recipe to manage your project, you can do this:
6
7* Add ``quintagroup.plonecomments`` to the list of eggs to install, e.g.::
8
9    [buildout]
10    ...
11    eggs =
12        ...
13        quintagroup.plonecomments
14       
15* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
16
17    [instance]
18    recipe = plone.recipe.zope2instance
19    ...
20    zcml =
21        quintagroup.plonecomments
22        quintagroup.plonecomments-overrides
23     
24* Re-run buildout, e.g. with::
25
26    $ ./bin/buildout
27
28* Restart the Zope server, for example, with the following command in the terminal::
29
30    $ ./bin/instance restart
31
32* Install quintagroup.plonecomments via ZMI portal_setup. Select ``quintagroup.plonecomments``
33  from the list of available profiles and press *Import all steps*.
34
35
36  **Atention**: If you are using a Plone version **before** 3.1 you need to install
37  "plone.browserlayer":http://pypi.python.org/pypi/plone.browserlayer (which also
38  requires a "GenericSetup":http://pypi.python.org/pypi/Products.GenericSetup version
39  greater than 1.4) in your Plone site. It shows up as **Local browser layer support**
40  in the Plone Add-on Products Control Panel.
41
42
43Uninstallation
44==============
45
46* To uninstall quintagroup.plonecomments - select ``quintagroup.plonecomments uninstall``
47  profile from the list of available profiles and press *Import all steps*.
Note: See TracBrowser for help on using the repository browser.