Click here to Skip to main content
15,913,584 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how main server connected to many computers comes to know that how many files are uploaded from which computer?

and how can i remove or prevent this..
Posted

1 solution

HTTP protocol is a pure client-server protocol. A client sends a request, an HTTP server responds back. Every time a file is uploaded, a client sends request with the method POST which contains some data, including content of one or more files. HTTP server receives this data. Each such request it processed with a separate server-side scripts which performs all the side effect of the post, typically, reads/analyzes the content of the posted file(s) and adds data to database. This is the place to introduce increment counter and the time to increment it.

—SA
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900