web.config settings problem [modified]
-
Hi When i set the attribute 'requestLengthDiskThreshold' in web.config file under tag im getting the following error "The attribute 'requestLengthDiskThreshold' has been locked in a higher level configuration." But its working fine locallly. when i work on web server im getting this error. Please inform me any idea related to this..because its very urgent for me Regards RPL -- modified at 8:00 Wednesday 13th December, 2006 r_palanivel83 10:01 4 Jan '06
-
Hi When i set the attribute 'requestLengthDiskThreshold' in web.config file under tag im getting the following error "The attribute 'requestLengthDiskThreshold' has been locked in a higher level configuration." But its working fine locallly. when i work on web server im getting this error. Please inform me any idea related to this..because its very urgent for me Regards RPL -- modified at 8:00 Wednesday 13th December, 2006 r_palanivel83 10:01 4 Jan '06
This would suggest that a higher level config file (such as machine.config) is locking the attributes. This is normally done like this:
<configuration> <location application="App1" allowOverride = "false"> <system.web> </system.web> </location> </configuration>
Unfortunately, you cannot remove this at the level you are at. It is a feature to prevent you from overriding server settings that could compromise the server.the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before. -
This would suggest that a higher level config file (such as machine.config) is locking the attributes. This is normally done like this:
<configuration> <location application="App1" allowOverride = "false"> <system.web> </system.web> </location> </configuration>
Unfortunately, you cannot remove this at the level you are at. It is a feature to prevent you from overriding server settings that could compromise the server.the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.Hi Pete Please give me any idea to solve this problem.i need to upload over 10MB size of file on my web server. Regards RPL
r_palanivel83 10:01 4 Jan '06
-
Hi Pete Please give me any idea to solve this problem.i need to upload over 10MB size of file on my web server. Regards RPL
r_palanivel83 10:01 4 Jan '06
RPL - sorry to say, but if you're on a commercial web server then you probably aren't going to be able to do this via the upload file option because, as I stated earlier, the machine.config file has locked down parts of the settings. Can you use FTP to transfer the file up instead? Alternatively, you need to get your web host to relax the rules for your application.
the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.