I was wondering if you can set the post_max_size
only for a specific page or function (in the php.ini
)?
You can set it in the .htaccess
php_value upload_max_filesize 4M
php_value post_max_size 4M
but it doesn't work for a specific page. Also the ini_set()
doesn't work for a specific page.
Any suggestions?