Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 07-18-2004 08:31:42

ghost1157
Member
Registered: 02-19-2003
Posts: 93

Not Passing To Paypal

Okay maybe I'm retarded , but when I make a purchase through paypal , I hit the submit button in CCP51 and it takes me to a "normal" paypal login page and expects a login . I login and it just takes me to my account . I know this isn't right , it should be taking my to a "buy it now" type paypal page with the items in my cart displayed etc. 

I must be doing something wrong but can't figure it out , and yes the form in ccp51 for orders and payment does contain my paypal username .

It appears like the variables are not being passed to Paypal ?


Offline

 

#2 07-18-2004 12:29:13

TheThinker
Member
From: Salt Lake City, Utah
Registered: 06-16-2004
Posts: 535
Website

Re: Not Passing To Paypal

ghost1157,07/18/2004 08:31:42 AM wrote:

Okay maybe I'm retarded , but when I make a purchase through paypal , I hit the submit button in CCP51 and it takes me to a "normal" paypal login page and expects a login . I login and it just takes me to my account . I know this isn't right , it should be taking my to a "buy it now" type paypal page with the items in my cart displayed etc. 

I must be doing something wrong but can't figure it out , and yes the form in ccp51 for orders and payment does contain my paypal username .

It appears like the variables are not being passed to Paypal ?


.

What was the problem and the resolution??


Regards,
Eric

Offline

 

#3 07-18-2004 21:28:10

ghost1157
Member
Registered: 02-19-2003
Posts: 93

Re: Not Passing To Paypal


I put in a new skin and apparently it messed up my form for the payment variables . I found a similar posting here and there was a copy of a working paypal form , I just pasted it in and it took off and started working fine .

Offline

 

#4 07-27-2004 05:28:45

mrtsb
Member
Registered: 07-22-2004
Posts: 2

Re: Not Passing To Paypal

Hi

I am having the same problem , i.e the info not being passed through to Paypal , I have entererd the account username etc into the scrpit but still returns an error

do you have a copy of the script that works with Paypal?

Cheers Mike

Offline

 

#5 07-27-2004 06:12:11

ghost1157
Member
Registered: 02-19-2003
Posts: 93

Re: Not Passing To Paypal


Paste this in your PayPal "form content" area in the paypal "update payment method " area of CCP51 . Make sure you change the email address at line 10 to you own . :



After verifying your order information and clicking the 'Submit' button, you will be directed to Pay Pal's secure site to enter your payment information. Once your payment information is entered and verified, you will be directed back to this web site for your order confirmation.<BR><BR>

QUOTE 
<FORM METHOD="POST" ACTION="https://www.paypal.com/cgi-bin/webscr">

<!-- ### -->
<INPUT TYPE="HIDDEN" NAME="business" VALUE="youremail@yoursite.com">
<!-- ### -->

