Open damienalexandre opened 9 years ago
The PHP server only support the default multipart option, and not the octet one.
multipart
octet
This should be added to the documentation right now, and maybe added to the library as contributions go :)
$fileArray = [ 'name' => $requestParams['flowFilename'], 'type' => '', 'tmp_name' => 'php://input', 'error' => UPLOAD_ERR_OK, 'size' => $requestParams['flowCurrentChunkSize'], ];
move_uploaded_file
'php://input'
file_put_contents
The PHP server only support the default
multipart
option, and not theoctet
one.This should be added to the documentation right now, and maybe added to the library as contributions go :)
move_uploaded_file
but instead read'php://input'
andfile_put_contents
it