|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-12-11 17:14 UTC] s_haslam at yahoo dot com
[2006-12-16 04:57 UTC] krudtaa at yahoo dot com
[2007-01-19 15:19 UTC] gsawatzky at novra dot com
[2007-01-26 07:42 UTC] votemash at gmail dot com
[2007-02-28 13:03 UTC] derek at spectravp dot com
[2007-04-30 05:29 UTC] asimrafi75 at gmail dot com
[2007-04-30 06:55 UTC] chregu@php.net
[2007-05-21 09:39 UTC] akakunin at emdev dot ru
[2007-05-21 11:20 UTC] chregu@php.net
[2007-05-21 13:48 UTC] akakunin at emdev dot ru
[2007-08-09 16:10 UTC] athlan at vgroup dot pl
[2007-10-14 03:37 UTC] trustpunk at gmail dot com
[2007-10-14 03:52 UTC] trustpunk at gmail dot com
[2007-11-07 17:15 UTC] ryan at tankprofiler dot com
[2009-03-13 02:32 UTC] chregu@php.net
[2009-06-16 01:45 UTC] chregu@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 02:00:02 2025 UTC |
Description: ------------ Durring the upload, it never refreshed the data - always said the same information as the file uploaded The .wr file does in fact, update after the upload has completed, with the final details (having initial details as the upload occured, but never updated after the initial write). So i dont believe this is a file permission issue. I believe line 163 isnt returning as true in the middle of uploads: 163: if (dt || event >= MULTIPART_EVENT_FILE_END) { leading me to believe 'dt' isnt updating like it should. so i dont know if adjusting "time_t crtime" to make it compile on windows has broken it, but that would be my bet. Reproduce code: --------------- while uploading any file, a seperate window tracked the output of uploadprogress_get_info(). Happens every time on my machine. Expected result: ---------------- I expected an array that changed each time it was called as it uploaded, however, it always returned the same array with the same numbers (different with each upload attempt, but never changed as the upload occured) Actual result: -------------- Actual Example: Array ( [time_start] => 1165591348 [time_last] => 1165591349 [speed_average] => 4950328 [speed_last] => 4945102 [bytes_uploaded] => 4950328 [bytes_total] => 72237348 [files_uploaded] => 0 [est_sec] => 13 ) nothing changed as the upload proceded.