1

I tried to use PHP APC to upload files on wamp, windows2003. But when 2 or more uploads are working at the same time, only one upload is working.

It seams that I'm not the only one experiencing this error: http://pecl.php.net/bugs/bug.php?id=13719

Can anyone tell how can I fix this problem?

Thanks in advance!

4

1 回答 1

1

From the docs:

Note that the file upload tracking is not threadsafe at this point, so new uploads that happen while a previous one is still going will disable the tracking for the previous.

The way I read it, that's pretty much all there is to it. You can only track one upload at a time.

于 2009-11-19T21:28:16.583 回答