How do I change the upload file size limit in single-site wordpress install?

In the multi-site wordpress install, you get a very nice “upload settings” in the network admin settings. (see attached image).

I am trying to change these settings without using php.ini for a single-site wordpress install and I can’t find them anywhere… help?

Read More

Tim

Attached: Network Admin Settings Example: Network admin example

Related posts

Leave a Reply

3 comments

  1. create an file php.ini and copy via ftp or ssh to wp-admin;
    inside this file the follow values; play with values for test and see the result.

    memory_limit = 32M
    upload_max_filesize = 32M
    post_max_size = 32M
    file_uploads = On
    
  2. I wound up contacting the customer support for my hosting company and they made the change. I found out that the difference between wordpress single install and multi-site is that multisite lets the superadmin drill down into specific sites and set the limits for those sites. In terms of the overall limit, wordpress single site doesn’t “care” about that, and just reflects what is set on your own server.

    If you have access to php.ini, you can change this setting yourself. Otherwise, you’re at the mercy of your hosting company.

    Best of luck!