Solution 1:
The issue is caused by a low file upload size limit. You can increase it in one of two ways:
Option 1: Set it directly in your PHP script
<?php
ini_set('upload_max_filesize', '<YOUR_VALUE_HERE>M');
ini_set('post_max_size', '<YOUR_VALUE_HERE>M');
Option 2: Use a .htaccess file
If the above doesn’t work, create or edit a .htaccess file in your site’s root directory and add:
php_value post_max_size <YOUR_VALUE_HERE>M
php_value upload_max_filesize <YOUR_VALUE_HERE>M