On windows server's the $_FILES array contains the path to the file, with slashes '\', these slashes get removed by the stripslashes_deep() call, which makes the path to the file meaningless, and results in the plugin being unable to upload the file.
On windows server's the
$_FILES
array contains the path to the file, with slashes '\', these slashes get removed by thestripslashes_deep()
call, which makes the path to the file meaningless, and results in the plugin being unable to upload the file.