Changing the Help Links to use HTTPS://
For Licensed (On-Prem) Adobe Connect systems, the Help Links will still use HTTP:// instead of HTTPS:// if you have configured SSL for the web application.
To change the protocol for the help pages from http:// to https:// you will need to make a modification to the following file on each server in the Adobe Connect cluster:
<xsl:variable name=”redirectUrl”>
<xsl:choose>
<xsl:when test=”($configurableWebappHelp!=” and /results/params/param[@name=’help’]=$isWebappHelp)”>
<xsl:value-of select=”$configurableWebappHelp”/>
</xsl:when>
<xsl:when test=”($configurableLoginHelp!=” and /results/params/param[@name=’help’]=$isLoginHelp)”>
<xsl:value-of select=”$configurableLoginHelp”/>
</xsl:when>
<xsl:when test=”$HELP_HOST!=””>
<xsl:value-of select=”concat(‘http://‘, $HELP_HOST, ‘/’, $localeId, /results/params/param[@name=’help’])”/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select=”concat(‘http://‘, $ADMIN_HOST, ‘/common/help/’, $locale, /results/params/param
[@name=’help’])”/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>