Changes between Version 2 and Version 3 of qSEOptimizer/install


Ignore:
Timestamp:
Jan 13, 2010 3:25:28 PM (14 years ago)
Author:
olha
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • qSEOptimizer/install

    v2 v3  
    11= SEOptimizer Installation = 
     2 
     3== Traditional Instance (not buildout) 
    24 
    35To install quintagroup.seoptimizer into the global Python environment (or a workingenv), using a traditional Zope 2 instance, you can do this: 
    46 
    5     * 
     7 * Copy '''quintagroup''' folder to your instance '''/lib/python''' directory. 
     8 * Create a file called '''quintagroup.seoptimizer-configure.zcml''' in your instance '''/etc/package-includes''' directory. The file should only contain this: 
    69 
    7       Copy quintagroup folder to the /path/to/instance/lib/python directory. 
    8     * 
     10{{{ 
     11   <include package="quintagroup.seoptimizer" file="configure.zcml" /> 
     12}}} 
    913 
    10       Create a file called quintagroup.seoptimizer-configure.zcml in the /path/to/instance/etc/package-includes directory. The file should only contain this: 
     14 * Create a file called '''quintagroup.seoptimizer-overrides.zcml''' in your instance '''/etc/package-includes''' directory. The file should only contain this: 
    1115 
    12       <include package="quintagroup.seoptimizer" file="configure.zcml" /> 
     16{{{ 
     17   <include package="quintagroup.seoptimizer" file="overrides.zcml" /> 
     18}}} 
    1319 
    14     * 
     20 * Restart the Zope server, for example with the following command in the terminal: 
    1521 
    16       Create a file called quintagroup.seoptimizer-overrides.zcml in the /path/to/instance/etc/package-includes directory. The file should only contain this: 
     22{{{ 
     23   $ ./bin/zopectl restart 
     24}}} 
    1725 
    18       <include package="quintagroup.seoptimizer" file="overrides.zcml" /> 
     26 * Install quintagroup.seoptimizer via ZMI '''portal_setup'''. Select '''quintagroup.seoptimizer''' from the list of available profiles and press '''Import all steps'''. 
    1927 
    20     * 
    2128 
    22       Restart the Zope server, for example with the following command in the terminal: 
     29== Buildout-based instance == 
    2330 
    24       $ ./bin/zopectl restart 
     31If you are using zc.buildout and the plone.recipe.zope2instance recipe to manage your project, you can do this: 
    2532 
    26 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance recipe to manage your project, you can do this: 
     33 * Add quintagroup.seoptimizer to the list of eggs to install, e.g.: 
    2734 
    28     * 
     35{{{ 
    2936 
    30       Add quintagroup.seoptimizer to the list of eggs to install, e.g.: 
     37   [buildout] 
     38   .... 
     39   eggs = 
     40        ... 
     41        quintagroup.seoptimizer 
     42}}} 
    3143 
    32       [buildout] 
    33       .... 
    34       eggs = 
    35            ... 
    36            quintagroup.seoptimizer 
     44 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
    3745 
    38     * 
     46{{{ 
    3947 
    40       Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     48   [instance] 
     49   ... 
     50   zcml = 
     51       quintagroup.seoptimizer 
     52       quintagroup.seoptimizer-overrides 
     53}}} 
    4154 
    42       [instance] 
    43       ... 
    44       zcml = 
    45           quintagroup.seoptimizer 
    46           quintagroup.seoptimizer-overrides 
     55 * Re-run buildout, e.g. with: 
    4756 
    48     * 
     57{{{ 
     58      $ ./bin/buildout 
     59}}} 
    4960 
    50       Re-run buildout, e.g. with: 
     61 * Restart the Zope server, e.g with the following command in the terminal: 
    5162 
    52       $ ./bin/buildout 
     63{{{ 
     64      $ ./bin/instance restart 
     65}}} 
    5366 
    54     * 
     67 * Install quintagroup.seoptimizer via ZMI '''portal_setup'''. Select '''quintagroup.seoptimizer''' from the list of available profiles and press '''Import all steps'''. 
    5568 
    56       Restart the Zope server, e.g with the following command in the terminal: 
     69== Uninstallation == 
    5770 
    58       $ ./bin/instance restart 
    59  
    60 Install quintagroup.seoptimizer via ZMI portal_setup. Select quintagroup.seoptimizer from the list of available profiles and press Import all steps. 
    61 Uninstallation 
    62  
    63 To uninstall quintagroup.seoptimizer - select quintagroup.seoptimizer uninstall profile from the list of available profiles and press Import all steps. 
     71To uninstall quintagroup.seoptimizer - select '''quintagroup.seoptimizer uninstall''' profile from the list of available profiles and press '''Import all steps.'''