You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes when multiple file transfers take place in parallel, an error may arise saying The given destination is not writable. It appears that in the _isPathWriteable function of Zend/File/Transfer/Adapter/Abstract.php, the $tempFile .= '/' . 'test.1'; is rather limiting. Multiple transfers may have tried to write text.1 at the same time, resulting in the error. Perhaps some randomness like $tempFile .= '/' . 'test.'.mt_rand(1, 1000); should be use instead to avoid the chance of collision.
The text was updated successfully, but these errors were encountered:
Sometimes when multiple file transfers take place in parallel, an error may arise saying
The given destination is not writable
. It appears that in the_isPathWriteable
function ofZend/File/Transfer/Adapter/Abstract.php
, the$tempFile .= '/' . 'test.1';
is rather limiting. Multiple transfers may have tried to writetext.1
at the same time, resulting in the error. Perhaps some randomness like$tempFile .= '/' . 'test.'.mt_rand(1, 1000);
should be use instead to avoid the chance of collision.The text was updated successfully, but these errors were encountered: