evotz Posted June 10, 2014 Share Posted June 10, 2014 Any chance we could get a copy of the paypal.php callback that uses the PayPal sandbox instead of the main PayPal? Would seem simple enough, just change the instance of https://www.paypal.com/cgi-bin/webscr to https://www.sandbox.paypal.com/cgi-bin/webscr (I think) and name it paypal-sandbox.php and release it for testing purposes. Makes it hard to test out the IPN system, when we can't use the sandbox to test. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Ryan Posted June 10, 2014 Share Posted June 10, 2014 Hello evotz, Actually this can be accomplished. If you submit a support ticket we will gladly assist you in setting this up. --Thanks 0 Quote Link to comment Share on other sites More sharing options...
rmbpantek Posted October 22, 2014 Share Posted October 22, 2014 Yeah, I tried to submit a ticket for this request. I was told to vote for this feature request. That was very unhelpful. 0 Quote Link to comment Share on other sites More sharing options...
durangod Posted October 22, 2014 Share Posted October 22, 2014 here is what i use, for the ipn $fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30); //live version $fp = fsockopen('ssl://www.sandbox.paypal.com',443,$errno,$errstr,30); // test only and for the form <!-- live version --> <form method="post" action= "https://www.paypal.com/cgi-bin/webscr" name="paypal"> <!-- test version --> <form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr" name="paypal"> 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.