如何在htaccess中设置上传文件大小以上传更大的文件?

I have a upload script which allows uploads up to 2 GB. My apache2 server allowed only 8MB of post_max_size. Is there any solution to define such properties from the php.ini in the htaccess. The reason why i want it to get it worked like that? I just want to use such big post_max_size only for my application not for the whole apache2 server.

Any ideas?

You can set the upload_max_filesize property to whatever value you want within either php.ini, .htaccess, or even httpd.conf. If you are using PHP 5.3 above, you can also set this property in user.ini

you can try this in htaccess files:

php_value upload_max_filesize 100M
php_value post_max_size 100M

or you can create php.ini file in root folder of your project put these two lines

upload_max_filesize=100M
post_max_size=100M