I receive POST request on my api.php script. The content red using this code:
$fp = fopen(\'php://stdin\', \'r\'); $all = \"\"; while($line = fgets($fp, 4096
Is there anything in the $_FILES variable?
$_FILES
Is there a MAX_FILE_SIZE element in the submitted form?
MAX_FILE_SIZE
What are the values here?
echo 'post_max_size = ' . ini_get('post_max_size') . "\n"; echo 'upload_max_filesize = ' . ini_get('upload_max_filesize') . "\n";