개발자의 끄적끄적

[php/excel] php excel 503 Service Unavailable The server is temporarily busy, try again later 에러 해결 방법 본문

개발/php

[php/excel] php excel 503 Service Unavailable The server is temporarily busy, try again later 에러 해결 방법

효벨 2024. 2. 7. 01:00
728x90
반응형

[php/excel] php excel 503 Service Unavailable The server is temporarily busy, try again later 에러 해결 방법

 

 

php 에서 엑셀을 업로드하려고

 

php Excel 라이브러리를 이용하다보면

 

아래와 같이 에러가 발생하는 경우가 있습니다!

 

503 Service Unavailable The server is temporarily busy, try again later

 

위에 나와있는 것처럼 503 에러가 나온다면, 메모리 이슈임을 인지하시고

 

아래 나와있는 2가지 방법을 이용하시면 됩니다!

 

 

1. php.ini 의 메모리 제한을 일시 적으로 풀어줍니다.

ini_set("max_execution_time", "-1");
ini_set("memory_limit", "-1");
set_time_limit(0);

 

위 내용은 php excel 에서 파일을 읽어들이기 바로 전에 붙여 넣어주시면 됩니다!

 

 

2. 만약 1번의 방법으로 해결이 안되는 경우는 서버 자체의 메모리를 증가시켜주는 방법입니다!

메모리 자체가 낮은 사양은 제한을 풀더라도 읽어들이는 파일을 감당할 수 없는 경우가 있기때문에 메모리를 늘려주면 대부분 해결됩니다!

 

 

참고들 하세요!

반응형
Comments