Processing large files

See all posts See thread Reply

Re: Processing large files - SOLUTION! new!
by Mark Kiehl, 15 years, 6 months ago
These php.ini settings allowed me to upload a 1600x1200 766kb jpeg.

max_execution_time = 90 ; This was my primary constraint.
max_input_time = 90
memory_limit = 10M
post_max_size = 10M
file_uploads = On
upload_max_filesize = 4MReply