so i got the upload to work for files under 2 megs. But the files i need to transfer are generally larger and they fail. I've tried:
ini_set('post_max_size', '55M');
ini_set('upload_max_filesize', '56M');
and in my form i've added:
<input type="hidden" name="MAX_FILE_SIZE" value="57671680" />
but when I print out ini_get('upload_max_filesize') it still says '2M'. I DO NOT have access to the php.ini file to change it since this is controlled by my service provider. It looks like ini_set should work but it doesn't. Any ideas?