Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 공모주 청약
- java
- 리눅스
- 주식
- Eclipse
- Oracle
- css
- 7월 공모주 청약 일정
- IPO
- 오라클
- 자바스크립트
- 공모주
- JavaScript
- 코드이그나이터
- linux
- 맥
- 6월 공모주 청약 일정
- 자바
- MYSQL
- Stock ipo
- 주식 청약
- Stock
- 공모주 청약 일정
- 주식 청약 일정
- codeigniter
- jquery
- SQL
- 제이쿼리
- php
- html
Archives
- Today
- Total
개발자의 끄적끄적
[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:00728x90
반응형
[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번의 방법으로 해결이 안되는 경우는 서버 자체의 메모리를 증가시켜주는 방법입니다!
메모리 자체가 낮은 사양은 제한을 풀더라도 읽어들이는 파일을 감당할 수 없는 경우가 있기때문에 메모리를 늘려주면 대부분 해결됩니다!
참고들 하세요!
반응형
'개발 > php' 카테고리의 다른 글
[php/framework] codeigniter 4 receive post data example / 코드이그나이터4 post 데이터 받는 방법 (0) | 2024.02.17 |
---|---|
[php/codeigniter] 코드이그나이터4 기본 파비콘 해제하는 방법 (0) | 2024.02.10 |
[php/framework] php 프레임워크 종류와 설명 (0) | 2024.01.31 |
[php/framework] CodeIgniter4에서 Gmail 발송 방법 (0) | 2024.01.17 |
[php] email Error: 535-5.7.8 Username and Password not accepted 해결 방법 (0) | 2024.01.16 |
Comments