Hi,
A client has built a results page using a freemarker template that loads the header content from an external url:
<#ftl encoding="utf-8" />
<#import "/web/templates/modernui/funnelback_classic.ftl" as s/>
<#import "/web/templates/modernui/funnelback.ftl" as fb/>
<!-- start head_index -->
<@fb.IncludeUrl url="https://www.myexamplewebpage.com/search/head_index.html.inc" />
<!-- end head_index -->
The url is reachable from the server (and from anywhere else) but when the page loads, the external content doesn't display and the following error is shown (when viewing the page's source):
<!-- start head_index -->
<!-- start head_index -->
<!-- Error while requesting remote content. Please check the logs --><!-- end head_index -->
<!-- end head_index -->
I have tried replacing the url with a generic http page, and that loads with no issues.
The funnelback version is 15.10.0 (45106 #60) - could you please let me know if this is a known issue that has been fixed in later releases?