PHP 경고 : POST 컨텐츠 길이 (8978294 바이트)가 0 행의 알 수 없음의 8388608 바이트 제한을 초과합니다.
XAMPP 로컬 개발 환경에서 WordPress에 가져 오기를 업로드하려고 할 때이 오류가 발생합니다.
경고 : POST Content-Length가 8978294 바이트 인 0 행의 Unknown의 한도 인 8388608 바이트를 초과합니다.
upload_max_filesize
에서 2M
를 (으)로 변경 1000M
했지만 아무것도하지 않는 것 같습니다.
어떤 아이디어?
8388608 바이트는 8M이며 PHP의 기본 제한입니다. post_max_size
php.ini에서 더 큰 값으로 업데이트하십시오 .
upload_max_filesize
사용자가 업로드 할 수있는 최대 파일 크기를 post_max_size
설정하고 POST를 통해 양식으로 보낼 수있는 최대 데이터 양 을 설정합니다.
따라서 upload_max_filesize
1 메가로 설정할 수 있습니다. 즉, 사용자가 업로드 할 수있는 가장 큰 단일 파일은 1 메가 바이트이지만 5 post_max_size
로 설정된 경우 한 번에 5 개를 업로드 할 수 있습니다 .
php.ini에서 다음을 설정하십시오.
upload_max_filesize = 1000M;
post_max_size = 1000M;
8MB post_max_size
오류입니다.
편안한 값으로 설정하십시오.
웹 서버를 이미 다시 시작 했습니까?
이것은 PHP가 다시로드하도록 강제합니다 php.ini
1. 먼저 php.ini 파일을 찾으십시오.
이 경로에서 php.ini 파일을 찾을 수 있습니다 . C : \ xampp \ php 또는 xampp 폴더에서.
2. php.ini 파일을 열고 다음을 변경하십시오 :
1. 사후 최대 크기 ( 8M 에서 800M로 변경 ).
2. upload-max-filesize ( 2M 을 2000M으로 변경 ).
3. 이제 Apache 서버와 MySQL을 중지하십시오.
4. 이제 Apache 서버와 MySQL을 다시 시작하십시오.
그 후 잘 작동했습니다.
지금 일하는 것을 즐기십시오 :)
당신은의 가치를 변경해야합니다
post-max-size
upload-max-filesize
둘 다 php.ini 에서 찾을 수 있습니다
서버를 다시 시작하면 작업을 시작하는 데 도움이됩니다. XAMIP를 실행하는 로컬 테스트 서버에서 Apache 서버를 중지하고 다시 시작해야했습니다. 그 후 잘 작동했습니다.
로 이동하십시오 C:\xamppp\php
. php.ini에서 다음 값을 설정하십시오 :
upload_max_filesize = 1000M
post_max_size = 0M
- wp-admin 디렉토리 루트에 새 텍스트 파일을 작성하고 이름을 info.php로 지정하십시오.
- info.php를 열고 다음 줄을 추가하십시오 :
- 저장해.
- 웹 브라우저에서 yourwebsitename (아마 localhost) /wp-admin/info.php로 이동하십시오.
- 8 번째 줄에는 다음과 같이 표시됩니다. 구성 파일 (php.ini) 경로, 필자의 경우 C : \ Windows이며 이는 C 드라이브에 있습니다.
- 9 번째 줄에는 Loaded Configuration File이 표시되고 그 옆에는 C : \ xampp \ php.ini가 표시됩니다.
그래서 내 워드 프레스 웹 사이트와 관련된 php.ini 페이지를 찾았습니다.
- 해당 경로로 이동하여 php.ini를 찾으십시오.
그것을 열고 편집하십시오 : post_max_size = 8M을 검색하여 post_max_size = 1000M으로 변경하십시오. upload_max_filesize = 2M을 검색하여 그것을 upload_max_filesize = 1000M으로 변경하십시오
관리자 페이지로 돌아 가기> 미디어> 새로 추가
- 하단에 2MB가 1000M으로 변경되었음을 알 수 있습니다.
이 과정을 마치면 컴퓨터를 다시 시작하거나 XAMPP를 다시 시작해야합니다.
이동
C:\drive\xampp(where xampp installed)
파일 검색에서 php.ini 파일을 찾으십시오.
post_max_size=XXM
upload_max_size=XXM
이 코드로 변경
post_max_size=100M
upload_max_filesize=100M
xampp를 다시 시작하는 것을 잊지 마십시오
You also need the change post-max-size.
Go to
C:\ drive
or that drive where xampp is installed click on xampp find php and open it , there you find php.ini
folder open php.ini file with notepad and find upload_max_filesize
and post_max_size
in both "up and down find option",change both values to 1000M
Using wamp do the following and hopefully, it will resolve an issue
Make these changes in PHP Options to correct:
max_execution_time 180
memory_limit 512M or your highest available
post_max_size 32M
upload_max_filesize 64M
You might not be uploading the right zip file. In my case, as a newbie to wordpress(I used to do hardcoding), I installed the zipped file that contained another zip file which is the actual theme neede to be upload. So what what need to do in this case is to unzip the file and locate the "theme_name.zip" inside.
Go to browser and search for "php.ini" and then open it , and change these two values :
post_max_size= 1000000000000M
upload_max_filesize= 10000000000000M
if you open the "php.ini" file using notepad , you can search for these two values by clicking : cmd+f
From the XAMPP panel, click on the ADMIN button on the Apache site. Then choose to edit php.ini And add the missing post_max_size to a value you are comfortable with.
post_max_size = 100M
I have fixed same issue by changing below parameters to expected value in /etc/php/7.2/apache2/php.ini file
upload_max_filesize = 8M;
post_max_size = 8M;
If changing the post_max_size settings from XAMPP
folders. It did not work for you try this.
From XAMPP
control panel, click config then PHP (php.ini)
and edit post_max_size
and upload_max_filesize
to a higher number in this file instead. Stop Apache server. Start Apache server. This worked for me.
'development' 카테고리의 다른 글
Rails 마이그레이션 : 열의 기본 설정 실행 취소 (0) | 2020.05.12 |
---|---|
규칙 엔진을 구현하는 방법? (0) | 2020.05.12 |
Jenkins에서 작업을 어떻게 복제합니까? (0) | 2020.05.12 |
객체에 요소 추가 (0) | 2020.05.12 |
“\ n”과 Environment.NewLine의 차이점 (0) | 2020.05.12 |