php 메모리 부족 오류 Fatal error: Allowed memory size of 134217728 bytes exhausted ReadResponse() failed: The server did not return a complete response for this request. Server returned 0 bytes. 오류를 확인해보니 php 메모리 리밋 문제 기본설정 128mb 인데 페이지 메모리가 128mb를 넘어서서 문제 발생. 해결방법1 - php 소스 변경 ini_set('memory_limit','512M'); // 512메가로 늘리기 ini_set('memory_limit','-1'); // 메모리 리밋 무제한으로 설정 해결방법2 - php 설정파일 변경 vi /etc/php.ini ; Maximum amount of memory a script may consume (128MB) ; http://php.net/memory-limit memory_limit = 512M 설정후 아파치 재시작
|