I want to increase the limit of upload size max, but because I using shared hosting, I cannot edit php.ini. Then I try to edit my .htaccess file. I added these lines:
php_value upload_max_filesize 700M
php_value post_max_size 700M
php_value max_execution_time 600
php_value max_input_time 600
When I test it in localhost, it running succedded. But, when I upload this .htaccess file to my shared hosting, it produce 500 Internal Server Error. I also try to put that similar code in my .php files, but not affected. Any idea how to solve this problem? Thanks a lot.