source: products/quintagroup.seoptimizer/trunk/docs/INSTALL.txt @ 2111

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

INSTALL.txt and HISTORY.txt corrected.

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1Installation
2============
3
4Traditional Zope 2 Instance
5---------------------------
6
7To install quintagroup.seoptimizer into the global Python environment (or a workingenv), using a traditional Zope 2 instance, you can do this:
8
9* Copy ``quintagroup`` folder to your instance's */lib/python* directory.
10
11* Create a file called ``quintagroup.seoptimizer-configure.zcml`` in your instance's */etc/package-includes* directory. The file should only contain this::
12
13  <include package="quintagroup.seoptimizer" file="configure.zcml" />
14
15* Create a file called ``quintagroup.seoptimizer-overrides.zcml`` in your instance's */etc/package-includes* directory. The file should only contain this::
16
17  <include package="quintagroup.seoptimizer" file="overrides.zcml" />
18
19* Restart the Zope server, for example with the following command in the terminal::
20
21   $ ./bin/zopectl restart
22
23
24Buildout
25--------
26
27Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance recipe to manage your project, you can do this:
28
29* Add ``quintagroup.seoptimizer`` to the list of eggs to install, e.g.::
30
31   [buildout]
32   ....
33   eggs =
34        ...
35        quintagroup.seoptimizer
36
37* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
38
39   [instance]
40   ...
41   zcml =
42       quintagroup.seoptimizer
43       quintagroup.seoptimizer-overrides
44
45* Re-run buildout, e.g. with::
46
47   $ ./bin/buildout
48
49* Restart the Zope server, e.g with the following command in the terminal::
50
51   $ ./bin/instance restart
52
53Install quintagroup.seoptimizer via ZMI portal_setup  -> *Import* tab. Select ``quintagroup.seoptimizer`` from the list of available profiles and press *Import all steps*.
54
55Uninstallation
56==============
57
58To uninstall quintagroup.seoptimizer - go to ZMI portal_setup  -> *Import* tab. Select ``quintagroup.seoptimizer uninstall`` profile from the list of available profiles and press *Import all steps*.
Note: See TracBrowser for help on using the repository browser.