Missing images in Wikis after migration to IBM Connections 5.5

Created:
Last Update:

Author: Christoph Stoettner
Read in about 2 min · 227 words

Fountain pen and a notebook

Photo by Aaron Burden | Unsplash

Wikis in IBM Connections 5.5 have a little bug, because the link (/library instead of /wikis/form/api/library) for images are wrong and so they are not displayed.

There is a technote , which should solve this issue, but the used way with ProxyPass is not what i want to use. When you use ProxyPass and ProxyPassReverse you should add a ProxyRequest off to be more secure. ProxyPass to localhost can be a problem too, i would suggest to change localhost to the Connections IHS Hostname.

Why do I use a different approach?

Most of my deployments already use a RewriteRule to redirect the hostname to there Connections Homepage, so i don’t need an additional module (which needs ressources and can have security considerations), when i can solve the image issue through mod_rewrite.

RewriteRule "^/library/(.*)" "/wikis/form/api/library/$1" [R,L]

If you haven’t set <forceConfidentialCommunications enabled="true"/> in LotusConnections-config.xml you need to set the RewriteRule and the ProxyPass config within your http and your https configuration parts!

Example httpd.conf:

...
# HTTP configuration
<VirtualHost *:80>
    ServerName connections.example.com

    RewriteEngine On

     # Redirect hostname to Homepage
    RewriteRule ^\/$ https://connections.example.com/homepage [noescape,L,R]

    # Fix wrong wiki image URL
    RewriteRule "^/library/(.*)" "/wikis/form/api/library/$1" [R,L]
</VirtualHost>
# HTTPS configuration
<VirtualHost *:443>
    ServerName connections.example.com

    RewriteEngine On

    # Redirect hostname to Homepage
    RewriteRule ^\/$ https://connections.example.com/homepage [noescape,L,R]

    # Fix wrong wiki image URL
    RewriteRule "^/library/(.*)" "/wikis/form/api/library/$1" [R,L]

    SSLEnable
    SSLProtocolDisable SSLv2 SSLv3
</VirtualHost>
...
Author
Add a comment
Error
There was an error sending your comment, please try again.
Thank you!
Your comment has been submitted and will be published once it has been approved.

Your email address will not be published. Required fields are marked with *

Suggested Reading
Aaron Burden: Fountain pen and a notebook
IBM released CR4 for IBM Connections 4.5 yesterday evening. You can download CR4, TDISOL and some Cognos Updates at following links: Fix list for IBM Connections 4.5 CR4 Updating the IBM Connections 4.5 databases to the required schema versions for Cumulative Refresh 4 (CR4) Fix Central Download Link New functions included in IBM Connections 4.5 CR4 New Functions After deploying CR4 you can enable some new features: Hash tags in status update replies Add <properties> <genericProperty name="com.ibm.connections.ublog.hashtagCommentEnabled">enabled</genericProperty> </properties> to lotusconnections-config.xml Now you can use hash tags in replies. Include file links in status update replies Activate with: <properties> <genericProperty name="com.ibm.connections.ublog.attachmentCommentEnabled">enabled</genericProperty> </properties> Now you get a add file in the reply window and you can attach one file:
Created:
Last Update:
Read in about 2 min
Aaron Burden: Fountain pen and a notebook
IBM finally released CR2 for IBM Connections 4.5 You find more details and download links here . One fix is the hard coded wikis toc strings. Will test it. Update You have to update FNCS to 2.0.0.1-FNCS-IF001 . Document contains a short description of the update procedure (Do not forget to read the whole document! Backup the files, because you have to restore them later). Cognos and Metrics Database needs some changes .
Created:
Last Update:
Read in about 1 min
Card image cap
I have read about a new function in IBM Connections Wiki, which I missed until now. A new macro to create a table of contents within a wiki page. The activation of this macro is documented here: Wikis configuration properties wikimacros.enabled Specifies whether macros are enabled in Wikis. You can use macros to automate common tasks, such as generating a table of contents in a wiki page. The default value of this parameter is false. To enable macros, set the value to true. When enabled, macros are available from the Macros menu in the editor toolbar. Documentation I’m a little confused (the config option should be editor.
Created:
Last Update:
Read in about 3 min