No Paypal

sadman

No avatar

2006-01-13 01:37

I cant beleive a script this good does not support paypal

totally gutted :0(

If im wrong and there is a plugin that is not listed on here then fill me in

:0)

ta!

Ashen

No avatar

2006-01-13 03:57

There are plenty of ways to make paypal work with this script that are nice and simple. :) Just browse through the forums for anything with "Paypal" in the topic.

http://opensolution.org/forum/index.php?p=readTopic&nr=1415 <- this link has the code to implement paypal in all versions (including 1.0) of quickcart.

sadman

No avatar

2006-01-13 04:33

hi

yeah i tried that example

did'nt work 4 me :0(

appart from the hik with paypal this script is perfect!

can the creator not do a decent plugin for it?

sadman

No avatar

2006-01-13 05:05

QUOTE

There are plenty of ways to make paypal work with this script that are nice and simple. :) Just browse through the forums for anything with "Paypal" in the topic.

QUOTE

lol

firstly ..."There are plenty of ways to make paypal work with this script that are nice and simple"

If thats the case why not post them so we can try them init!

Secondly...."Just browse through the forums for anything with "Paypal" in the topic."

ha ha dooooood! im no noOb to forums - i can read and search

Non of the example here have worked for me i've been at this for hours

Im from the UK - its 4 AM (thats in the morning to you) lol

so forgive my sense of humour and spelling but if i wanted to play guessing games i'd buy shares in MATTEL! (http://www.mattel.com)




Ashen

No avatar

2006-01-13 05:08

Which version are you using, .3 or 1.0?

sadman

No avatar

2006-01-13 05:11

oh & for the record..your link

http://opensolution.org/forum/index.php?p=readTopic&nr=1415


dir = templates/default/orders_payment.tpl

this does not exist in v1 default folder that is

:0b


sadman

No avatar

2006-01-13 05:12

0.3.1 & 1.0

trying both to see what the difference is

Ashen

No avatar

2006-01-13 05:14

The 1.0 script requires you to have a Courier with a value greater than 0.

The "edit >>>>actions_client/orders.php" bit you only paste the stuff inside the paypal start/paypal end markers (the code above and below that is to show you where to post it.

Alternatively you could just post the...

<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="USD">
<
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 />
$lang[Order_finished]<br />
<
a href="javascript:windowNew( '?p=ordersWindowPrint&amp;iOrder=$iOrder' );">&raquo$lang[Order_print]</a><br />
<
a href="?p=">$lang[Homepage]</a>
</
div>
</
div>



inside any template part.

If you want the variables to work properly, you can paste it under orders_print.tpl --> LIST_FOOTER segment, and change the "print" link on the success message (messages.tpl) to "proceed to payment".

...hope I've helped in some way.

Cheers.
Ash.

Ashen

No avatar

2006-01-13 05:16

Hrmmm... the code didn't work O_o'

<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="USD">
<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 />
$lang[Order_finished]<br />
<a href="javascript:windowNew( '?p=ordersWindowPrint&amp;iOrder=$iOrder' );">&raquo; $lang[Order_print]</a><br />
<a href="?p=">$lang[Homepage]</a>
</div>
</div>

I'll keep watching here for any questions you have...

sadman

No avatar

2006-01-13 05:18

are you the developer of the script?

Ashen

No avatar

2006-01-13 05:23

nope... I've been working with hacking it for a few days though (and am working on it now) and have implemented the paypal thing (and have it working). I'm also talking to Arpan (another random) about updating the Attributes script....

so yeah :), I have a bit of knowledge that might help (and am on right now ;))

sadman

No avatar

2006-01-13 05:28

what have you dont to get paypal working on your then

the code above - im confused to where this goes

sadman

No avatar

2006-01-13 05:42

hmm

i have pasted that code aboce in messages.tpl

when check out is finished you see the paypal button

i clicked it but it does not fill the amount or postage in

this really is not clever is it

The script is great up to check out then it flops BIG TIME!

also if the user presses back the carts contents are lost - thats not good lol

Ashen

No avatar

2006-01-13 05:48

haha, indeed.

The problem is the cart isn't sending some of the data (probably $aList[fSummary]) to the "messages" bit of the template. Go through your default templates and find the areas that call that variable. These areas contain data, however, as far as I can see the variable is used not just for final amount-shipping but also for product amounts.

The template segment I'm using (LIST_FOOTER in orders_print.tpl) does receive the correct data in the correct variable. There may be others though, I'm not sure.

sadman

No avatar

2006-01-13 05:54

hmm lol

was that a question?

sadman

No avatar

2006-01-13 05:58

i dont get it

i dont understand how the script works so i cant comment on whats being passed

in my eyes messages.tpl should hold the paypal button and the form and variables ready to send to paypal

but not all are getting passed to messages.tpl

any ways im off to sleep at 5 in the am

take a lookzee at this

http://www.syndikut.org/scriptz.html

thanks for ya help!

Ashen

No avatar

2006-01-13 06:05

I'll take a look at getting the correct variable passed to messages.tpl in a sec (shouldn't be that hard... probably aboot a 1 line hack).

sadman

No avatar

2006-01-13 12:04

any luck with that ^

keeb

No avatar

2006-04-27 13:46

i have the paypal integrated into my cart and it works perfectly..

with one exception, i hve a small issue with the shipping, i want to charger per item so far this is a bit challenging the only work around is to set paypal up to handle the shipping ..

other than that this cart is awesome.

keep up the good work.

also there should be integration for other cc payments like ccbill i will be trying that one out later as i am thinking about integrating this cart into a post nuke site i admin. will post more later..

=keeb=

=keeb - The boss of the little people=

Back to top
about us | contact