increase max upload limit in wordpress

前端 未结 8 1139
滥情空心
滥情空心 2020-12-29 17:00

I need to upload a PDF file to my wordpress site. When I go to Upload New Media, and try uploading it, it says

FileName.pdf

8条回答
  •  天涯浪人
    2020-12-29 17:42

    I tried different way like attempted to

    1. change my limit directly on my server
    2. through the .htaccess file
    3. wp-config.php

    but none of these changes worked for me. Then I came across a post somewhere That I summarised in a blog post(find below)

    All you need to do is

    1. create a php.ini
    2. upload to admin directory

    Your Php.ini may contain following or whatever limit you need

    memory_limit = 32M
    upload_max_filesize = 32M
    post_max_size = 32M
    file_uploads = On
    

提交回复
热议问题