Can any one tell me how to increase file upload si

2019-08-01 16:15发布

I have trouble with wordpress file uploading limit. right now i have 8MB limit. but i want to increase it to 100 MB to 200MB. Please guide me how to do it.

标签: wordpress
5条回答
The star\"
2楼-- · 2019-08-01 16:17

Just try with this one

@ini_set( 'upload_max_size' , '64M' ); in function.php
查看更多
在下西门庆
3楼-- · 2019-08-01 16:29
1) Use FTP to download a copy of your php.ini file
2) modify that file to have the following lines:
   memory_limit = 100M
   upload_max_filesize = 192M
   post_max_size = 100M
   file_uploads = On

3) save, close and rename that file to "php5.ini" and upload it to the wp-admin folder
of your wordpress install

查看更多
Anthone
4楼-- · 2019-08-01 16:36

Try these settings in your .htaccess file:

php_value post_max_size 100M
php_value upload_max_filesize 100M

If that doesn't work, or your code starts throwing an error, then you're probably on a shared host that won't let you increase the size.

查看更多
别忘想泡老子
5楼-- · 2019-08-01 16:40

You should change upload_max_filesize in your php.ini:

upload_max_filesize = 32M

查看更多
霸刀☆藐视天下
6楼-- · 2019-08-01 16:43

Take a look here : http://mynotes.farkess.com/2012/08/02/wordpress-increase-media-upload-size/ it's worked for me with wordpress 3.4.1, it just need editing 2 wordpress database entry.

查看更多
登录 后发表回答