[SOLVED]can't change the max file upload size
Posted: Wed Dec 13, 2006 4:51 am
very weird problem
i'm running a upload site akin to megaupload and all the others
and i can't seem to be able to get the max file size above 2MB and i know for sure
that all the php.ini settings are correct:
the site should allow a 700mb file with this
i'm running a upload site akin to megaupload and all the others
and i can't seem to be able to get the max file size above 2MB and i know for sure
that all the php.ini settings are correct:
Code: Select all
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 300 ; Maximum execution time of each script, in seconds
max_input_time = 600 ; Maximum amount of time each script may spend parsing request data
memory_limit = 700M ; Maximum amount of memory a script may consume (8MB)
; Maximum size of POST data that PHP will accept.
post_max_size = 700M
;;;;;;;;;;;;;;;;
; 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 =
; Maximum allowed size for uploaded files.
upload_max_filesize = 700M