Does anybody know how to set this up? I have under module's project properties start url as http://localhost:16555/default.aspx which is what webmatrix shows as my dnn site.
I tried using locall IIS express web server, tried custom but it always shows that symbols were not loaded, and it showing them as being loaded from temp asp.net folder, not from the dnn bin.
Related
I'm developing an angular application with a webAPI 2 backend. I'm developing them entirely independently (in different repositories, different directories, etc. The angular project isn't a visual studio project at all. I'm using WebStorm for it).
Both the front and the backend are working great when debugging, but I can't figure out how to get the backend to work when deploying. I deployed it to <application>/api and I put the angular application in <application>.
However, whenever I go to <application.com>/api, I get a 500 error. I also get a 500 whenever I call it from the angular app.
In IIS, I created a Website where the application lives. I clicked on the api folder and converted it to an Application. Is there anything else I need to be doing?
I ended up having to follow this post to fix it.
Click "Start button"
in the search box, enter "Turn windows features on or off"
in the features window, Click: "Internet Information Services"
Click: "World Wide Web Services"
Click: "Application Development Features"
Check (enable) the features. I checked all but CGI.
IIS - this configuration section cannot be used at this path (configuration locking?)
Windows Server 2008 R2
IIS 7.5
DNN 7.2.1
Application Pool - .NET Framework Version = v4.0
After fresh install I get the problem when ControlBar is showing like this in IE10:
and does not respond to any actions.
And Google Chrome shows the website like:
Start by checking to see why your IIS site isn't serving up STATIC Files. Looks like your CSS and Images aren't loading.
Also, make sure the site is not running in Compatibility Mode or you didn't accidentally place the site on the Compatibility list.
You can also try hitting F12, going to the Network tab and refreshing the site. This will let you see if any resources (css/js) aren't getting loaded (404).
It seems that DNN is undergoing an upgrade and I cannot access the forums or many of the docs. Needing an answer soon, and Google providing too many varied types of hits (none of which are helpful or most of which post to the DNN site that is undergoing that upgrade), I had a few questions about setting up DNN.
First, I am coming from Orchard. There I was able to use Webmatrix - I downloaded the web version, opened as administrator, created modules, messed with themes, etc. Using the Orchard Docs, I was able to set up a multi-tenant site and run it on local host (IIS express through Webmatrix) - this included modifying the host/config files to view the multi-tenant sites. I could then publish to my own server running IIS 7. On the server I set up the landlord site then bound the tenants with no problem.
Being new to DNN (and things not being readily available at the moment on their site), I was hoping I could get some guidance on how to set up DNN similar to what I did with Orchard.
First question is obviously whether or not that is possible (i.e., no IIS, only IIS Express (Webmatrix) on my local machine).
Here would be my other questions:
If I can run it locally, can I just download the 7.1.0 new install package, and open Webmatrix (as Admin) on the folder I unzipped it in?
Assuming I just "Run" the website, I will then set up the "Landlord" instance of DNN on the following screens, correct? (i.e., where it asks for credentials and what DB setup I can use)
Can I then go ahead and create sub-tenant sites (alias/portal)? If so, do I go about manually updating my host/config files to run those tenants (depending on the port)?
Assume all of the above is correct, do I have to "reinstall" the 7.1.0 package on my webserver, or will a simple publish from Webmatrix do (with the proper credentials in Settings)? If so, I can handle pointing to the landlord on my server and then binding my subtenants in IIS.
Sorry for the n00b questions. Thanks!
On the Download page on dnnsoftware.com, there's a link to click which will start the install process within WebMatrix: http://www.microsoft.com/web/gallery/install.aspx?appsxml=www.microsoft.com%2fweb%2fwebpi%2f2.0%2fWebApplicationList.xml&appid=106
When you create a new portal, you can specify that it uses a URL which is a subdirectory of the current URL (i.e. a child portal alias), so that you don't have to use different ports. I'm not especially familiar with IIS Express, so I would expect that you could point multiple ports to the site, and map those as different portal aliases, but not sure exactly how you could do that, if you don't want to make use of child portal aliases.
To publish a site, you should just need to push the file system and database, and setup IIS.
I have a new WinForms application that I'm trying to deploy with the ClickOnce method. However, the app.config file that is needed for the application is not included with the installation.
The application is installed properly from the server, and launches the exe, but as soon as I try to login by hitting my WCF Server, I get.
"Could not find the file 'C:\Documents and Settings\Adminstrator\Local Settings\Apps\2.0\7KAA3h20\app.config"
I can manually copy the file from my development machine to this folder and the application works fine.
Any ideas?
The application settings are included in the ClickOnce application as yourappname.exe.config. Are you accessing the app.config through a different mechanism that the global app settings?
Config file is included by default. Are you removing it for some reason?
You can choose files to be deployed on properties page (application files) if you are using Visual Studio.
If file is not in the list, you can add it to project and set build action to "Content" and it will show up in this list.
I am trying to get started with Azure so that we can port an existing Silverlight app to Azure.
Problem: On running the Windows Azure project that contains Silverlight web app in web role, a blank page is displayed in browser due to error 2104: Could not download Silverlight application. Check web server settings
Things that I have tried
.xap mime type is registered for the Default Web Site in IIS7. Even the applicationHost.config file contains the right entries.
I have restarted the storage and compute emulators and performed IIS reset.
I also tried to put the following code in the silverlight app web.config
<system.webServer>
<staticContent>
<mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" />
</staticContent>
But this caused a compile error. Something tot he effect of not being able to attach the debugger to iis worker...
Any ideas how I can fix this issue?
Got the Problem. I had set the Mime type on the "Default Web Site". I needed to set it on the IIS Server (The topmost item in the tree).
It works now.