ZacharyR Posted December 27, 2012 Share Posted December 27, 2012 Hello, I downloaded the 5.1.3 patch for the Google Checkout module. But Google keeps sending me this message: We've made several unsuccessful attempts to send order notifications to your notification callback URL, <my callback URL> As a result, you aren't receiving order status, risk or other notifications. Now I have setup the correct URL in my Google Checkout merchant account. So I'm not entirely sure what the issue is here or why it is happening? Advice? 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Chris Posted December 27, 2012 Share Posted December 27, 2012 The issue here is usually caused when the server it is being run on is running PHP as CGI (fastcgi or suphp). The basic problem is that when scripts are running with PHP in CGI mode, PHP doesn't automatically populate the HTTP Authorization variables and those are required for the way Google's callback authentication system works. So one solution here really is to change the mode PHP is running with on your server. I've had a quick look on Google and there are some potential workarounds if that doesn't work, but they all involve some code editing and don't look to be full-proof as some users report success while others don't so I'm not sure they are a truly viable solution. So if you can change the PHP Mode that would be my recommendation. Another alternative would be adding the below to your .htaccess file: RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] 0 Quote Link to comment Share on other sites More sharing options...
ZacharyR Posted December 27, 2012 Author Share Posted December 27, 2012 Ah Suphp. I have this enabled. Is there any plans to fix this bug? Or only solution is to use workaround? 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Chris Posted December 27, 2012 Share Posted December 27, 2012 Hello, This isn't something controlled by WHMCS, but rather PHP and how Google's Callback system works. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.