Cara menggunakan php sizeof vs count

Sometimes a low file upload size limit can stop you from uploading files with the media uploader or installing larger WordPress plugins and themes. 

In this article, we’ll show you how to easily increase the maximum file upload size in WordPress to fix those issues.

Cara menggunakan php sizeof vs count

Why Increase the Maximum File Upload Size in WordPress?

Your WordPress hosting provider will set a default maximum file upload size when you sign up and install WordPress. Your hosting provider defines this limit, and it usually ranges from 2MB to 500MB.

For most WordPress website owners, this limit will be more than enough.

However, there are times when you’ll need to raise this limit so you don’t run into upload errors.

For example:

  • You run a photography website and need to upload large images.
  • Your design or photography portfolio has large images.
  • You want to install a larger WordPress theme or plugin.
  • You want to sell digital products like eBooks, photos, videos, and more.
  • You regularly update content and add audio, photos, and more that are beyond the current limit. 

That being said, let’s show you how you can increase the maximum file upload size on your WordPress site.

Note: Keep in mind that displaying a lot of large files on your website can seriously slow down its speed and performance. That’s why we typically recommend to never upload videos to WordPress.

Since most users have different WordPress hosting setups, we’ll cover the following:

Video Tutorial

Subscribe to WPBeginner

If you’d prefer written instructions, just keep reading.

How to Check Your Maximum File Upload Size Limit in WordPress

WordPress will automatically show the maximum file upload size limit when you are uploading images or other media.

To check this, simply go to Media » Add New in your WordPress admin panel, and you will see the maximum file upload size limit for your WordPress site.

Cara menggunakan php sizeof vs count

Now that you know how to find the size limit, let’s show you how to increase the maximum upload size in WordPress.

Method 1. Contact Your WordPress Hosting Provider

One of the easiest ways to increase the maximum file upload size in WordPress is to reach out to your WordPress hosting provider.

This is a relatively simple task for their customer service team and can be done in a couple of minutes.

For beginners, this can be much easier than adding code to WordPress and editing server files. 

Simply head over to your hosting provider website, like Bluehost, and click the ‘Chat’ tab.

Then, enter your account details and fill out a support request asking to increase the file upload size on your WordPress site. 

Cara menggunakan php sizeof vs count

You can also reach out to support from within your hosting account dashboard.

Method 2. Create or Edit an Existing PHP.INI file

Another way to increase the maximum file upload size is by creating or editing a file called PHP.INI. This file controls a lot of settings for your WordPress hosting environment.

Most WordPress hosting providers like Bluehost have a beginner friendly cPanel to help manage your website.

If your web host has a cPanel dashboard, then you can increase the file upload size through the built-in tools.

Note: The following is from the Bluehost cPanel, however, most shared hosting providers will have similar steps.

To do this, login to your WordPress hosting account dashboard and go to the ‘Software’ section.

Then, click on ‘MultiPHP INI Editor’.

Cara menggunakan php sizeof vs count

Next, scroll down to the section labeled ‘upload_max_filesize’ and enter a new maximum filesize into the box.

Then, click the ‘Apply’ button.

Cara menggunakan php sizeof vs count

Alternatively, you can click the ‘Editor Mode’ menu tab and then you can change the maximum file upload size directly in the editor.

You need to edit the ‘upload_max_filesize’ section to increase your file upload size.

Once you’re finished click the ‘Save’ button.

Cara menggunakan php sizeof vs count

Edit PHP.INI by Adding Code

If your current hosting provider doesn’t offer the cPanel option, then you’ll need to edit this file manually.

To do this, you can use an FTP client or the file manager option in your WordPress hosting control panel.

If you’re using shared hosting, then you might not see the PHP.INI file in your hosting directory. If you don’t see one, then simply create a file named php.ini and upload it to your root folder. 

Then, add the following code snippet to the file.

upload_max_filesize = 256M
post_max_size = 256M
max_execution_time = 300

You can modify the ’64 M’ limit to the file size you need for your WordPress blog.

Method 3. Add Code to Your WordPress Theme functions.php File

This method involves adding code to your functions.php file in your WordPress theme.

If you haven’t done this before, then see our beginner’s guide to pasting snippets from the web into WordPress.

After that, you need to open your functions.php file via FTP or the file manager app in your hosting account dashboard.. To learn more, see our guide on how to use FTP to upload files to WordPress.

Then, add the following code snippet at the bottom of your functions.php file.

@ini_set( 'upload_max_size' , '256M' );
@ini_set( 'post_max_size', '256M');
@ini_set( 'max_execution_time', '300' );

Method 4. Add Code to Your .htaccess File

Another way to increase the maximum file size is by modifying the .htaccess file. This file controls the high level configuration settings for your website.

To do this, you need to log in to your website server via FTP. If you haven’t done this before, then see our guide on how to use FTP to upload files to WordPress for beginners.

After that, you need to locate your .htaccess file in your website’s root folder. 

Cara menggunakan php sizeof vs count

If you can’t find your .htaccess file, then it could be hidden by your file manager or FTP client. To learn more, see our guide on why you can’t find .htaccess file on your WordPress site.

Next, you need to add the following code snippet to your .htaccess file. 

php_value upload_max_filesize 256M
php_value post_max_size 256M
php_value max_execution_time 300
php_value max_input_time 300

To increase your maximum file upload size even more, simply change the ’64M’ to the size you require.

Method 5. Use a WordPress Plugin to Increase File Upload Size

Another way you can increase the maximum file upload limit is by using the WP Increase Upload Filesize plugin. If you’re not comfortable adding code to WordPress, then this is a good option for you.

First thing you need to do is install and activate the plugin. For more details, see our guide on how to install a WordPress plugin.

Upon activation, navigate to Media » Increase Upload Limit in your WordPress admin panel.

This brings you to a screen where you can select a new file upload size in the ‘Choose Maximum Upload File Size’ drop down. 

Then, click the ‘Save Changes’ button.

Cara menggunakan php sizeof vs count

Note: The maximum file upload size will be set by your hosting provider. If you need a file size limit that’s larger than the one listed in the drop down, then you need to contact your hosting provider and ask to increase the limit. 

We hope this article helped you increase the maximum file upload size in WordPress. You may also want to see our guide on how to choose the best website builder and our expert picks of the best virtual business phone number apps with free options.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.