[SOLVED]can't change the max file upload size

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ryuuka
Forum Contributor
Posts: 128
Joined: Tue Sep 05, 2006 8:18 am
Location: the netherlands

[SOLVED]can't change the max file upload size

Post by ryuuka »

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:

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
the site should allow a 700mb file with this
Last edited by ryuuka on Wed Dec 13, 2006 5:06 am, edited 1 time in total.
ryuuka
Forum Contributor
Posts: 128
Joined: Tue Sep 05, 2006 8:18 am
Location: the netherlands

Post by ryuuka »

nm

it would seem that for some reason everytime i asked for the distribution site(sr0024)
it pointed to the main internal site (sr0005)

it is fixed now

and for the record i feel like an idiot
Post Reply