Does anybody have any experience with a situation like this?
Let's say I've got two users on my system, and I want them to have differing upload abilities (user #1 can upload up to 2M files, and user #2 can upload 10M files).
My first thought was to use "ini_set('upload_max_size', '10M');" when user #2 is logged in. And it seems to work just fine -- ini_set() returns success, phpinfo() displays the correct value...
...but user #2 still can't upload. However, if I set the same value in the actual php.ini file (nothing other than upload_max_size is changed) it works like a charm!
What's going on?