Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

  •  07-26-2012, 9:33 AM

    Re: Failed to load resource: the server responded with a status of 500(Internal Server error)

    Hi.,
     
     I tried the below thing with my webconfig one by one...
     
    <add key="CuteWebUI.AjaxUploader.RewritePath" value="IIS7" />
    <add key="CuteWebUI.AjaxUploader.RewritePath" value="RawUrl" />
    <add key="CuteWebUI.AjaxUploader.RewritePath" value="PathAndQuery" />
     
    and this is my webconfig code.
     
    <?xml version="1.0"?>
     
    <configuration>
      
      <system.web>
        <trace pageOutput="false" requestLimit="10" enabled="false" localOnly="true"
        traceMode="SortByTime" mostRecent="true"/>
        <customErrors mode="Off"></customErrors>
        <compilation debug="true" targetFramework="4.0" defaultLanguage="c#" />
        <trust level="Full" />
        <httpModules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
        </httpModules>
      </system.web>
      <appSettings>
       // My connection string is here....
     
        <add key="CuteWebUI.AjaxUploader.UploadSpeedKB" value="100" />
         <add key="CuteWebUI.AjaxUploader.TempDirectory" value="~/ArticleImages"/>
        <add key="CuteWebUI.AjaxUploader.RewritePath" value="PathAndQuery" />
        <add key="AjaxUploaderLicense" value="~/License/AjaxUploader.lic" />
      </appSettings>
      <system.webServer>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
        <validation validateIntegratedModeConfiguration="false" />
      </system.webServer>
    </configuration>
     
     
View Complete Thread