Because i have no right to post at the developer forum, i post it here!
there is a bug in PHP 5.2.2 ans SOAP. Because there is as bug, so that
$HTTP_RAW_POST_DATA is always empty. So if u are using PHP 5.2.2 you have to code:
Code:
/**
* BUG in PHP 5.2.2 umgehen ($HTTP_RAW_POST_DATA ist IMMER LEER!!!)
*/
if (strpos(phpversion(), '5.2.2') !== false)
{
$HTTP_RAW_POST_DATA = file_get_contents("php://input");
}
the same for $POST[HTTP_RAW_POST_DATA].
and i think this will stop your remote framewort from working!
Olli
Recent comments
1 day 1 hour ago
1 day 3 hours ago
1 day 5 hours ago
1 day 6 hours ago
1 day 8 hours ago
1 day 9 hours ago
1 day 10 hours ago
2 days 2 hours ago
2 days 3 hours ago
2 days 7 hours ago