To increase the Max upload size for your php applications add this to your .htaccess file:
<IfModule mod_php5.c>
php_value upload_max_filesize 25M
php_value post_max_size 25M
php_value max_execution_time 800
</IfModule>
NOTE: 25 M is 25 megabytes and 800 is 800 seconds.
Related articles: How do I access my php.ini file