I am having a problem getting file uploads working properly. I am pretty sure I am doing the form and using the $_FILES var correctly because it all works for small files. The problem comes when I try to use larger files. I get the real file name property and the type, but it says the size is zero and the tmp file name is empty when I try to upload larger files. I tried using the ini_set("upload_max_filesize", "10000000") to increase the setting from 2 megs to almost 10 megs, but that doesn't seem to work. The post_max_size is set at 55M, but I can't change it using ini_set. Does any body know what I need to do to get this working?
Chris