2014년 8월 14일 목요일

Set upload file size for PHP on WebMatrix 3

사용자가 설치한 PHP 폴더경로와 webmatrix 에 설치된 PHP 의 경로가 다르다.


webmatrix 의 설치 경로는

C:\Program Files (x86)\PHP\v5.3\php.ini

win7 64bit 기준
C:\Program Files (x86)\IIS Express\PHP\v5.3\php.ini

PHP 버전은 달라질 수 있다.

// 4GB
post_max_size = 4096M 
upload_max_filesize = 4096M


이것만으로 안된다면

web.config

<system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="4294967295"/>
      </requestFiltering>
    </security>
</system.webServer>



추가해주면된다.


ps. iis 에 호스팅된 php 사이트를 webmatrix 로 열때도 iis 의 설정과는 별개로 위처럼 설정해 주어야 한다.


댓글 없음:

댓글 쓰기