if you facing the security issue in DNN 3.x
the only thing you can do is add an entry in web.config and run under MS.NET 2.0 runtime.
Add this entry in <system.web>
<httpCookies httpOnlyCookies=”true” requireSSL=”false” domain=”” />
Hope it helps.
Archive for the ‘Uncategorized’ Category
Cross Site Scripting Issue in DotNetNuke 3.x
Posted in Uncategorized, tagged dotnetnuke cross site scripting on November 7, 2008 | Leave a Comment »
How to add meta tag in DotNetNuke
Posted in Uncategorized, tagged dotnetnuke on November 5, 2008 | Leave a Comment »
If you wish to add a meta tag in DotNetNuke, here the step to do it.
Go to Admin tab –> Page –> Click the page (home tab, for instance) –> the Page Settings –> Advanced Settings –> Page Header Tags
Enter the content you require, ie. I use this feature to date each of the pages [...]
Error load CSS, Images or JS in DNN Skin
Posted in Uncategorized, tagged DNN Skin on September 10, 2008 | Leave a Comment »
When you develop DNN Skin, always keep in mind you need to have put <%= SkinPath %> for your CSS and Images in your DNN skin development
for instance,
Put an image into the Skin, same directory with Skin ACSX but with a sub folder to put all skin’s images
<img src=”<%= SkinPath %>images/button_calendar.gif” border=”0″ alt=”Start Now” />
Put [...]