| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: May 2006
Posts: 133
![]() ![]() | Upload Not Working? Hey, I own www.filegeeks.com and the upload works with smaller files however i tried uploading a 12mb file and it didnt work. Can anyone see a reason for this? Thanks |
| |
| | #2 (permalink) |
| Buy my domains. Join Date: Feb 2006
Posts: 2,796
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Your php.ini is set to only allow files under that size. <?php ini_set('upload_max_filesize', '100M'); ?> That will allow 100MB files. (I think.. didn't test it.) If it doesn't work, try: <?php ini_set('upload_max_filesize', 100M); ?> |
| |
| | #4 (permalink) | ||||
| Buy my domains. Join Date: Feb 2006
Posts: 2,796
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | In my php.ini, it was set to 2M. I'm basing it off of that.
| ||||
| |
| | #6 (permalink) | ||||
| Eating Pie Join Date: Nov 2004 Location: Canada
Posts: 2,272
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
????: NamePros.com http://www.namepros.com/programming/230919-upload-not-working.html I would ask your host to change the upload_max_filesize in your php.ini file to 20mb or something. Than for you I would suggest using another method of uploading or upload in parts because alot of browsers will not handle 12mb uploads and will timeout. - Steve
__________________ I feel old. | ||||
| |
| | THREAD STARTER #8 (permalink) | ||||
| NamePros Member Join Date: May 2006
Posts: 133
![]() ![]() |
| ||||
| |
| | #9 (permalink) |
| Eating Pie Join Date: Nov 2004 Location: Canada
Posts: 2,272
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | megaupload uses an other system which allows the browser to feed parts of the file. Which it uploads and than combines all togeather at the end. It keeps the connection alive and makes the browser not timeout. - Steve
__________________ I feel old. |
| |