Installing Ephox Editors for Windows

Optionally install the Windows version of Ephox Editors: TinyMCE and Textbox.io for IBM Connections to use instead of its default rich text editor.

Before you begin

If upgrading, ensure that the Common.ear application has been shut down.

Procedure

  1. Make note of the location of the IBM Connections Customizations directory.
    The Ephox Editors for IBM Connections installer needs to be provided with the location of your IBM Connections Customization path. The value for this is provided by the CONNECTIONS_CUSTOMIZATION_PATH variable within WebSphere Application Server. For more information on IBM Connections customizations and the CONNECTIONS_CUSTOMIZATION_PATH see the topic, Customizing the user interface.
    Note: The Ephox Editors for IBM Connections installer only requires the root customizations directory as provided by this variable.
  2. Make note of the location of the IBM Connections Web Resources Provisioning directory.
    The Ephox Editors for IBM Connections installer needs to be provided with the path to your Web Resources Provisioning directory, for example:
    C:\IBM\Connections\data\shared\provision\webresources
    This folder allows extensions for Connections to be installed. For information on locating the IBM Connections Web Resources Provisioning directory, see the topic, Extending JavaScript in IBM Connections.
  3. Run the install.exe Installer executable.
    The installer executable, install.exe, is located in the CN80PML.zip included in the e-image that you downloaded from Passport Advantage.
    Note: The installer may require System Administrator privileges. If prompted, click Yes.
    Installer steps are as follows:
    1. Click Next on the introduction screen.
    2. When prompted, review the license agreement and select I accept the agreement.
    3. Provide the paths noted in steps 1 and 2 to their relevant box, then click Next to proceed.
      Note: Default paths are initially provided.
    4. Review the installation details, then click Install to begin installing files.
    5. Allow the installation process to finish, then click Finish to complete the installation.
  4. Update the IBM Connections Cache.
    Once the Ephox Editors for IBM Connections have been deployed, the IBM Connections server must be notified of the changes.
    1. The cache must be cleared to ensure users download the new files from the server. To update the IBM Connections server cache, perform the steps described in the topic, Post-customization step.
    2. Restart the Common enterprise application.
  5. Verify that Ephox Editors for IBM Connections has installed correctly by navigating to the following URL in any web browser: http://your server here/connections/resources/web/tiny.editors.connections/verify.html. If the installation has been successful, a confirmation message will be displayed alongside installed version numbers.
  6. Configure certificate validation to ensure that this server can connect to other servers in your IBM Connections deployment.
    1. Run the following commands to add both root and intermediate certificates to the default Java trust store of the WebSphere Java SDK (which is different from the WebSphere Cell Default Truststore where you might have added certificates already).
      Attention: Make this change on every WebSphere Application Server node.
      1. cd /opt/IBM/WebSphere/AppServer/java/jre/lib/security
      2. 
        ../../bin/keytool -import -trustcacerts -alias alias_for_root_cert -file drive:\path\root_cert_file_name -keystore cacerts -storepass changeit -noprompt
      3. 
        ../../bin/keytool -import -trustcacerts -alias alias_for_intermediate_cert -file drive:\path\intermediate_cert_file_name -keystore cacerts -storepass changeit -noprompt
    2. After you have updated all nodes, restart the cluster.
  7. Configure the use of an HTTP proxy for outgoing HTTP/HTTPS requests made by the editor's server-side components.

    Create a configuration file named application.conf and add a proxy element that defines the proxy attributes listed in Table 1.

    Table 1. Proxy settings
    Attribute Description
    http.proxyHost Required. A string defining the host name of the proxy for HTTP (unsecured) connections.
    http.proxyPort Required. An integer defining the port number of the proxy for HTTP (unsecured) connections.
    http.nonProxyHosts Optional. A list of strings separated by vertical lines ("|") listing hosts and domains to be excluded from proxying, for both plain HTTP and HTTPS connections. The strings can contain asterisks ("*") as wild cards. Defaults to "localhost|127.*|[::1]" if not set.
    https.proxyHost Optional. A string defining the host name of the proxy for HTTPS connections.
    https.proxyPort Optional. An integer defining the port number of the proxy for HTTPS connections.
    http.proxyUser Optional. User name for authenticating to both the HTTP and HTTPS proxy.
    http.proxyPassword Optional. Password for authenticating to both the HTTP and HTTPS proxy.

    The following example shows typical proxy settings:

    ephox {
        proxy {
            http.proxyHost = someproxy.internal.corp
            http.proxyPort = 8080
            https.proxyHost = someproxy.internal.corp
            https.proxyPort = 8080
            http.nonProxyHosts = localhost|*.internal.corp
        }
    }