Hi all,
I have been using the previous version of this moduke for a long time now and today updated to the new version. However after updating I lost all my feeds. After a little investigation I hove found if I have AJAX turned on in the settings I get a blank page. If I turn AJAX off I get the following error:
An error has occurred.
Feed errors:
Feed '
http://www.guildwars.com/newsarchive/...' could not be loaded. Error: Download error (XSLT compile error.)
I have the XSL to use a custom written XSL file and it contains the following:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:param name="ItemsToShow"/>
<xsl:param name="ShowItemDetails"/>
<xsl:param name="ShowItemDate"/>
<xsl:param name="Locale"/>
<xsl:template match="rss">
<table border="0" bordercolor="#660000">
<xsl:for-each select="channel/item">
<tr>
<td height="32" BACKGROUND="http://www.loreofmythos2.com/Portals/0/Images/News/fader.jpg">
<xsl:if test="$ShowItemDate='true'">
<p class="DNN_News_ItemDate"><font face="Tahoma" size="2" color="white">
<xsl:value-of select="substring(pubDate,1,25)"/></font>
</p>
<p> </p>
</xsl:if>
</td>
</tr>
<tr>
<td>
<p class="DNN_News_ItemLink"><strong><font face="Comic Sans MS" size="4" color="yellow">
<a href="{link}" target="_blank">
<xsl:value-of select="title"/>
</a></font></strong>
</p>
<p> </p>
<xsl:if test="$ShowItemDetails='true'">
<p class="DNN_News_ItemDetails"><font face="Verdana" size="2" color="white">
<xsl:value-of select="description" disable-output-escaping="yes"/></font>
</p>
</xsl:if>
</td>
</tr>
<tr>
<td><p> </p><hr/><br/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
This had been working on the previous version of this module. Please can anyone help me as to why this is doing this. My site is running DNN 5.5.1
Thanks