Pages:

Paypal for QC 1.3 loaded???

London mode Almelo

No avatar

2006-08-12 18:48

Hello,

I did read a lot in the forum about the Paypal plugin. But.... is there a plugin for version 1.3 loaded???

Can someone help me to get it functioning?!

Beware, i'm a noob :-)

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-14 20:41

I've tryed many times as discribted in this topic: http://opensolution.org/Quick.Cart/forum/?p=readTopic&nr=1533&page=1 But it doenst work!?

Can anybody plz help me out???

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-19 09:11

Nobody any suggestion???

Greetzzz London Mode Almelo

~Ned

No avatar

2006-08-19 09:51

The instructions in this topic do work in QC1.3.
Can you describe how your system fails?

Ned

Jo

No avatar

2006-08-19 14:43

The method that ste707 describes in the thread above definitely works. Try installing a fresh version of QuickCart and following the instructions again.

I had problems at first but when using a fresh version of QuickCart it worked fine.

~Ned

No avatar

2006-08-19 16:37

Remember to upload in BINARY mode.

London mode Almelo

No avatar

2006-08-19 18:48

Okey, thanx for the respons!!! I will give it another try!!!

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-19 19:03

@ Ñed,

Everything work well, i mean i dont get error's. But.... i cant see anything, there is no Paypal option that i can see!!!

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-20 11:59

Dont no what i'm doing wrong! It's still not working! I did the two steps again, loaded up in binaries, but the result is: no result!

It's pitty bacause i will like to launch my webstore, but it cant when people cant pay with Paypal.

Greetzzz London Mode Almelo

~Ned

No avatar

2006-08-20 12:25

All you should see is a Pay Pal button on the page after the order details have been taken.

Ive added to /lang/en.php
$lang['prepaypal'] = 'Thank you. Your order has been saved and we will send you a confirmation email with all the details. <br />You can now pay for your order by <b>PayPal</b> using the button below to make your payment to us.<br />We will dispatch your order as soon as we receive immediate confirmation of your payment from PayPal .';

And changed the start of /templates/messages.tpl to add the message...
<!-- BEGIN ORDER_PAYPAL -->
<div id="message">
$lang[prepaypal]<br />
<div id="ok">
<form target="paypal" name="..........
etc etc.

If you are not seeing the PayPal button check the line
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif" name="submit" alt="Make your payment with PayPal">

If you dont want the PayPal window to open in a new window then remove the "tatget" code ie
<form name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr" method="post">

HTH

Ned

London mode Almelo

No avatar

2006-08-20 12:48

Okey Ned, This is what i have uploaded in templates/message.tpl at the top of the page:

<!-- BEGIN DONE -->
<div id="message">
<div id="ok">
<form target="paypal" name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr"; method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="$config[email]">
<input type="hidden" name="item_name" value="Order ID $iOrder">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="$aList[fSummary]">
<input type="hidden" name="shipping" value="$aData[fCourierPrice]">
<input type="hidden" name="no_note" value="1">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif"; name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form><br />

This is what i uploaded in actions_client/orders.php:

$aData = throwOrder( $iOrder );
listBasket( $iOrder);
$aData['fSummary'] = sprintf( '%01.2f', $aData['fCourierPrice'] + $aList['fSummary'] );
if( $aData['fCourierPrice'] > 0 ){
$content .= $tpl->tbHtml( 'messages.tpl', 'ORDER_PAYPAL' );
}
else

I think i have followed the instructions carefully!

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-20 12:53

When i tested it yet, there is a error:

No block: ORDER_PAYPAL in file: templates/messages.tpl

Greetzzz London Mode Almelo

Ned

No avatar

2006-08-20 12:58

No its wrong. the orders action is calling ORDER_PAYPAL and your code is in DONE
The Messages files should be
<!-- BEGIN ORDER_PAYPAL-->
<div id="message">
<div id="ok">
<form target="paypal" name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr";; method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="$config[email]">
<input type="hidden" name="item_name" value="Order ID $iOrder">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="$aList[fSummary]">
<input type="hidden" name="shipping" value="$aData[fCourierPrice]">
<input type="hidden" name="no_note" value="1">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif";; name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form><br />
<!-- END ORDER_PAYPAL-->
<!-- BEGIN DONE -->
<!-- END DONE -->

Ned

London mode Almelo

No avatar

2006-08-20 13:06

Okey Ned, this is what i got now:

<!-- BEGIN ORDER_PAYPAL-->
<div id="message">
<div id="ok">
<form target="paypal" name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr";;; method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="$config[email]">
<input type="hidden" name="item_name" value="Order ID $iOrder">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="$aList[fSummary]">
<input type="hidden" name="shipping" value="$aData[fCourierPrice]">
<input type="hidden" name="no_note" value="1">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif";;; name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form><br />
<!-- END ORDER_PAYPAL-->
<!-- BEGIN DONE -->
<div id="message">
<div id="ok">
$lang[operation_completed]<br />
<a href="?p=$link">&laquo; $lang[operation_go_back]</a>
</div>
</div>
<!-- END DONE -->

Greetzzz London Mode Almelo

London mode Almelo

No avatar

2006-08-20 13:11

Ned,

Shoot i delete the lines between: BEGIN DONE and END DONE???

London mode Almelo

No avatar

2006-08-20 13:15

i deleted the lines between: BEGIN DONE and END DONE

London mode Almelo

No avatar

2006-08-20 13:20

Okey,

This is what i got yet:

<!-- BEGIN ORDER_PAYPAL-->
<div id="message">
<div id="ok">
<form target="paypal" name="_$iOrder" action="https://www.paypal.com/cgi-bin/webscr"; method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="$config[email]">
<input type="hidden" name="item_name" value="Order ID $iOrder">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="$aList[fSummary]">
<input type="hidden" name="shipping" value="$aData[fCourierPrice]">
<input type="hidden" name="no_note" value="1">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but6.gif"; name="submit" alt="Betaal met Paypal, het is snel, gratis en betrouwbaar!!!">
</form><br />
<!-- END ORDER_PAYPAL-->
<!-- BEGIN DONE -->

I get the error message: No block: ORDER_PAYPAL in file: templates/messages.tpl

And.... i cant see a Paypal button!

Claps

Avatar: Claps

2006-08-21 16:10

London mode Almelo - after ' ORDER_PAYPAL' you must have spaces like this '<!-- BEGIN ORDER_PAYPAL -->' and ' <!-- END ORDER_PAYPAL -->' .

London mode Almelo

No avatar

2006-08-21 17:39

@ Claps & Ned

You are my hero's !!!!! Thanx for the support guys!!!

It works!!!!

Only thing i have to change is the currency from GBP to Euro's

Claps

Avatar: Claps

2006-08-21 17:44

<input type="hidden" name="currency_code" value="EUR">

Pages:
Back to top
about us | contact