Did you check yor php.ini? It should read silmilar to the following for your case(check the directory you want to use). I think the default upload file size is 8MB. So you need to modify these lines. Heres a piece of it, your problem may concentrate especially on the last line:
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files
;(will use system default if not specified).
upload_tmp_dir = /var/www/html/temp
; Maximum allowed size for uploaded files.
upload_max_filesize = 32M