IIS 최대용량 4G 설정방법
IIS관리자 > 요청 필터링 > 기능 설정 편집 > 허용되는 최대 콘텐츠 길이(바이트) 숫자를 크게 해준다.
4294967295변경합니다
PHP.ini 파일을 수정
file_uploads = On
max_input_time = 9999
upload_max_filesize = 4096M
post_max_size = 4500M
max_execution_time = 3660
memory_limit = 5100M
위 두부분을 수정 후 재시작
vnote
4G 설정
%windir%\system32\inetsrv\config\applicationhost.config 파일
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" maxUrl="4096" maxQueryString="2048" />
</requestFiltering>
<system.webServer>
<asp>
<limits bufferingLimit="4294967295" maxRequestEntityAllowed="4294967295" />
</asp>
</system.webServer>
이 댓글을