Jump to Page:   1
Sandbox mobile Internal Server Error
Options    Options  
Midian
Newbie
Posts: 2
Registered: 07-30-2009


Midian

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.

Kudos!
07-30-2009 01:36 PM  
Re: Sandbox mobile Internal Server Error
Options    Options  
bobwold
Visitor
Posts: 2
Registered: 07-30-2009


bobwold

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? 

Kudos!
07-30-2009 02:17 PM  
Re: Sandbox mobile Internal Server Error
Options    Options  
DiegoBoschi
Regular Visitor
Posts: 8
Registered: 01-02-2009


DiegoBoschi

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!

Kudos!
08-11-2009 09:29 AM  
Re: Sandbox mobile Internal Server Error
Options    Options  
bobwold
Visitor
Posts: 2
Registered: 07-30-2009


bobwold

Message 4 of 6

Viewed 1,710 times


FYI: I got tired of waiting, so I ended up changing my price to 50 cents and developeing against production :-)  We have since launched the solution.

Kudos!
08-11-2009 11:21 AM  
Re: Sandbox mobile Internal Server Error   [ Edited ]
Options    Options  
Morticae
Newbie
Posts: 1
Registered: 08-11-2009


Morticae

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
2
Kudos!
08-11-2009 06:08 PM  
Re: Sandbox mobile Internal Server Error
Options    Options  
Midian
Newbie
Posts: 2
Registered: 07-30-2009


Midian

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?

Kudos!
08-25-2009 03:59 PM  
Jump to Page:   1
Copyright © PayPal. All Rights Reserved. By using this site, you agree to be bound by PayPal's Legal Disclaimer, User Agreement, and Privacy Policy. This site is subject to change without notice. All other products and company names are trademarks of their respective corporations.