Image file upload

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
nhammond
Forum Newbie
Posts: 14
Joined: Mon Dec 18, 2006 11:35 am

Image file upload

Post by nhammond »

Does anyone know of a good script or example of uploading images fast? I am building a page where users will be submitting images and they will most likely be in the range of .5-2.5mbs and i will be capping it at 2.5mb too. When i test it out using a file that is 1.5mbs it takes forever to upload the image, doesn't matter if i'm not even doing anything with the image. If i just fill in that field it takes forever, so it's mostly about getting the file copied to the server faster and then i am going to attach it to an email. I know how to upload files and process them, just looking for a more efficient/faster way to handle bigger files. Thank you for your help
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

There's nothing much you can do to make it faster in the code. It is mostly up to the distance between the user and the server, the server's workload (and configuration) and the users upstream bandwidth.
Post Reply