I change http://localhost:1841/ and use http://localhost/DirectApp/ and it's look like that's solved problem with provider but I still don't received data. Now I get
Przechwytywanie1.PNG
and 'invalid request' is called in 30 line of router.php
Code:
if (isset($HTTP_RAW_POST_DATA)) { header('Content-Type: text/javascript');
$data = json_decode($HTTP_RAW_POST_DATA);
}
else if(isset($_POST['extAction'])){ // form post
$isForm = true;
$isUpload = $_POST['extUpload'] == 'true';
$data = new BogusAction();
$data->action = $_POST['extAction'];
$data->method = $_POST['extMethod'];
$data->tid = isset($_POST['extTID']) ? $_POST['extTID'] : null;
$data->data = array($_POST, $_FILES);
}
else {
die('Invalid request.');
}