admin-ajaxを使用してプラグインでajax呼び出しを行っています。そのため、エラーが発生すると、エラーが表示されずに「内部サーバーエラー」というエラーが発生します。サーバーにアクセスできないため、ログが表示されませんか?私はこのように試しました:
try{
$req = new WP_Http;
//$headers = array('Transfer-Encoding'=> 'chunked');
$res = $req->request("url", array('method' => "POST", 'body' => $data) );
//Getting error at this line when size of $daya is more than 10MB. Till 10MB, it is sending post data successfully.
//After 10MB(approx), getting Internal server error.
//But cant just think this is server restriction to max post data, as phpinfo saying that max_post_size as 64MB
}
catch(Exception $e){
echo $e;
}
しかし、それでも結果を返さずにエラーを返します。エラーが発生している行はわかっていますが、エラーが何であるかを知りたいです。