Is it possible to know (serverside) the time it took for a file to upload? I have an image upload API and in my response I'd like to return the upload time (not including script execution time).
feedback
|
|
I think yes, there is
Result will be in seconds. | |||||||||||
feedback
|
|
Seems this method works pretty OK actually:
HTML
start-timer.php
upload.php
Working sample: http://samples.geekality.net/upload-timer | |||||||
feedback
|
|
You simply can't measure anything inside the receiving script. So, as Svish said, the AJAX call and timestamp in the session would be easiest solution. | |||||||||||
feedback
|
|
Look at the link. http://prefetch.net/blog/index.php/2007/01/02/measuring-apache-request-processing-time/ It shows how to configure apache to log time time the request is receieved by apache. Then you can use the apache_request_headers fundtion in PHP and extract out that time. http://php.net/manual/en/function.apache-request-headers.php Maybe this way, you can figure out the time between when apache starts recieving the file, and when it passes processing to php? Might need to do some testing, as I have not tried this. Let me know if it works... :) UPDATE BY @GustavBertram: Note: I edited the answer instead of my own question, since I want to document the attempt separately for each answer. I enabled mod_headers in Apache, and added the following config file:
I then updated my script:
I tested it both on my local machine, and on a remote machine in the network, with a 700MB file. | |||||
feedback
|
|
I have a simple logic in mind when image is posted for upload save starting time in a variable and set another variable for e.g. uploadStatus =0, then when upload is done set the variable to uploadStatus = 1 and also save the end time in another variable. On upload check if uploadStatus == 1, then subtract the starting time from end time and you will get the upload time. | |||||||
feedback
|