YAFLogo
i get a timeout when i try uploading a file of about 5mb .. "Request Timed out" ...
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="10192" requestLengthDiskThreshold="108192" requestValidationMode="2.0" />
Show Spoiler
i get a runtime error when i add the http runtime tag to my web.config file
Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>
<customErrors mode="Off"/>
Server Error in '/' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'requestValidationMode'. Note that attribute names are case-sensitive. Source Error: Line 13: </system.net> Line 14: <system.web> Line 15: <httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="10192" requestLengthDiskThreshold="108192" requestValidationMode="2.0" /> Line 16: <trace enabled="false"/> Line 17: <xhtmlConformance mode="Transitional"/> Source File: C:\Inetpub\vhosts\woonick.com\httpdocs\web.config Line: 15
Server Error in '/' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'requestValidationMode'. Note that attribute names are case-sensitive. Source Error: Line 13: </system.net> Line 14: <system.web> Line 15: <httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="10192" requestLengthDiskThreshold="108192" requestValidationMode="2.0" /> Line 16: <trace enabled="false"/> Line 17: <xhtmlConformance mode="Transitional"/> Source File: C:\Inetpub\vhosts\woonick.com\httpdocs\web.config Line: 15 error message
The YAF.NET Support Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies. More Details Close