I'm not sure if this is possible, but here's what I would like to do.
I have a .php script that uploads and then manipulates the file. I only want that particular .php script to be allowed to upload large files, the php.ini settings should apply for all others.
Can I edit the .htaccess file to affect only the one .php script?
In pseudo-code:
if (myPhpScript.php) {
php_value upload_max_filesize 16M
}
Thanks!