Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Upload files or just one file?

Status
Not open for further replies.

cleanair4me46

Technical User
Feb 3, 2009
41
US
I have a PHP (version 5) site that allows uploading of files into our Solaris server using Apache. I currently allow the user to upload up to 10 files at once. If users upload files as big as 20 mb or more slows the upload process down. Should I just allow one file upload at a time for better performance? I was wondering how other PHP developers handle this?
 
multiple uploads should not cause problems if there is enough memory to handle them on the server.

if there is a requirement to upload multiple files then there is no real workaround to having multiple file fields.

'fake' workarounds include

* single upload of zip files (use a server process to explode the zip and handle the individual files).
* use a flash or java uploader
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top