Hello:

I have a SSL Website with port: 99. In my web.config what and where changes I have to make in order to get through this SSL Port?

This is my Web.Config File:

<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="Test.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <connectionStrings>
  </connectionStrings>
  <system.web>
    <compilation debug="false" targetFramework="4.0" />
    <authentication mode="Forms">
      <forms loginUrl="Default.aspx" timeout="2880" />
    </authentication>
    <membership>
      <providers>
        <clear/>
        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
             applicationName="/" />
      </providers>
    </membership>
    <profile>
      <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
      </providers>
    </profile>
    <roleManager enabled="false">
      <providers>
        <clear/>
        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
      </providers>
    </roleManager>
  </system.web>
  <system.webServer>
    <security>
      <access sslFlags="Ssl"/>
       </security>
     <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

The site is showing me this err:

The page cannot be displayed You have attempted to execute a CGI, ISAPI, or other executable program from a directory that does not allow

programs to be executed.

Please try the following: •Contact the Web site administrator if you believe this directory should allow execute access. HTTP Error 403.1 - Forbidden: Execute access is denied.

Internet Information Services (IIS)

This is how my IIS 6.0 settings looks like: eHome Directory IIS 6.0 Settings

Dont know what should be done here? Does anyone have any idea about this? Thanks!

link|improve this question

1  
This looks like an IIS configuration issue. Can you find more information on the infrastructure you're hosting the site on (IIS6 vs IIS7/7.5 etc). The http/https ports are also configured within IIS, which is why you can't find the config items in the Web.Config – Tr1stan May 5 '11 at 15:33
This is an IIS configuration error. You need to grant execute permission to the web application. How you do that depends on what version of IIS you are running, as @Tr1stan said. – Charlie Kilian May 5 '11 at 15:41
It is an IIS 6.0.. – Raj May 5 '11 at 15:47
feedback

1 Answer

up vote 1 down vote accepted

Here is an image showing where you grant execute rights in IIS6 within the IIS manager

link|improve this answer
I did this, but still the same err. I edited my question with an Image, can you pls have a look at it? – Raj May 5 '11 at 15:51
@klm9971: And you're definitely configuring the correct section of IIS, you're not hosting this particular site inside a Virtual Directory that is a child of the root config you're now showing us? – Tr1stan May 5 '11 at 15:58
@T: Yes! This website is hosted into an external server which has a root and it has a folder inside that root directory....What should I do? – Raj May 5 '11 at 16:00
@klm9971: Try setting the same config (Script Only... or Script and Executables) as you've done for the root, but on the Virtual Directory that is hosting the web app. – Tr1stan May 5 '11 at 16:06
@T: In the home directory the execute permissions is: NONE – Raj May 5 '11 at 16:11
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.