Support » Everything else WordPress » Increase allowed media upload file size

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Depends on the error you get. If it’s “This file is too big. Your php.ini upload_max_filesize is 24” then you need to up that.

    Thread Starter natchezjohn

    (@natchezjohn)

    php.ini is where?

    Michael

    (@southstationmedia)

    You can usually find the php.ini file at /etc/php.ini, however, if your on a shared hosted you can usually upload your own php.ini to the root of your domain. You’ll want to include:

    upload_max_filesize = 10M
    post_max_size = 10M

    OR if editing the php.ini file isn’t an option for you you can add the following to an .htaccess:

    php_value upload_max_filesize 10M
    php_value post_max_size 10M

    *Where 10M equals your required upload size

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Easiest thing is to just ask your webhost (or check their knowledgebase).

    Thread Starter natchezjohn

    (@natchezjohn)

    Got it!
    Thank you Michael

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Increase allowed media upload file size’ is closed to new replies.