views:

96

answers:

1

Hi!

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!

+1  A: 

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.

Frank Farmer
Does it means that is the best solution is other extension?
mxg
Probably. Personally, I wouldn't bother trying to get this working, myself.
Frank Farmer