Reputation: 7783
This is a PHP (Zend Framework 1.11) site, not using an off-the-shelf package. When the request to:
https://live.sagepay.com/gateway/service/vspserver-register.vsp
(with a TxType
of PAYMENT
), I get the following response:
4020 : Information received from an Invalid IP address.
I have logged in to the SagePay admin area and added the IP address of the live server to the Valid IPs section and I've made sure it's using the correct SagePay URL to post to and.
An important note is that this issue started this morning, when we changed the SagePay account that payments get sent to, by changing the Vendor
attribute.
Update: This same account (vendor) is used on other accounts with the Form integration method, but the site in question used the Server integration method. Can individual accounts support multiple different payment methods like this, or does one need to activate the other? I don't see any options relating to this in the admin panel.
Upvotes: 7
Views: 19266
Reputation: 933
We need to add the web server IP address to Sagepay. (???Correct me if I'm wrong here)
For more details:
Local environment:
1) In your local environment, you need to find your public IP:
dig +short myip.opendns.com @resolver1.opendns.com
curl icanhazip.com
curl ipecho.net/plain
Or using: https://www.whatismyip.com/
In this case, the web server ip address uses your public ip.
2) Dev, staging, live environments: log in to the web server. Using the commands above to find the IP address.
Then, login to Sagepay account: Settings > Valid IPs > Add the IP address
Fill the IP address
(the Subnet mark mostly is 255.255.255.255)
Upvotes: 1
Reputation: 8569
I contacted Sagepay about this error, having already tried adding my IP as described in the other answers (this didn't help).
In my case they said the problem was missing internal IPs on the account on their end, nothing to do with where the request came from.
They added the IPs while I was on the phone and that sorted the issue. If adding the server IP doesn't help it's well worth giving them a call.
Upvotes: 1
Reputation: 7783
After getting a response from SagePay I have found the following important notes:
The issue here was that the IP address of the web server (www.mysite.com), being on a VPS, turned out to not be the same address as the one used when curl
requests were made. I made a test PHP page that mailed the IP in $_SERVER['REMOTE_ADDR']
to myself and put it on another server. I then used curl
to grab that script and low and behold it was a different IP. Putting (a zero padded version of) this in to the Valid IPs
section in My SagePay control panel (logged in with the admin account) it sprung to life immediately.
You can use:
curl icanhazip.com
Like so:
[user@host ~]# curl icanhazip.com
177.12.41.200
to display the correct IP to use, from the command line of the server you're hosting the web site on, instead of uploading files and all that malarkey. More information and usage here.
Upvotes: 11
Reputation: 166677
You have to add your IP address into SagePay control panel.
Other suggestions:
Upvotes: 5