일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 전라도여행
- 영화
- 안치환콘서트
- 서호주
- 게시판페이징
- 윈폰7
- U2
- 백스트리트보이스
- BSB
- 서호주여행
- 닷넷DB연동
- 닷넷공부법
- 안치환공연
- asp
- 광야에서
- 퍼스
- 유용주
- swell season
- ASP.NET
- 닷넷게시판리스트
- 김광석
- live8
- The Frames
- 여행
- Perth
- wp7
- 웹프로그래밍
- 닷넷게시판만들기
- 안치환
- 가족영화
- Today
- Total
새로운 시작, GuyV's lIfe sTyle.
IIS 업로드 용량 오류 발생시 (404.10) 본문
출처: http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22943810.html
IIS7에서, 서버에 보낼 수 있는 용량은 약 29메가.이를 수정하는 방법은 IIS 에서 설정 또는 asp.net 의 web.config 를 수정하여 해결.
다음은 /web.config 를 수정하여 해결하는 방법
해결방법 :
설정에서 수치를 더 늘이면 됨.
I am using IIS 7 on a Windows Vista machine. I'm uploading using the ASP File Upload control, and I'm saving the file using the FileUpload.SaveAs(filename as string) function. It works beautifully for files smaller than 15-20MB.
비스타에서 IIS 7 을 씀. (주: Windows 2008 도 IIS7) asp.net 에서 업로드 메서드를 사용할 때 15~20MB 정도면 이뿌게 잘 작동함.
I've tried changing several things in my web.config and in my applicationHost.config file, but nothing has allowed me to upload anything larger than about 20MB.
다음처럼 수정했을 때 20MB 메가 이상이면 잘 안되는데.. 무슨일?
Here are the applicable lines from my web.config...
===========================================
<?xml version="1.0" encoding="UTF-8"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
...
<system.web>
<httpRuntime executionTimeout="100000" maxRequestLength="2097151" />
...
</system.web>
...
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2097151" />
byte 단위. 약 2메가 허용했으니 안되지.. ㅡ.ㅡ
"1024x1024x허용할_메가바이트_용량수치" 로 바꿔주면 끝.
</requestFiltering>
</security>
</system.webServer>
</configuration>
===========================================
다음은 별 의미 없음.
And here are the lines from my applicationHost.config...
===========================================
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="security">
...
<section name="requestFiltering" overrideModeDefault="Allow" />
...
</sectionGroup>
...
===========================================
Thanks for any help you can give me. Please let me know if you need any more details.
Thanks!
도와주면 감사!
결론 - 공식 문서 읽기를 밥먹듯 하자.
'ⓟrogramming' 카테고리의 다른 글
우편번호 지번 SQL 파일입니다. 2013년 10월 31일자 (0) | 2013.11.14 |
---|---|
임시 저장 링크 (0) | 2013.01.23 |
스마트에디터, 다른페이지를 탐색하시겠습니까? (0) | 2012.05.22 |
VB6 IMEMode 켜고 끄기 (0) | 2011.12.30 |
SQL Server 로그파일 줄이기 (0) | 2010.11.02 |