UPDATE 1:

According to this site: http://net.tutsplus.com/tutorials/php/using-paypals-instant-payment-notification-with-php/ It says that paypal cannot access locally hosted websites unless certain router ports are opened. Is this because the website is about IPN or is this true for all paypal api's?

ORIGINAL QUESTION:

On my laptop, I have a LAMP environmetn setup, when I use the http://localhost to create website before going live.

For a new project, I need to use the paypal api's. Will I be able to use the localhost to test the paypal api's if I connect my laptop to the internet? Or will I have to upload my website to a LAMP host elsewhere?

You're probably thinking, what a stupid question, just try it to see if it works. I have tried it and it's not working and I wanted to rule out this question before going onto the next step.

link|improve this question

Do you receive an error code from paypal? Which API-set are you using, ExpressCheckout? – jishi Apr 1 '11 at 9:10
I get an apache type message saying that the website (my localhost) is down for maintenance... – oshirowanen Apr 1 '11 at 9:14
That doesn't make any sense? – jishi Apr 1 '11 at 9:33
feedback

4 Answers

up vote 1 down vote accepted

It should work. I have made a payment integration with paypal last year, and it worked on localhost without problems.

Are you using the paypal sandbox for development? https://developer.paypal.com/

link|improve this answer
Yes, I have setup a sandbox account and used the credentials from the sandbox account into the code generated from the paypal adaptive api integration wizard. – oshirowanen Apr 1 '11 at 9:03
Please see UPDATE 1: in the original question. – oshirowanen Apr 1 '11 at 9:06
make sure that paypal can access the site on your localhost. this means that your site must be accessible from other machines. – Mihai Frentiu Apr 1 '11 at 9:37
@Mihai Frentiu, are you sure this is neccessary? – oshirowanen Apr 1 '11 at 12:14
Yes, because in the paypal sandbox(for example) you must specify an IPN handler URL. Paypal is using this URL to call the php file on your website that handles the IPN call. So you cannot pass into that url localhost/yourwebsite/ipn_handler.php. You will need something like your_computer_public_ip/yourwebsite/ipn_handler.php – Mihai Frentiu Apr 1 '11 at 14:50
show 1 more comment
feedback

It should work without a problem, however it might get picky if you send in "invalid URLs" for return urls and IPN message urls. Meaning, sending in http://localhost/cancelpaypal.php as cancelURL might tell you that it is an invalid url.

I do however don't think it should.

Having to open up router ports would only be needed for IPN, because the redirect in the normal flow is a regular "Location:" header hence it is your browser that needs to be able to access the site (localhost)

link|improve this answer
feedback

To use IPN your localhost has to be accessed from the web. One solution that definitly works is to use a virtual Machine, install VPN-Server, connect your Clinet via VPN and manage virtual host to redirect to your local IP-adress. That way, if you turn on VPN your server can be accessed from outside and IPN can be sent.

link|improve this answer
feedback

If http://localhost doesn't validate use http://127.0.0.1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.