The post data submitted by webuploader cannot be obtained by the php backend.

Request URL: http://localhost
Referer: http://localhost/dzgbk/plugin.
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
id: test
mod: upload
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; Name= "formhash"

cb531121
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "id"

WU_FILE_0
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "name"

1.mp4
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "type"

video/mp4
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "lastModifiedDate"

Sat Mar 24 2018 19:03:57 GMT+0800 (China Standard time)
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "size"

44525317
-WebKitFormBoundaryUOuyfi41pkqAWeOi
Content-Disposition: form-data; name= "file"; filename= "1.mp4"
Content-Type: video/mp4

-WebKitFormBoundaryUOuyfi41pkqAWeOi--

In

php, it is printed, and the result does not receive a value

.
Php
Mar.04,2021

use $_ FILES to print. If not, try again

$data = file_get_contents("php://input");
var_dump($data);

refer to the php server upload code in the official website demo
https://github.com/fex-team/w.
personally thinks that this may be a problem with php.ini configuration, resulting in a failure to upload successfully

 $errCode = $_FILES['file']['error'];

0 => 

1 =>  PHP.ini  upload_max_filesize 

2 => HTML  MAX_FILE_SIZE 

3 => 

4 => 

6 => PHP 4.3.10  PHP 5.0.3 

7 => PHP 5.1.0 
Menu