How do increase the caps on upload file size limit?

You can increase the PHP max upload size for your account by adding the following to your .htaccess file:

php_value post_max_size "10M"
php_value upload_max_filesize "10M"
php_value max_input_time "120"

The above code will increase the limit and the timeout.