|
|
|
PayPal Developer Community >
Forums >
Technical Discussion >
PayPal Mobile >
Re: Sandbox mobile Internal Server Error
|
|
|
|
|
|
Sandbox mobile Internal Server Error
|
|
Midian
Newbie
Posts: 2
Registered: 07-30-2009


Message 1 of 6

Viewed 1,815 times
|

|
|
Hi. When I try to go to this URL: https://sandbox.paypal.com/wc?t=<token> I'm getting "Internal Server Error" message. Please advice.
|
|
|
|
07-30-2009 01:36 PM
|
|
|
|
|
|
Re: Sandbox mobile Internal Server Error
|
|
bobwold
Visitor
Posts: 2
Registered: 07-30-2009


Message 2 of 6

Viewed 1,806 times
|

|
|
I'm getting the same thing... I tried last week, and it got further, but still gave an error when I tried to use the Mobile Checkout on sandbox. Any ETA on this PayPal?
|
|
|
|
07-30-2009 02:17 PM
|
|
|
|
|
|
Re: Sandbox mobile Internal Server Error
|
|
DiegoBoschi
Regular Visitor
Posts: 8
Registered: 01-02-2009


Message 3 of 6

Viewed 1,713 times
|

|
|
I'm getting the same error today (August 11) using https://www.sandbox.paypal.com/wc?t=<token>. PayPal, please help us!
|
|
|
|
08-11-2009 09:29 AM
|
|
|
|
|
|
|
|
Re: Sandbox mobile Internal Server Error
[ Edited ]
|
|
Morticae
Newbie
Posts: 1
Registered: 08-11-2009


Message 5 of 6

Viewed 1,696 times
|

|
|
I registered on here just to respond to this and comment about what total crap the PayPal docs, sandbox, and code examples are. Then I was greeted with this, which sums it up just about perfectly: "Your password must be 6 or more characters, contain at least one lowercase character, one uppercase character, one digit, and no repeated sequence of characters of any length. Your password can't be a subset of your login name." Seriously Paypal!? Who the F is running your show? The day google checkout localizes currencies in other countries will be one of the happiest days of my life. So yes, after slogging through their docs and getting my mobile NVP token response working, I was also greeted with mysterious 500 server errors. Found this thread after a while. Thanks guys. Oh, and by the way? This little gem of PHP code? /** This function will take NVPString and convert it to an Associative Array and it will decode the response. * It is usefull to search for a particular key and displaying arrays. * @nvpstr is NVPString. * @nvpArray is Associative Array. */
function deformatNVP($nvpstr) {
$intial=0; $nvpArray = array();
while(strlen($nvpstr)){ //postion of Key $keypos= strpos($nvpstr,'='); //position of value $valuepos = strpos($nvpstr,'&') ? strpos($nvpstr,'&'): strlen($nvpstr);
/*getting the Key and Value values and storing in a Associative Array*/ $keyval=substr($nvpstr,$intial,$keypos); $valval=substr($nvpstr,$keypos+1,$valuepos-$keypos-1); //decoding the respose $nvpArray[urldecode($keyval)] =urldecode( $valval); $nvpstr=substr($nvpstr,$valuepos+1,strlen($nvpstr)); } return $nvpArray; } Are you SERIOUS? function welcomeToPHP4.0($morons) { parse_str($morons, $returnArray); return $returnArray; } You're welcome. FFS. Message Edited by Morticae on 08-11-2009 06:09 PM
|
|
|
|
08-11-2009 06:08 PM
|
|
|
|
|
|
Re: Sandbox mobile Internal Server Error
|
|
Midian
Newbie
Posts: 2
Registered: 07-30-2009


Message 6 of 6

Viewed 1,411 times
|

|
|
Ok, no more "Internal server error" message. Now I'm getting this after submitting "Log in to pay" form: "Dispatch Error, please check logfile for more information". No matter if login details was correct or not. What to do now?
|
|
|
|
08-25-2009 03:59 PM
|
|
|
|
|
|
|