'How to set upload_max_filesize in .htaccess?
I have try to put these 2 lines
php_value post_max_size 30M
php_value upload_max_filesize 30M
In my root .htaccess file but that brings me "internal server error" message.
php5 is running on the server
I don't have access to php.ini so I think htaccess is my only chance.
Can you tell me where the mistake is?
Solution 1:[1]
If you are getting 500 - Internal server error that means you don't have permission to set these values by .htaccess. You have to contact your web server providers and ask to set AllowOverride Options for your host or to put these lines in their virtual host configuration file.
Solution 2:[2]
php_value memory_limit 30M
php_value post_max_size 100M
php_value upload_max_filesize 30M
Use all 3 in .htaccess after everything at last line. php_value post_max_size must be more than than the remaining two.
Solution 3:[3]
What to do to correct this is create a file called php.ini and save it in the same location as your .htaccess file and enter the following code instead:
upload_max_filesize = "250M"
post_max_size = "250M"
Solution 4:[4]
If your web server is running php5, I believe you must use php5_value. This resolved the same error I received when using php_value.
Solution 5:[5]
I also face internal server error message for inserting
php_value upload_max_filesize 5M in my .htaccess file in PHP Laravel Project from c-Panel.
Then I solve it by the following logic -
- Create a file named -
.user.iniin my Project root Directory - Insert the following code in
.user.inifile
upload_max_filesize = 5M
post_max_size = 5M
Solution 6:[6]
Both commands are correct
php_value post_max_size 30M
php_value upload_max_filesize 30M
BUT to use the .htaccess you have to enable rewrite_module in Apache config file. In httpd.conf find this line:
# LoadModule rewrite_module modules/mod_rewrite.so
and remove the #.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | dev-null-dweller |
| Solution 2 | Stephan Vierkant |
| Solution 3 | Funk Forty Niner |
| Solution 4 | mbinette |
| Solution 5 | Sanaulla |
| Solution 6 | Tunaki |
