Changes between Version 8 and Version 9 of UserGuidelines/Admin/Synchronization


Ignore:
Timestamp:
09/24/11 19:35:13 (13 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserGuidelines/Admin/Synchronization

    v8 v9  
    1919== Configuration ==
    2020
     21=== Prerequisites ==
     22
     23Both sites must have Sahana Eden installed and running.
     24
     25To avoid problems with different database structures, both instances should always use the same version of the software.
     26
     27Check that both instances have the synchronization module enabled in models/000_config.py. If the ''sync'' section is missing from deployment_settings.modules, then add it as follows:
     28
     29{{{
     30deployment_settings.modules = OrderedDict([
     31
     32    ...
     33
     34    # Add or uncomment this section, if it is missing or commented:
     35    ("sync", Storage(
     36            name_nice = T("Synchronization"),
     37            description = T("Synchronization"),
     38            restricted = True,
     39            access = "|1|",     # Only Administrators can see this module in the default menu & access the controller
     40            module_type = 0     # This item is handled separately for the menu
     41        )),
     42
     43    ...
     44
     45])
     46}}}
    2147=== Worker ===
    2248