Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 45 bytes)
공부좀 합시다/PHP 2007/09/20 10:03
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 45 bytes)
위의 에러는 php에서 스크립트를 실행할때 가지는 메모리의 Limit를 넘어섰을때 발생을 하며,
해결방법은 php.ini 파일에서 memory_limit를 기본설정인 8M에서 올려주거나, 해당 php파일의
상단에 ini_set("memory_limit", "16") 코드를 적어 주면, 해당 파일을 샐행할때 16M로 설정되어서
실행이 되어 짐니다.
위의 에러는 php에서 스크립트를 실행할때 가지는 메모리의 Limit를 넘어섰을때 발생을 하며,
해결방법은 php.ini 파일에서 memory_limit를 기본설정인 8M에서 올려주거나, 해당 php파일의
상단에 ini_set("memory_limit", "16") 코드를 적어 주면, 해당 파일을 샐행할때 16M로 설정되어서
실행이 되어 짐니다.



댓글을 달아 주세요
댓글 RSS 주소 : http://letmelove.net/blog/rss/comment/65