When you are adding the Web Server (IIS) role to Windows Server 2008 that the ASP feature is not added by default.
Start Server Manager select the Web Server (IIS) Role. Click on Add Role Services. Make sure you have ASP and Server Side Includes and ASP.NET selected.
Also select the IIS 6 Management Compatibility features which are found near the bottom of the list of features.
Depending on the sequence of install and role addition operations it may happen that ASP.NET v4 is not properly registered with IIS.
To verify, open a Command Prompt window as an Administrator, navigate to C:\Windows\Microsoft.NET\Framework\v4.0.30319 folder, and execute this command:
aspnet_regiis -lv
The output produced should contain a line like this one:
4.0.30319.0 C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll
If it does not, execute this command:
aspnet_regiis.exe -i
If your server is a 64-bit machine, you may need to do the same from C:\Windows\Microsoft.NET\Framework64\v4.0.30319 folder.
You need to run each of your Dovetail web applications in their own Application Pool.
Parent Paths need to be enabled when an asp page includes a script with a path containing a ".." An example would be:
<!--#include file="../include/inc_room.asp"-->
Dovetail Admin does use parent paths.
For Dovetail Admin to work with all versions of MS Internet Explorer equal to and higher than 8, a proper HTTP Response Header must be set:
Click OK to save.
Dovetail Admin ships with web.config file containing this setting:
<modules runAllManagedModulesForAllRequests="true"></modules>
It is required on Windows Server 2008 or earlier. If not present, it may cause HTTP error 404 on clone and delete actions against user-defined pop-up list element.
Consult this article for details.
When you try to browse your web application you may run into this message telling you... "Something went going wrong but sorry I won't tell you what." That error looks like this:"
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
To see the actual error, you can configure the application to send errors to the browser. This is helpful when debugging a problem.
Additional Information on configuring ASP applications on IIS7 is available online.
See Also |
Next |