OT: Is anyone here using PayPal IPN?

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default OT: Is anyone here using PayPal IPN?

    If so, what datatypes are you using for your various IPN variables?

    How do you handle shopping cart transactions with multiple-items? Do you
    insert all items in one record, or in several records one per each
    item_type, or in separate tables with user info in one table and
    transactions in another table linked to the first with user_id? The last
    seems to be the best option in terms of database normalization but does it
    work fine with PayPal IPN?

    Thanks!

    J.S.


    J.S. \(UltraSuite\) Guest

  2. Similar Questions and Discussions

    1. Dreamweaver & PayPal
      Hi im using dreamweaver and i have a client who wants to add paypal to his site, i gather you go to www.paypal.com and get an acount, but how does...
    2. Paypal
      Is it possible to be able to have a client update their site with contribute and administer paypal? -m
    3. Paypal PHP Dev Kit
      Hi, I have downloaded the Paypal PHP Dev kit and need some help. The documentation is sparse to say the least. The sample How can I use it...
    4. ASP & PayPal
      Hi, Can some one point me to a resource (if there is one) that describes if a value is sent back to my site from PAyPal once the payment has been...
    5. ASP + PAyPal
      Hi, Can some one point me to a resource (if there is one) that describes if a value is sent back to my site from PAyPal once the payment has been...
  3. #2

    Default Re: Is anyone here using PayPal IPN?

    The second option is what I used.

    I had a CF Page that recieves the IPN from Paypal and by extracting certain
    variables I use that to insert into 3 tables.
    Customer_tb
    Order_tb
    Orderdetails_tb

    Now, I use the Website payment preferences, and data transfer instead of
    IPN and it works better in my opinion.

    -Anthony

    "J.S. (UltraSuite)" <ultrasuite@nospam.com> wrote in message
    news:cuv7sl$bb7$1@forums.macromedia.com...
    > If so, what datatypes are you using for your various IPN variables?
    >
    > How do you handle shopping cart transactions with multiple-items? Do you
    > insert all items in one record, or in several records one per each
    > item_type, or in separate tables with user info in one table and
    > transactions in another table linked to the first with user_id? The last
    > seems to be the best option in terms of database normalization but does it
    > work fine with PayPal IPN?
    >
    > Thanks!
    >
    > J.S.
    >
    >

    Anthony Brown Guest

  4. #3

    Default Re: Is anyone here using PayPal IPN?

    > Now, I use the Website payment preferences, and data transfer instead of
    > IPN and it works better in my opinion.
    Do you mean that you use the PDT variables on the autoreturn page to insert
    the transaction values into your database? If so, why do you think it works
    better than IPN? I have tested both in combination and I am not sure what
    is the advantage of inserting the values into the database on that the
    autoreturn page.

    J.S.

    --

    "Anthony Brown" <anthony@kermy.com> wrote in message
    news:cv0gko$f07$1@forums.macromedia.com...
    > The second option is what I used.
    >
    > I had a CF Page that recieves the IPN from Paypal and by extracting
    > certain variables I use that to insert into 3 tables.
    > Customer_tb
    > Order_tb
    > Orderdetails_tb
    >
    > Now, I use the Website payment preferences, and data transfer instead of
    > IPN and it works better in my opinion.
    >
    > -Anthony

    J.S. \(UltraSuite\) Guest

  5. #4

    Default Re: Is anyone here using PayPal IPN?

    Yes, I use the PDT vars.

    I think having to use the identity token to recieve payment details is more
    secure than IPN.

    I agree though that for the most part they seem the same when it comes to
    backend operations.



    "J.S. (UltraSuite)" <ultrasuite@nospam.com> wrote in message
    news:cv0sg3$10v$1@forums.macromedia.com...
    >> Now, I use the Website payment preferences, and data transfer instead of
    >> IPN and it works better in my opinion.
    >
    > Do you mean that you use the PDT variables on the autoreturn page to
    > insert the transaction values into your database? If so, why do you think
    > it works better than IPN? I have tested both in combination and I am not
    > sure what is the advantage of inserting the values into the database on
    > that the autoreturn page.
    >
    > J.S.
    >
    > --
    >
    > "Anthony Brown" <anthony@kermy.com> wrote in message
    > news:cv0gko$f07$1@forums.macromedia.com...
    >> The second option is what I used.
    >>
    >> I had a CF Page that recieves the IPN from Paypal and by extracting
    >> certain variables I use that to insert into 3 tables.
    >> Customer_tb
    >> Order_tb
    >> Orderdetails_tb
    >>
    >> Now, I use the Website payment preferences, and data transfer instead of
    >> IPN and it works better in my opinion.
    >>
    >> -Anthony
    >
    >

    Anthony Brown Guest

  6. #5

    Default Re: Is anyone here using PayPal IPN?

    "Anthony Brown" <anthony@kermy.com> wrote in message
    news:cv1c5j$k3k$1@forums.macromedia.com...
    > Yes, I use the PDT vars.
    >
    > I think having to use the identity token to recieve payment details is
    > more secure than IPN.
    >
    > I agree though that for the most part they seem the same when it comes to
    > backend operations.
    Thanks for your response.

    J.S.


    J.S. \(UltraSuite\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139