Jump to content

Google Checkout Callback Issues


ZacharyR

Recommended Posts

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?

Link to comment
Share on other sites

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]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated