I am sending the following json by cURL to another server.
$postUrl = 'http://anotherserver.com/test.php';
$this->datatopost = array (
"rcpt_to" => $rcpt_to,
"to" => $to,
"subject" => $subject,
"header" => $headers,
"body" => $body,
);
$data = array (
'json' => json_encode($this->datatopost)
);
$bodyStr = http_build_query($data);
$postlength = strlen($data);
$ch = curl_init('www.xxx.com/test.php');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLINFO_HEADER_OUT, TRUE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/x-www-form-urlencoded',
'Content-Length: ' . strlen($bodyStr))
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$result = curl_exec($ch);
if(!curl_errno($ch))
{
$info = curl_getinfo($ch);
echo"<pre>"; print_r($info);
echo"</pre>";
}
And getting an error saying:
Request Entity Too Large
The requested resource
/test.php
does not allow request data with POST requests, or the amount of data provided in
the request exceeds the capacity limit.

test.phpscript get called or is it being blocked by the webserver before your script is run? – DaveRandom Jan 15 at 11:06curl_setopt($ch, CURLOPT_POSTFIELDS, $data);is wrong,$datashould be$bodyStr- does this make a difference? As it is theContent-Length:header does not match the length of the data you are sending, this may be the cause of the error. If that does not fix it, please show you php.ini in a pastebin, feel free to censor any paths, passwords etc - any information specific to you system. – DaveRandom Jan 15 at 11:24