How to set per-script upload_max_filesize limit?
- by Ilya Muromets
I have the following issue:
How to set per-script upload_max_filesize limit?
I want to set a larger upload max filesize limit for a particular script (action). I know I could use .htaccess, but the problem is that all actions are being dispatched via single index.php file, which likely means for all actions .htaccess rules are the same. So is it possible to set a per-script max_upload_size for a single php script (action)?
Hope, you will be able to help me.
Thanks in advance.