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

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

INSTALL.txt updated.

  • Property svn:eol-style set to native
File size: 1.8 KB
Line 
1Installation
2============
3
4To install quintagroup.seoptimizer 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.
7
8* Create a file called ``quintagroup.seoptimizer-configure.zcml`` in the */path/to/instance/etc/package-includes* directory. The file should only contain this::
9
10  <include package="quintagroup.seoptimizer" file="configure.zcml" />
11
12* Create a file called ``quintagroup.seoptimizer-overrides.zcml`` in the */path/to/instance/etc/package-includes* directory. The file should only contain this::
13
14  <include package="quintagroup.seoptimizer" file="overrides.zcml" />
15
16* Restart the Zope server, for example with the following command in the terminal::
17
18   $ ./bin/zopectl restart
19
20
21Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance recipe to manage your project, you can do this:
22
23* Add ``quintagroup.seoptimizer`` to the list of eggs to install, e.g.::
24
25   [buildout]
26   ....
27   eggs =
28        ...
29        quintagroup.seoptimizer
30
31* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
32
33   [instance]
34   ...
35   zcml =
36       quintagroup.seoptimizer
37       quintagroup.seoptimizer-overrides
38
39* Re-run buildout, e.g. with::
40
41   $ ./bin/buildout
42
43* Restart the Zope server, e.g with the following command in the terminal::
44
45   $ ./bin/instance restart
46
47Install quintagroup.seoptimizer via ZMI portal_setup  -> *Import* tab. Select ``quintagroup.seoptimizer`` from the list of available profiles and press *Import all steps*.
48
49Uninstallation
50==============
51
52To 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.