Increase upload php with .htaccess
In some servers normaly upload by php it’s max like 10mb.
To change without your administrator it’s easy, create a .htaccess in your root folder and inside write:
php_value upload_max_filesize 100M
php_value post_max_size 100M
php_value max_execution_time 1000
php_value max_input_time 1000
where 100M it’s your new upload size.







