제로보드 게시판에서 파일을 업로드 하는중에 100% 되면서 멈춰버리는 현상이 발생합니다.
이 문제를 해결하기 위해서 apache/conf 의 php.ini 파일을 다음과 같이 수정하시면 해결 됩니다.
[www:/usr/local/apache/conf] # vi php.ini
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
; max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_execution_time = 0 ; Maximum execution time of each script, in seconds
; max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
; memory_limit = 128M ; Maximum amount of memory a script may consume (128MB)
memory_limit = 256M ; Maximum amount of memory a script may consume (128MB)
(중간 생략)
; Maximum size of POST data that PHP will accept.
; post_max_size = 8M
post_max_size = 100M
(중간 생략)
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =
upload_tmp_dir = /tmp
; Maximum allowed size for uploaded files.
upload_max_filesize = 32M
(중간 생략)
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = Off
; Define the anonymous ftp password (your email address)
;from="john@doe.com"
; Define the User-Agent string
; user_agent="PHP"
; Default timeout for socket based streams (seconds)
; default_socket_timeout = 60
default_socket_timeout = 120
마지막으로 apache resetart 를 한 다음 제로보드 게시판에서 확인하시면 됩니다. ^^;
* 참고로 php.ini 파일 설정시 다음을 참고 하세요 ^^;
memory_limit >> post_max_size >> upload_max_filesize
출처 : http://www.wowunix.com/cgi-bin/CrazyWWWBoard.cgi?mode=read&num=25&db=zeroboard&backdepth=1