RE: paypal cart

2008-07-29 Thread Chad Gray
x27;t want to take a chance of truncating data. > -Original Message- > From: Eric Haskins [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 29, 2008 4:08 PM > To: CF-Talk > Subject: Re: paypal cart > > Chad, > > I guess I am kind of lost as to what the p

Re: paypal cart

2008-07-29 Thread Eric Haskins
hone and find out what they wanted > printed on the cards. > > > > > > -Original Message- > > From: William Seiter [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, July 29, 2008 1:39 PM > > To: CF-Talk > > Subject: Re: paypal cart > > > &g

Re: paypal cart

2008-07-29 Thread Claude Schneegans
>>Simple hack might be to have a 'hidden field' on your form that concats the 4 fields into 1 field with a specified delimeter. This way you are passing one var with all 4 lines. When it returns from the paypal side, you can 'parse' the data into four lines again using the specified delimete

RE: paypal cart

2008-07-29 Thread Chad Gray
To: CF-Talk > Subject: Re: paypal cart > > Simple hack might be to have a 'hidden field' on your form that concats > the 4 fields into 1 field with a specified delimeter. This way you are > passing one var with all 4 lines. When it returns from the paypal side, > you ca

Re: paypal cart

2008-07-29 Thread William Seiter
Simple hack might be to have a 'hidden field' on your form that concats the 4 fields into 1 field with a specified delimeter. This way you are passing one var with all 4 lines. When it returns from the paypal side, you can 'parse' the data into four lines again using the specified delimeter.

RE: paypal cart

2008-07-29 Thread Chad Gray
Ok last post, it does work in Firefox and IE. I just had a big typo on my -Original Message- > From: Chad Gray [<a rel="nofollow" href="mailto:[EMAIL">mailto:[EMAIL</a> PROTECTED] > Sent: Tuesday, July 29, 2008 12:39 PM > To: CF-Talk > Subje

RE: paypal cart

2008-07-29 Thread Chad Gray
CF-Talk > Subject: RE: paypal cart > > OH my... You can submit to two different action pages. The index.cfm page > is what is displayed because it was the last function run. > > > > function loginHandler1() > { > document.form1.action = "PayPalTest.cfm&quo

RE: paypal cart

2008-07-29 Thread Chad Gray
"index.cfm"; document.form1.submit(); } Username: Password: > -Original Message- > From: Chad Gray [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 29, 2008 12:02 PM > To: CF-Talk > Subject: RE: paypal cart > > IPN seems to just pass back the final orde

RE: paypal cart

2008-07-29 Thread Chad Gray
o two places at one? :) > -Original Message- > From: Eric Haskins [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 29, 2008 10:35 AM > To: CF-Talk > Subject: Re: paypal cart > > Look at PayPal IPN code. I have done some hacks (in php) where I > serialized > and A

Re: paypal cart

2008-07-29 Thread Eric Haskins
Look at PayPal IPN code. I have done some hacks (in php) where I serialized and Array of data then base64 encoded and passed it in the the string to get around limitations but I think your problem is the buttons do not post any data back to your cart that is why you should use PayPal IPN Eric On