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
23 hours 19 min ago
1 day 8 hours ago
1 day 9 hours ago
1 day 13 hours ago
1 day 17 hours ago
1 day 17 hours ago
1 day 20 hours ago
2 days 6 hours ago
2 days 11 hours ago
2 days 12 hours ago