Quote Originally Posted by optikalsaint View Post
I have been reading through this thread for days trying to find a solution for the problem I am having. Unfortunately, I have been unable to do so.

Every time an order is placed via Google Checkout no data is sent back to my administration section for the order. When I pull up the Intergration section of Google Checkout, I am presented with the following error:



I have done a ton of searching through Google as well as this forums search functions and I cannot find anything that can help me tackle this problem. I have also contacted Google themselves and all they said was:



If anyone can help me out here, I would really appreciate it!

Thanks in advance!
I fixed it! It turns out it was a problem with my version of PHP (version 5.2.2). For some reason, the $HTTP_RAW_POST_DATA was not being populated. After adding the following code my responsehandler.php file, everything was working wonderfully!

$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : file_get_contents("php://input");