PT Sync Multi Server Configuration
From ADF Docs
Overview
The following feature is implemented to sync custom element data across multiple CommonSpot servers and sites.
The steps below identify the configurations to setup and configure.
Enable Multi Server
- Navigate to the App Configuration Manager page.
- Edit the record and open the "Features" tab. Update the "Enable Multi Server Configuration" field to "True".
- Reset the ADF for the server and site.
Configuration
- Within the PT Sync App directory, locate the following XML file (/ADF/apps/pt_sync/site_files/_cs_apps/config/ptSync.xml).
- Copy this file into the source site directory (/_cs_apps/config/). If the directory does not exist, then create it.
- Update the XML file that was copied into the source site. The XML file is formatted to build a relationship for CommonSpot servers and the sites within the server.
- The following example with setup the configuration for a server named "csServer1" and contains two sites named "mySite1" and "mySite2". Also, another server named "csServer2" and contains a single site named "myOtherSite1".
<?xml version="1.0" encoding="utf-8"?>
<settings>
<SERVERS>
<csServer1>
<id>1</id>
<display>CS Server 1</display>
<url>http://csServer1/</url>
<SITES>
<mySite1>
<id>1</id>
<display>My Site 1</display>
</mySite1>
<mySite2>
<id>2</id>
<display>My Site 2</display>
</mySite2>
</SITES>
</csServer1>
<csServer2>
<id>2</id>
<display>CS Server 2</display>
<url>http://csServer2/</url>
<SITES>
<myOtherSite1>
<id>1</id>
<display>My Other Site 1</display>
</myOtherSite1>
</SITES>
</csServer2>
</SERVERS>
</settings>