PHPCMS 업로드 오류 413?
PHPCMS 업로드 오류 413. 그 이유는 Nginx의 기본 제한이 최대 업로드 파일을 1M로 제한하기 때문입니다. 따라서 1M를 초과하는 파일을 업로드하면 413 오류가 보고됩니다. 해결 방법: "nginx.conf"에서 "client_max_body_size"를 찾으세요. conf" 구성을 10M으로 변경하면 됩니다.
Apache 서버 솔루션
Apache 구성 파일에서 LimitRequestBody 구성을 수정하세요. 가상 호스트인 경우 공간 공급자에게 수정에 대한 도움을 요청하세요.
구체적인 단계:
아파치 환경에서 더 큰 소프트웨어를 업로드할 때 413 오류가 발생하는 경우가 있습니다. 이 오류의 원인은 잘못된 아파치 구성 때문입니다. conf 디렉토리와 유사한 디렉토리입니다. 이 디렉토리는 conf.d입니다. conf.d가 들어 있습니다. 디렉토리의 내용은 다음과 같습니다.
## PHP is an HTML-embedded scripting language which attempts to make it# easy for developers to write dynamically generated webpages.# LoadModule php4_module modules/libphp4.so ## Cause the PHP interpreter handle files with a .php extension.# SetOutputFilter PHPSetInputFilter PHPLimitRequestBody 6550000 ## Add index.php to the list of files that will be served as directory# indexes.#DirectoryIndex index.php이 LimitRequestBody 구성에서 오류가 발생합니다. 소프트웨어 크기가 충분합니다해당 구성 파일이 없으면 Apache 구성 파일에
SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 6550000를 작성해 주세요. 추천 튜토리얼: "
PHPCMS 튜토리얼"
위 내용은 PHPCMS 업로드 오류 413?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!