Set your wp-admin/php.ini values like this to load files up to 20mB in size:
memory_limit = 32M;
upload_max_filesize = 20M;
post_max_size = 40M;
The logic requires that post_max_size > upload_max_filesize
and that memory_limit > upload_max_filesize.