
Re: Image Upload Is Too Big
Global php.ini comes with the default max of 2MB.
Quote:
; 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 =
; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
You can overwrite it up to a point by creating a local php.ini file with this content:
; Maximum allowed size for uploaded files.
upload_max_filesize = 8M
and upoading it to the Public Folder and CHMOD to 705 (As most recommend this setting).
Also ensure that there is a tmp folder in the root and CHMOD to either 755 or 777 as required by the server.
At most, you could probably set the file size to 8MB - maybe less. If you can't increase it, then you would need to contact your ISP.