source: products/quintagroup.seoptimizer/tags/2.0.2/docs/INSTALL.txt @ 1552

Last change on this file since 1552 was 848, checked in by crchemist, 17 years ago

Added captcha to join_form

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