[PHP] max_execution_time 지정하기
Maximum execution time of 30 seconds exceeded in /경로/위와 같은 에러가 발생했다. 이유는 작업 처리 과정에서 루프로 인한 시간 초과를 하거나 작업상 지정 시간이 길어질 경우 위와 같은 오류가 발생한다고 한다. 따라서, php.ini에서 max_execution_time 시간을 수정해줘야한다. php.ini에서 검색( Ctrl + F )해서 max_execution_time를 찾으면 ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; ; Maximum execution time of each script, in seconds ; http://php.net/max-execution-time ; Note: This..