Link to home
Start Free TrialLog in
Avatar of QueKay
QueKay

asked on

Large file uploads from Web page to Mac server running Apache

I would like to set Apache and PHP  running on Mac server to accept upload file sizes up to 100meg.

Can anyone list the settings I would need in Apache and PHP?

 I've seen a lot of references to timeout problems, what value should the timeout be set for to ensure a 100 meg file is uploaded?

Thanks QueKay
Avatar of halonx
halonx

In your php.ini file you'll want to modify the following settings:


; Maximum allowed size for uploaded files.
upload_max_filesize = 50M
 
; Maximum size of POST data that PHP will accept.
post_max_size = 50M

Open in new window

Avatar of QueKay

ASKER

Thank you halonx

Any ideas on if I need to alter the max_execution_time of the script?
ASKER CERTIFIED SOLUTION
Avatar of yfastud
yfastud
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of QueKay

ASKER

Many thanks for all your help.