【Ubuntu】WordPress export/import xml

wordpressでimportできるファイルサイズが2Mと少ない。

下記設定で容量を増やすことができる。

 

/etc/php5/fpm/php.ini

memory_limit = 128MB
post_max_size = 64M
upload_max_filesize = 32MB

※memory_limit > post_max_size > upload_max_filesizeとすること

 

/etc/nginx/conf.d/default.conf

server { 

    client_max_body_size 32M;

 

Leave a Reply