관리 메뉴

웹개발자의 기지개

[PHP] 업로드 용량 설정 (php.ini) 본문

PHP

[PHP] 업로드 용량 설정 (php.ini)

http://portfolio.wonpaper.net 2024. 12. 27. 10:04

 

# umount /dev/sdb1
# mount -a
# df -h

 

 

memory_limit = 1024M
post_max_size = 128M
upload_max_filesize = 128M

 

max_input_time = 60

 

post_max_size 값 > upload_max_filesize 값 >= memory_limit 값

 

 

참고 : https://conory.com/blog/44009

 

Comments