in

AlertPay Developers Community

Empty POST data from AlertPay

Last post 10-19-2009 3:58 PM by Fleites Computers. 21 replies.
Page 1 of 2 (22 items) 1 2 Next >
Sort Posts: Previous Next
  • 11-17-2008 2:42 PM

    Empty POST data from AlertPay

     Hello,

    i sometimes receive  Empty data from AlertPay.

    Can you please look at it at my account?

     

    My email is:    admin@roudycash.com

     

    I am sure that i have the right AlertURL and IPN setted correctly.

     

    Thank you a lot

  • 11-19-2008 3:10 PM In reply to

    Re: Empty POST data from AlertPay

    Hi, could you elaborate on the problem that you are experiencing? Can you tell us what you were trying to achieve and how did it go wrong? Perhaps provide us with the code that you are using.

     

    This would be useful to us and anyone that wish to help you.

    ***This is a Developers Forum, any other questions should be addressed to our Customer Support department or you can find the answers in our FAQ page.***
  • 11-20-2008 11:16 AM In reply to

    Re: Empty POST data from AlertPay

    brumlikczek@centrum.cz

    j.russ@seznam.cz 

    tixepower@gmail.com

    bananajohn3@gmail.com

    patrikkovacik@zmail.sk

     

     There is an example list of buyers, where the IPN always sent empty post data, i have daily over 50 successfuly IPN proccesses, so the problem can't be in my script.

    So please can you look at this emails to confirm, there aren't any problems?

     Thank you

  • 11-21-2008 10:38 AM In reply to

    Re: Empty POST data from AlertPay

    Hello,

    The reason you receive empty data is that some of your customer have special characters in their name or address (ex: Š, á, etc...) and the IPN gets cut off.

    We recently found out about this issue and are currently working on fixing it. We will be sending url encoded IPNs to avoid this and it is scheduled to be released sometime next week.

    We will keep you posted about it.

    ***This is a Developers Forum, any other questions should be addressed to our Customer Support department or you can find the answers in our FAQ page.***
  • 11-22-2008 12:19 PM In reply to

    • kbitz
    • Top 75 Contributor
    • Joined on 08-01-2008
    • Posts 11

    Re: Empty POST data from AlertPay

     HI

    We as well experience this issue (www.buxout.com)

    support@buxout.com

     

    I hope this gets fixed very soon :)

    Regards

     

  • 11-25-2008 3:22 PM In reply to

    • S. Jeffery
    • Top 100 Contributor
      Male
    • Joined on 08-25-2008
    • Ontario, Canada
    • Posts 8

    Re: Empty POST data from AlertPay

    Hello, My clients have also been experiencing this problem, though it didn't seem to happen before the 16th of November If the problem is special characters in names/addresses) -- and it certainly sounds plausible to me given the fact that your software also doesn't like characters such as apostrophes and ampersands in item descriptions -- I do hope it can be resolved quickly. Having to look up every relevant transaction that has been effected is very cumbersome. Please keep us informed about the progress towards a solution to this problem. Thank you.
  • 11-27-2008 11:27 PM In reply to

    • S. Jeffery
    • Top 100 Contributor
      Male
    • Joined on 08-25-2008
    • Ontario, Canada
    • Posts 8

    Re: Empty POST data from AlertPay

     Hi,

    Have you guys made any changes today?  I've been receiving *alot* more empty IPN postings.  As a matter of fact, all the transactions after 3:35pm EST have been empty. They can't all have special characters in them as many of these are returning customers that did not cause problems before.

    What's going on?

  • 11-28-2008 2:12 AM In reply to

    Re: Empty POST data from AlertPay

    Yup same here ever since this afternoon when they went down for maintenance Alertpays IPN has sent nothing. Not impressed. We now have to pull an all nighter manually crediting orders and hope Alertpay fixes this in the morning.

    It looks like they did not test their recent update, cause IPN has not worked since then.

  • 11-28-2008 10:45 AM In reply to

    Re: Empty POST data from AlertPay

     Hello,

     We have recently changed the IPN to post URL encrypted data, this may have caused some of the scripts that do not URL decode the data to think the data is "empty".

     

    we have now reverted back to the old code. Please start decodeing the URL post as we will start enforcing the URL encoding after the new year.

     

    If you have lost any post data between November 27th 6:00pm and November 28th 10:30am. please let us know and we will resend the data again.

     

    Thank you for your understanding.

     

    Regards,

     

    Ali Nizameddine

  • 11-28-2008 11:35 AM In reply to

    • S. Jeffery
    • Top 100 Contributor
      Male
    • Joined on 08-25-2008
    • Ontario, Canada
    • Posts 8

    Re: Empty POST data from AlertPay

     Hi,

     

    Thanks for getting IPN working again.  That will make my workday *alot* easier.

    I'm not sure I understand what you mean by "URL encrypted data"  This sites I administer send me error messages when my IPN URL receives no POST data.  These messages include GET and SERVER data as well and I didn't see any data sent by AlertPay to these either.

    Could you provide an example of how to decode the URL post using PHP?  Apparently the script I've been using for that past 5 months isn't able to do it.

    Thank you.

  • 11-28-2008 3:52 PM In reply to

    Re: Empty POST data from AlertPay

    If your going to render all IPN scripts effectively obsolete maybe a little notification and information ahead of time would be helpful?

  • 11-28-2008 4:40 PM In reply to

    Re: Empty POST data from AlertPay

     Before we URL Encode the IPN, we will give you a notification and update the sample scripts to show you how you can decode the IPN.

     

    In order to decode a string in PHP use the following:

     

    urldecode ( string $str )

     

    Thank you,

     

    Ali Nizameddine

  • 11-28-2008 7:29 PM In reply to

    • S. Jeffery
    • Top 100 Contributor
      Male
    • Joined on 08-25-2008
    • Ontario, Canada
    • Posts 8

    Re: Empty POST data from AlertPay

    Thanks.  I did know about PHP's urldecode() function, but am still confused as to how we were supposed to use it for POST values.

    Are you saying that you're going to start passing all data through a query string appended to the IPN URL?  That would make input available through GET, not POST.  I'm not sure why GET would be preferrable to POST.  The latter is more secure and doesn't have the same character count restrictions.

    I look forward to seeing the new IPN sample scripts so I can get a better understanding of exactly what you are proposing.

  • 12-11-2008 6:39 AM In reply to

    • versa
    • Top 200 Contributor
    • Joined on 12-11-2008
    • Posts 5

    Re: Empty POST data from AlertPay

    Just do this in PHP

    $alertpay_raw_arr = $_POST;

    $alertpay_arr = array_map("urldecode", $alertpay_raw_arr);

     

  • 01-04-2009 10:43 AM In reply to

    Re: Empty POST data from AlertPay

    Any examples for decoding in a PERL script?

Page 1 of 2 (22 items) 1 2 Next >

  AlertPay - Verified by Visa AlertPay - secure credit card and checking services BBBOnline Reliability Program