upload_max_filesize in .user.ini Not Reflected in Media Upload

admin2025-04-26  7

I would like to know why Media Upload does not detect the upload_max_filesize that had been set in .user.ini file as shown below.

max_execution_time = 10000
memory_limit = 512M
upload_max_filesize = 20M
post_max_size = 20M

This is the phpinfo.php.

.png


This is the error message after uploading a 10MB PDF file.

.png


I do not want to apply these settings in php.ini because there are still multiple projects are running inside the server. That is why I prefer to set all the setting in user.ini.

Any kind soul please help me edit the image link.
Much appreciate.

I would like to know why Media Upload does not detect the upload_max_filesize that had been set in .user.ini file as shown below.

max_execution_time = 10000
memory_limit = 512M
upload_max_filesize = 20M
post_max_size = 20M

This is the phpinfo.php.

https://i.sstatic/2RHbj.png


This is the error message after uploading a 10MB PDF file.

https://i.sstatic/kIdxq.png


I do not want to apply these settings in php.ini because there are still multiple projects are running inside the server. That is why I prefer to set all the setting in user.ini.

Any kind soul please help me edit the image link.
Much appreciate.

Share Improve this question asked Apr 22, 2016 at 4:29 Wee Hong KOHWee Hong KOH 1171 gold badge2 silver badges5 bronze badges 4
  • Is your user.ini file in your wp-admin folder? – Tim Malone Commented Apr 22, 2016 at 5:50
  • Hi @TimMalone, nope. It allocates at root directory. – Wee Hong KOH Commented Apr 22, 2016 at 6:33
  • Try to place the following two lines into .htaccess file: php_value post_max_size 10M and php_value upload_max_filesize 10M – Max Yudin Commented Apr 22, 2016 at 7:09
  • @Kane Uploads are handled in the wp-admin directory, so try placing it in there. I've had success with placing php.ini files in there on shared hosts. – Tim Malone Commented Apr 22, 2016 at 7:16
Add a comment  | 

1 Answer 1

Reset to default 2

Thanks to @Tim Malone,

@Kane Uploads are handled in the wp-admin directory, so try placing it in there. I've had success with placing php.ini files in there on shared hosts. – Tim Malone 1 hour ago

Just place .user.ini to /wp-admin to overwrite the setting.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1745672357a313389.html

最新回复(0)