Hi,
I'm new to DNN.
We have a serious issue with DNN 4.9.5, and when I go to report this as an issue on http://support.dotnetnuke.com only versions 5.x are offered on the form.
Where can I report a bug and ask if there is a patch or get instructions on how to fix this in the DNN core?
The specific issue has to do with module caching and output for crawlers (such as Googlebot). A similar issue was reported before, and was apparently fixed in 4.9.5 - http://support.dotnetnuke.com/issue/ViewIssue.aspx?id=10419&projid=2.
Version of DNN is 4.9.5.
If the module cache is empty and a request comes from a client that DNN recognizes as a crawler, then module content is duplicated.
Steps to reproduce:
1. DNN upgrade from 4.9.0 to 4.9.5
2. Add a Text/HTML module to Left Pane.
3. Edit the module, and enter some text, for example "Hola."
4. Restart IIS or the DNN web site - or in some otehr way make sure that the moduel cache is empty.
5. Simulate requesting the page as a crawler, I used Fiddler with User-agent set to:
Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
6. Examine the reponse, you will find "Hola." repeated twice, for example:
<td id="dnn_LeftPane" valign="top" class="LeftPane"><a name="371"></a><span id="dnn_ctr371_ContentPane" class="DNNAlignleft"><!-- Start_Module_371 --><div id="dnn_ctr371_ModuleContent">
<div id="dnn_ctr371_HtmlModule_lblContent" class="Normal">
<p>Hola.</p>
</div>
<div id="dnn_ctr371_HtmlModule_HtmlModule_lblContent" class="Normal">
<p>Hola.</p>
</div>
<!-- End_Module_371 -->
</div></span>
</td>
Any information is appreciated. Thank you.