<INPUT TYPE="HIDDEN" NAME="bn" VALUE="(CGIVAR)release_verbuild(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="item_number" VALUE="(CGIVAR)tracking_id(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="custom" VALUE="(CGIVAR)fd_usr(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="amount" VALUE="(CGIVAR)tracking_total(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="first_name" VALUE="(CGIVAR)tracking_firstname(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="last_name" VALUE="(CGIVAR)tracking_lastname(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="address1" VALUE="(CGIVAR)tracking_addressone(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="address2" VALUE="(CGIVAR)tracking_addresstwo(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="city" VALUE="(CGIVAR)tracking_city(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="state" VALUE="(CGIVAR)tracking_stateabbus(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="country" VALUE="(CGIVAR)tracking_country(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="zip" VALUE="(CGIVAR)tracking_zip(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="email" VALUE="(CGIVAR)tracking_email(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="return" VALUE="(CGIVAR)common_url_form(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="notify_url" VALUE="(CGIVAR)common_url_form(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="item_name" VALUE="Online Order">

<INPUT TYPE="HIDDEN" NAME="cmd" VALUE="_ext-enter">

<INPUT TYPE="HIDDEN" NAME="redirect_cmd" VALUE="_xclick">

<INPUT TYPE="HIDDEN" NAME="undefined_quantity" VALUE="0">
<CENTER>

<INPUT TYPE="IMAGE" SRC="(CGIVAR)images_path(/CGIVAR)/button/submit_submit.gif" WIDTH="(CGIVAR)site_button_image_width(/CGIVAR)" HEIGHT="(CGIVAR)site_button_image_height(/CGIVAR)" BORDER="0" VALUE="submit"> <A HREF="(CGIVAR)common_url(/CGIVAR)&pg=cancel"><IMG SRC="(CGIVAR)images_path(/CGIVAR)/button/submit_cancel.gif" WIDTH="(CGIVAR)site_button_image_width(/CGIVAR)" HEIGHT="(CGIVAR)site_button_image_height(/CGIVAR)" BORDER="0"></A>

</FORM>

</CENTER>

Offline

 

#6 07-27-2004 06:22:55

GreenbarnWeb
Member
Registered: 09-23-2003
Posts: 2743
Website

Re: Not Passing To Paypal

Hi Mike,

This is the UK version of the PayPal form, slightly different.

After verifying your order information and clicking the 'Submit' button, you will be directed to Pay Pal's secure site to enter your payment information. Once your payment information is entered and verified, you will be directed back to this web site for your order confirmation.<BR><BR>

<FORM METHOD="POST" ACTION="https://www.paypal.com/cgi-bin/webscr">

<!-- ### -->
<INPUT TYPE="HIDDEN" NAME="business" VALUE="Your-email">
<!-- ### -->
<INPUT TYPE="HIDDEN" NAME="currency_code" VALUE="GBP">
<INPUT TYPE="HIDDEN" NAME="bn" VALUE="(CGIVAR)release_verbuild(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="undefined_quantity" VALUE="0">

<INPUT TYPE="HIDDEN" NAME="item_name" VALUE="Online Order">

<INPUT TYPE="HIDDEN" NAME="item_number" VALUE="(CGIVAR)tracking_id(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="custom" VALUE="(CGIVAR)fd_usr(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="amount" VALUE="(CGIVAR)tracking_total(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="first_name" VALUE="(CGIVAR)tracking_firstname(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="last_name" VALUE="(CGIVAR)tracking_lastname(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="address1" VALUE="(CGIVAR)tracking_addressone(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="address2" VALUE="(CGIVAR)tracking_addresstwo(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="city" VALUE="(CGIVAR)tracking_city(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="state" VALUE="(CGIVAR)tracking_stateabbus(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="country" VALUE="(CGIVAR)tracking_country(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="zip" VALUE="(CGIVAR)tracking_zip(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="email" VALUE="(CGIVAR)tracking_email(/CGIVAR)">

<INPUT TYPE="HIDDEN" NAME="notify_url" VALUE="(CGIVAR)common_url_form(/CGIVAR)">

(CGIGET TYPE="SUB" VALUE="ste_olp_recur" PARAMS="ste_gw_paypalpp")

<CENTER>

<INPUT TYPE="IMAGE" SRC="(CGIVAR)images_path(/CGIVAR)/button/submit_submit.gif" WIDTH="(CGIVAR)site_button_image_width(/CGIVAR)" HEIGHT="(CGIVAR)site_button_image_height(/CGIVAR)" BORDER="0" VALUE="submit"> <A HREF="(CGIVAR)common_url(/CGIVAR)&pg=cancel"><IMG SRC="(CGIVAR)images_path(/CGIVAR)/button/submit_cancel.gif" WIDTH="(CGIVAR)site_button_image_width(/CGIVAR)" HEIGHT="(CGIVAR)site_button_image_height(/CGIVAR)" BORDER="0"></A>

</FORM>

</CENTER>

Offline

 

#7 07-27-2004 06:30:36

ghost1157
Member
Registered: 02-19-2003
Posts: 93

Re: Not Passing To Paypal




OOOOOPS ! Sometimes I forget that the US is not the only country using CCP51 , sorry about that , certainly doesn't hurt to have both here for an easy fix on both versions though ! 

Offline

 

#8 07-27-2004 10:13:05

mrtsb
Member
Registered: 07-22-2004
Posts: 2

Re: Not Passing To Paypal

Thanks

Working Perfectly now cheers

Offline

 

Board footer