Try setting the MAX_FILE_SIZE record in the form.
<input type="hidden" name="MAX_FILE_SIZE" value="100663296" />
where the number is in bytes. Also, try changing the PHP settings in the php.ini or .htaccess file in the same directory. The syntax for php settings in htaccess files is:
php_value name value
So you would say:
php_value memory_limit 96M php_value post_max_size 96M php_value upload_max_filesize 96M
In addition, you use your own server or some kind of Internet site. Some Internet hosts set a maximum file upload limit, which must be changed on the control panel (depending on which interface the host uses), or simply do not allow changing the maximum file size.
Kranu source share