I really got my hopes up with a new response, but nothing worked.
$_FILES['userfile']['error']
and
$HTTP_POST_FILES['userfile']['error ']
both return a null.
I couldn't find max_input_time or post_max_size in the php.ini file, but I found these:
file_uploads = On
max_execution_time = 30
memory_limit = 8M
upload_max_filesize = 100M
register_globals = Off
regiser_globals has always been set to off as far as I remember, even when I used the $FILES and $COOKIES arrays.
I just tested the $_COOKIES array and it works fine, even with globals off. :-/
I've been surfing the net for days to find an answer, and the only thing I've come up with is putting something like this in the apache config file:
<FILES>
LimitRequestBody 524288
</FILES>
I tried it and it didn't make a difference and I can't use htaccess files.