| Author |
Message |
|
gwx007
|
Post subject: Not able to upload large file size Posted: Sat Jun 09, 2012 3:12 am |
|
Joined: Thu Jun 07, 2012 8:00 pm Posts: 8
|
|
I'm trying to upload a 3.6mb file on to a new customer and for what ever reason not able to upload it. It looks like it's uploading correctly but when I go back to the customer entry, the file to be upload file is not there. Smaller file sizes such as 500k upload just fine.
Is there a limit on file size?
Thanks.
|
|
 |
|
 |
|
dave
|
Post subject: Re: Not able to upload large file size Posted: Sat Jun 16, 2012 8:49 am |
|
Joined: Fri Oct 26, 2007 3:55 pm Posts: 3498 Location: Colorado, US
|
|
php limits the upload size to 2 Mb. There may be a way to get around this but it has to do with your php settings.
Dave
|
|
 |
|
 |
|
gwx007
|
Post subject: Re: Not able to upload large file size Posted: Sat Jun 16, 2012 9:54 am |
|
Joined: Thu Jun 07, 2012 8:00 pm Posts: 8
|
|
Thanks Dave. I completely overlooked that. Fixed the issue.
Added below code to PHP5.ini running on Godaddy:
memory_limit = 100M upload_max_filesize = 192M post_max_size = 100M file_uploads = On
Thanks.
|
|
 |
|
 |
|