Utiera Tebinaa
Utiera Tebinaa
23:08 28 Feb 24
Felicia Mull
Felicia Mull
19:03 09 Jan 24
SHYLA Lalalala
SHYLA Lalalala
11:52 25 Oct 23
Thank you big time
R E
R E
11:06 25 Oct 23
R E
R E
11:00 25 Oct 23
Danica Itliong
Danica Itliong
10:51 25 Oct 23
James H
James H
10:48 25 Oct 23
We're really thankful to Chris & Your Page for building us a great looking website without charging an arm and a leg. Highly recommend them to any small businesses.
Kosta Tepedelenev
Kosta Tepedelenev
13:09 11 Oct 23
I absolutely recommend! Great service!
Dianne McNamara
Dianne McNamara
04:26 29 Aug 23
It took time due to me being very busy with my business and slow to give the information required but the end result is fantastic and the results are trackable and coming in regularly. Very happy to be updated with a very professional site and assistance when needed is just at the other side of an email.
Kim Barlow
Kim Barlow
00:46 13 Apr 23
We cannot thank the team at Your Page enough for designing such a fantastic website for our business. The designers at Your Page evaluated our needs and created a site that is not only industry specific and perfect for us but also visually vibrant. Every step of the way Your Page worked with us. They listened to our suggestions and presented us with different design solutions so as to provide us with exactly what we had envisaged. They were extremely professional and supportive throughout the entire process. We wouldn't hesitate in recommending Your Page to anyone looking to create a new website or enhance their online presence.
Shaina Manalo
Shaina Manalo
00:23 13 Apr 23
i really love this company. they give the best transformation in my web page that i could not imagine. I highly recommend it.
Nathan Phillips
Nathan Phillips
00:21 13 Apr 23
Your page has been instrumental to our business. They have been with us from the very start, taking care of our requirements, enabling us to focus on what we do best for our own clients.
See All Reviews
js_loader

WordPress Multisite is a powerful feature that allows you to manage multiple websites from a single installation. However, there are default upload filesize limits for media files in WordPress, which might need adjustment, especially in a multisite environment. In this guide, we’ll show you how to change the upload filesize limit in WordPress Multisite, allowing you to handle larger media files across your network of sites.

Table of Contents

  1. Preparation
  2. Editing the php.ini File
  3. Editing the .htaccess File
  4. Using Plugins

1. Preparation

Before making changes, ensure you have:

  • Access: Access to your WordPress hosting, preferably via FTP or a hosting control panel.
  • Backup: Create a backup of your website, including files and the database, to ensure you can revert if needed.

2. Editing the php.ini File

Follow these steps to increase the upload filesize limit by editing the php.ini file:

  • Locate php.ini: Find the php.ini file in the root directory of your WordPress installation or in the “wp-admin” folder.
  • Edit php.ini: Open the php.ini file with a text editor and find the “upload_max_filesize” and “post_max_size” directives.
  • Update Directives: Increase the values for “upload_max_filesize” and “post_max_size” to the desired limit. For example, to set a limit of 100MB, you can use “100M”.
  • Save Changes: Save the modified php.ini file.

3. Editing the .htaccess File

If you don’t have access to the php.ini file, you can try adjusting the upload filesize limit using the .htaccess file:

  • Locate .htaccess: Find the .htaccess file in the root directory of your WordPress installation. If it doesn’t exist, you can create one.
  • Edit .htaccess: Open the .htaccess file with a text editor and add the following lines:
  •             
    
        php_value upload_max_filesize 100M
        php_value post_max_size 100M
    
                
            
  • Save Changes: Save the modified .htaccess file.

4. Using Plugins

If you’re uncomfortable editing files directly, you can use plugins designed to adjust upload filesize limits in WordPress:

  • Install a Plugin: Search for and install a plugin from the WordPress repository that allows you to modify the upload filesize limit.
  • Configure the Plugin: Follow the plugin’s instructions to set the desired upload filesize limit.

By following these steps, you’ll be able to increase the upload filesize limit in your WordPress Multisite installation, enabling you to handle larger media files across your network of sites.