source: products/quintagroup.plonegooglesitemaps/trunk/docs/INSTALL.txt @ 1728

Last change on this file since 1728 was 1728, checked in by mylan, 14 years ago

Add flag for turn-on/off catalog updating. By default set to False. Update INSTALLATION file with cataog updating instructions

  • Property svn:eol-style set to native
File size: 2.0 KB
RevLine 
[1591]1quintagroup.plonegooglesitemaps Installation
[1642]2============================================
[1591]3
[1642]4Buildout
5--------
[1591]6
[1642]7To install quintagroup.plonegooglesitemaps to your buildout-based project:
[1591]8
[1642]9* Add ``quintagroup.plonegooglesitemaps`` to the list of eggs to install::
[1591]10
11    [buildout]
12    ...
13    eggs =
14        ...
15        quintagroup.plonegooglesitemaps
16       
[1642]17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
[1591]18
19    [instance]
20    recipe = plone.recipe.zope2instance
21    ...
22    zcml =
23        quintagroup.plonegooglesitemaps
24     
[1642]25* Re-run buildout, e.g. with::
[1591]26
27    $ ./bin/buildout
[1642]28   
29* Restart the Zope server, e.g with the following command in the terminal::
30
31   $ ./bin/instance restart
32   
33* Install ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)
[1591]34       
[1642]35       
36Traditional Zope 2 instance
37---------------------------
[1634]38
[1642]39To install quintagroup.plonegooglesitemaps into the global Python environment (or a workingenv),
40using a traditional Zope 2 instance, you can do this:
[1634]41
[1642]42* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory.
[1634]43
[1642]44* Create a file called ``quintagroup.plonegooglesitemaps-configure.zcml`` in your instance's ``/etc/package-includes`` directory. The file
45should only contain this::
[1634]46
[1642]47    <include package="quintagroup.plonegooglesitemaps" />
[1634]48
[1642]49* Restart the Zope server, for example with the following command in the terminal::
50
51   $ ./bin/zopectl restart
52
53* Install ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)
[1728]54
55
56IMPORTANT
57---------
58
59* After installation portal_catalog rebuild needed.
60  By default catalog NOT rebuilded. You may rebuild catalog in 2 ways:
61   ** by hand: go to /<plone instance id>/portal_catalog/manage_catalogAdvanced
62       and push *Update* button.
63   ** allow catalog rebuilding on quintagroup.plonegooglesitemap installation.
64      For that - set *UPDATE_CATALOG* property to *True* in
65      quintagroup.plonegooglesitemaps.config python module.
Note: See TracBrowser for help on using the repository browser.