Increasing word press media size

新的wordpress 在settings 中,把upload media size 的選項移除了,
如果要把wordpress 的media size 加大, 就要自己手動入去server 裡做手腳了

php.ini 的限制

upload_max_filesize = 2M
post_max_size = 8M

nginx 的限制

# in nginx.conf
client_max_body_size 2M;

再 restart php-fpm 就可以了。

Posted in notesTagged , ,