dotnetnuke

DotNetNuke and Subversion guidelines

不问归期 提交于 2019-12-07 19:43:13
问题 I've Googled, Binged, and here at StackOverflow, looked through the related questions and searched, but I'm not finding what I'm looking for. I've also searched documentation on DNN. What I'm looking for is any guidance (tutorials, blogs, step-by-step instructions for setting up a repository) etc from people who are experienced in using DotNetNuke with SVN. We use SVN for all our source control, and have no problem with standard applications, because we pretty much built the repository and

DNN redirect Loop

痞子三分冷 提交于 2019-12-07 06:53:34
问题 I am trying to duplicate an existing DNN portal that I have for testing purposes by creating a duplicate of the database and duplicating the .net files into a new folder. After I copied the site and changed the webconfig to point to the new site and changed the alias in the database I am getting this error. This webpage has a redirect loop. The webpage at http://xxx.us/xxx/default.aspx has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may

How can I launch a windows application from a webpage?

风流意气都作罢 提交于 2019-12-07 05:27:32
问题 We have a company intranet and the powers that be think it would be nice to have a collection of icons/links representing the applications that most reps use (Outlook, Excel, few other apps). The idea would be that if the application is installed, clicking the link/icon would launch the application on the client machine. Anyone ever had a requirement like that and been successful implementing it? Wanted to reach out to everyone before I go back and say no. Thanks in advance for any replies.

DotNetNuke - Header, Content and Footer

限于喜欢 提交于 2019-12-07 02:17:00
问题 Is there any way, like one does with WordPress, to create a header.php, theme-file.php and footer.php and then combine them using hooks? It seems crazy to me to still duplicate skin files especially when you need to make minor changes to the content of either a header or footer. Many thanks 回答1: A skin is just an ascx control, so you can encapsulate parts of it just like you would any other WebForms view. You can put the header/footer content into their own ascx file, and then just include

How to Align 3 DIVs next to each other?

笑着哭i 提交于 2019-12-06 20:43:12
问题 I'm needing to create 3 DIVs in a footer container DIV that are aligned left, middle and right. All the CSS examples I've seen make use of floats as I've done. However, for some reason DotNetNuke is not parsing the CSS correctly. I'm finding that the left pane is floating correctly, but the right and middle panes are positioned immediately below it instead of next to it. Here's a snippet from my ascx file: <div id="footer"> <div id="footerleftpane" runat="server"> <dnn:LOGO id="dnnLogo" runat

Configure URL in IIS

六眼飞鱼酱① 提交于 2019-12-06 14:38:56
I have an existing DNN site set up in IIS and I want to link to another ASP.NET application in a separate folder. I want to maintain the same domain URL as follows: http://dnn9.dnndev.me/otherapplication Can anyone point me in the right direction? UPDATE Currently, the main DNN site is set up as its own site in IIS (not under Default Web Site)., with its own App Pool. I tried adding a virtual directory to the main DNN site, pointing to the other application folder. It gives a 404. I added <location path="." inheritInChildApplications="false"> around the system.web section of the DNN site web

How to handle the “Maximum length exceeded” error nicely?

亡梦爱人 提交于 2019-12-06 12:47:49
问题 I encounter "maximum length exceeded" error when I try to upload a document which is 9MB in size. I know that the issue will be solved if httpRuntime maxRequestLength and requestLengthDiskThreshold in web.config are increased but what I am looking for is how I can nicely handle the error and show the message to the user. I did try to use Application_Error event in global ascx but the event is not fired. The reason might be from Server.Transfer from DNN PageBase class's OnError method.

DNN portal alias with internal IP

99封情书 提交于 2019-12-06 10:14:16
I'm having trouble figuring out if/how I can an internal webserver setup for testing with mutliple DNN portals. I'm pretty new to DotNetNuke, so I'm not sure if what I want to do is even possible. My server is at an IP of 192.168.15.16. I have the main portal set up with a portal alias of this IP. That site works fine. But then I have a couple other sites (lets call them A and B) to configure. I'd like to navigate to 192.168.15.16/A and 192.168.15.16/B to view these sites. Portal aliases to these don't seem to cut it. I get a 404 error and I believe it's because IIS adds A or B to the physical

How to avoid jquery conflict in dnn

烂漫一生 提交于 2019-12-06 07:37:28
I am working on dnn modules development. Jquery is calling many times as the number of modules increases on the same page. (function ($) { $('#grid').hoverfold(); })(jQuery); This is what I used to avoid conflict. If I use the same for the next effect it is not working. For example, If you look at /DesktopModules/Admin/HostSettings/HostSettings.ascx you will notice that dnn core developers are using following code: (function ($, Sys) { $(document).ready(function () { //Your code goes here. }); }(jQuery, window.Sys)); Apart from this, if you notice the $(document).ready function, they are

How to use asynchronous (non-blocking) javascript with DNN Client Resource Management

匆匆过客 提交于 2019-12-06 06:08:39
问题 I use DNN's Client Resource Management for loading javascript and css into a theme (skin) this way I can take advantage of minification and composite files but I need them to be asynchronous (non-blocking). How can this be done? 回答1: So far as I know, there is not a way to use the async (or defer ) attribute on the <script> tag that is rendered by the Client Resource Management Framework. You can add an attribute to the <script> (or <link> ) tag rendered by the Client Resource Management