PT Forums CCAPI Configuration

From ADF Docs
Jump to: navigation, search

Back to Build Templates/Pages

Overview

The Forums Application uses the ADF CCAPI to populate forum element records for user settings, categories, topics, threads and messages. The CCAPI needs to be configured for the site and forums application.

First, follow the steps to set up the CCAPI Config file for the site. Once that configuration is complete, follow the steps below to set up the CCAPI config for the Photo Gallery application. Make sure to update the wsVars section with the correct URLs and username/password.

Setup

  1. Create a new page called 'ccapiForums'. Recommend creating this page in the /webadmin/forums/ subsite.
  2. Add each of the following Forums elements to the page:
    1. Forum Categories
    2. Forum Topics
    3. Forum Threads
    4. Forum Messages
    5. Forum User Settings
    6. Forum Subscriptions
  1. For each element that was added, click on the element indicator and go to 'more...'. Select 'Name' from the menu.
  2. In the Element Name field, enter the appropriate name for each element:
    1. ccapiForumCategories
    2. ccapiForumTopics
    3. ccapiForumThreads
    4. ccapiForumTopicsMessages
    5. ccapiForumUserSettings
    6. ccapiForumSubscriptions
  1. Publish this page and view in read mode.
  2. Edit the 'ccapi.cfm' file for the site and add the following xml blocks into the <elements> section:
    1. an example 'ccapi.cfm' file is in the pt_forum > site-files > _cs_apps > config folder
<ForumCategories>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumCategories</controlName>
</ForumCategories>
<ForumTopics>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumTopics</controlName>
</ForumTopics>
<ForumThreads>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumThreads</controlName>
</ForumThreads>
<ForumMessages>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumTopicsMessages</controlName>
</ForumMessages>
<ForumUserSettings>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumUserSettings</controlName>
</ForumUserSettings>
<ForumSubscriptions>
  <pageID>####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiForumSubscriptions</controlName>
</ForumSubscriptions>

To populate the <pageID> and <subsiteID> tags, view the 'source' code for the 'ccapiForums' page that was just created.

Identify the following line in the source code and enter this numeric value into the <subsiteID> tag:

     var jsSubSiteID = ##;

Identify the following line in the source code and enter this numeric value into the <pageID> tag:

     var jsPageID = ####;

Reset the ADF for the server and site.