Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 8414921 bytes)

2012. 11. 20. 01:17Languages/PHP

Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 8414921 bytes)

php.ini 에서 설정된 최대 메모리 용량을 초과하는 작업을 실행 하였기 때문



해결 1

소스 상단에

ini_set('memory_limit',-1);



해결2

php.ini 파일 내용중

memory_limit = 값 

을 늘려준다.