News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Moneybookers Details

Started by casibbald, March 17, 2005, 21:48:17 PM

Previous topic - Next topic

casibbald

Hi,

I think i had placed this in the wrong place, if anyone can help id appreciate it.

Hi Soeren,

Please can you provide me with the database field names for the following info so i can prepare Moneybookers payment details:.

Field: Amount_discription
Detail: Moneybookers allows merchant to specify a detailed calculation for the total amount payable.

Field: Amount
Detail: This is the total sale amount before taxes or shipping.

Field: Shipping & Charges
Detail: Shipping, Handling Fees & Charges

Field: VAT Rate
Detail: VAT used for particular current transaction

Field: VAT Amount
Detail: VAT value/amount

Field: Total Amount
Detail: Sale Total

Field: purchase summary
Detail: purchase summary



Please also look to the following URL should you need clarification of the items i have mentioned.
http://www.moneybookers.com/merchant/en/moneybookers_gateway_manual.pdf


Thanks so much

clubart

Is Moneybookers payment module finished?

I need it urgently.
www.hostking.info // Plesk Web Hosting
www.medialabs.info // Web Design and Development

clubart

Please help, I urgently need MoneyBookers payment module.

Can someone help me?
www.hostking.info // Plesk Web Hosting
www.medialabs.info // Web Design and Development

Soeren

You can easily set up your Moneybookers Payment Method by adding a new payment method, type  PayPal or related and fill in this code into the payment Extra info (see Tab "Configuration" in the payment method form):

<form action="https://www.moneybookers.com/app/payment.pl" method="post"
target="_blank" />
<input type="hidden" name="pay_to_email" value="paytoyouremail@yourdomain.com" />
<input type="hidden" name="transaction_id" value="<?php $db->p("order_id"?>" />
<input type="hidden" name="return_url" value="<?php echo SECUREURL
."index.php?option=com_phpshop&amp;page=checkout.result&amp;order_id=".$db->f("order_id")
?>
" />
<input type="hidden" name="cancel_url" value="<?php echo SECUREURL ."index.php" ?>">
<input type="hidden" name="status_url"
value="https://www.moneybookers.com/process_payment.cgi">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="customer_id" value="USER_ID" />
<input type="hidden" name="pay_from_email" value="<?php echo $user->email?>" />
<input type="hidden" name="amount" value="<?php printf("%.2f",
$db->f("order_total"))?>
" />
<input type="hidden" name="currency" value="EUR" />
<input type="hidden" name="firstname" value="<?php echo $user->first_name?>" />
<input type="hidden" name="lastname" value="<?php echo $user->last_name?>" />
<input type="hidden" name="address" value="<?php echo $user->address_1?>&#10<?php
echo $user->address_2?>
" />
<input type="hidden" name="postal_code" value="<?php echo $user->zip?>" />
<input type="hidden" name="city" value="<?php echo $user->city?>" />
<input type="hidden" name="state" value="<?php echo $user->state?>" />
<input type="hidden" name="detail1_description" value="description1" />
<input type="hidden" name="detail1_text" value="detail1" />
<input type="hidden" name="detail2_description" value="description2" />
<input type="hidden" name="detail2_text" value="detail2" />
<input type="hidden" name="detail3_description="description3" />
<input type="hidden" name="detail3_text" value="detail3" />
<input type="hidden" name="confirmation_note" value="Your payment is ok. Thank you!" />
<input type="submit" value="Pay!">
</form>


Save it and you're done. You can modify the code just as you like.
A big thankyou goes out to "Lubos" <informuj (@) mailbox.sk> for this code.


ciao, Soeren
The future of eCommerce: VirtueMart & Joomla!
http://virtuemart.net

Alvydas

I use moneybookers payment module for downloadables and need automatic update of order status from Pending to Confirm after the payment is processed. Any solution? Lot of thanks in advance!

Alvydas

Additional information: moneybookers posts payment details to merchant server showed in "status_url" with field "status" value equal 2 when the payment is processed; but it seems that virtuemart has no tool to process such info provided by moneybookers...

Rolf Wagels

Hey
thanks for the modul data. On emore question: When the customer reaches the moneybrookers website, he gets the right amount, but the choosen goods look like:
description1  detail1
description2 detail2

Anything I can do about that?
Thanks
Rolf

Riccardo

Quote from: Rolf Wagels on March 05, 2007, 11:21:39 AM
Hey
thanks for the modul data. On emore question: When the customer reaches the moneybrookers website, he gets the right amount, but the choosen goods look like:
description1  detail1
description2 detail2

Anything I can do about that?
Thanks
Rolf


I have the same problem too, can someone tell us how to show the real value according to the order made instead ogf these generic descriptions?

Thank you very much any help will be very appreciated!

Thx

Peace!

Bun Tute

Hi,

Just some ideas...

<input type="hidden" name="detail1_description" value="Merchant :" />
<input type="hidden" name="detail1_text" value="yoursite.com" />
<input type="hidden" name="detail2_description" value="Order Number :" />
<input type="hidden" name="detail2_text" value="<?php printf("%08d", $db->f("order_id")); ?>" />

Riccardo

thank
Quote from: Bun Tute on May 25, 2007, 08:10:21 AM
Hi,

Just some ideas...

<input type="hidden" name="detail1_description" value="Merchant :" />
<input type="hidden" name="detail1_text" value="yoursite.com" />
<input type="hidden" name="detail2_description" value="Order Number :" />
<input type="hidden" name="detail2_text" value="<?php printf("%08d", $db->f("order_id")); ?>" />


thank for the reply, unfortunately i'm not a php-er i can understand it but i cant create instructions from scratch. so can you help me to customize it accordingly to my needs?

i would like to show
Merchant name ->my site's name
Item ordered -> name of the item
Short description of item -> short description
Taxes -> taxes
Shipping -> Shipping costs
...

i know i can take these values from db but i don't know how. can you help me in this?

I thank you very much for your help, hi

Roberto

Quote from: Soeren on August 09, 2005, 08:21:02 AM
You can easily set up your Moneybookers Payment Method by adding a new payment method, type  PayPal or related and fill in this code into the payment Extra info (see Tab "Configuration" in the payment method form):

<form action="https://www.moneybookers.com/app/payment.pl" method="post"
target="_blank" />
<input type="hidden" name="pay_to_email" value="paytoyouremail@yourdomain.com" />
<input type="hidden" name="transaction_id" value="<?php $db->p("order_id"?>" />
<input type="hidden" name="return_url" value="<?php echo SECUREURL
."index.php?option=com_phpshop&amp;page=checkout.result&amp;order_id=".$db->f("order_id")
?>
" />
<input type="hidden" name="cancel_url" value="<?php echo SECUREURL ."index.php" ?>">
<input type="hidden" name="status_url"
value="https://www.moneybookers.com/process_payment.cgi">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="customer_id" value="USER_ID" />
<input type="hidden" name="pay_from_email" value="<?php echo $user->email?>" />
<input type="hidden" name="amount" value="<?php printf("%.2f",
$db->f("order_total"))?>
" />
<input type="hidden" name="currency" value="EUR" />
<input type="hidden" name="firstname" value="<?php echo $user->first_name?>" />
<input type="hidden" name="lastname" value="<?php echo $user->last_name?>" />
<input type="hidden" name="address" value="<?php echo $user->address_1?>&#10<?php
echo $user->address_2?>
" />
<input type="hidden" name="postal_code" value="<?php echo $user->zip?>" />
<input type="hidden" name="city" value="<?php echo $user->city?>" />
<input type="hidden" name="state" value="<?php echo $user->state?>" />
<input type="hidden" name="detail1_description" value="description1" />
<input type="hidden" name="detail1_text" value="detail1" />
<input type="hidden" name="detail2_description" value="description2" />
<input type="hidden" name="detail2_text" value="detail2" />
<input type="hidden" name="detail3_description="description3" />
<input type="hidden" name="detail3_text" value="detail3" />
<input type="hidden" name="confirmation_note" value="Your payment is ok. Thank you!" />
<input type="submit" value="Pay!">
</form>


Save it and you're done. You can modify the code just as you like.
A big thankyou goes out to "Lubos" <informuj (@) mailbox.sk> for this code.


ciao, Soeren


I try but after checkout i dont have the moneybookers screen. Can you help me?


Roberto

I try but i have this on my screen after saving

Warning: add(/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/payment/cp_payment.php) [function.add]: failed to open stream: No such file or directory in /mounted-storage/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/ps_payment_method.php on line 174

Warning: add(/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/payment/cp_payment.php) [function.add]: failed to open stream: No such file or directory in /mounted-storage/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/ps_payment_method.php on line 174

Warning: add() [function.include]: Failed opening '/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/payment/cp_payment.php' for inclusion (include_path='.:/usr/local/lib/php') in /mounted-storage/home20a/sub001/sc19973-KOZF/collectplanet.com/administrator/components/com_virtuemart/classes/ps_payment_method.php on line 174




Quote from: Soeren on August 09, 2005, 08:21:02 AM
You can easily set up your Moneybookers Payment Method by adding a new payment method, type  PayPal or related and fill in this code into the payment Extra info (see Tab "Configuration" in the payment method form):

<form action="https://www.moneybookers.com/app/payment.pl" method="post"
target="_blank" />
<input type="hidden" name="pay_to_email" value="paytoyouremail@yourdomain.com" />
<input type="hidden" name="transaction_id" value="<?php $db->p("order_id"?>" />
<input type="hidden" name="return_url" value="<?php echo SECUREURL
."index.php?option=com_phpshop&amp;page=checkout.result&amp;order_id=".$db->f("order_id")
?>
" />
<input type="hidden" name="cancel_url" value="<?php echo SECUREURL ."index.php" ?>">
<input type="hidden" name="status_url"
value="https://www.moneybookers.com/process_payment.cgi">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="customer_id" value="USER_ID" />
<input type="hidden" name="pay_from_email" value="<?php echo $user->email?>" />
<input type="hidden" name="amount" value="<?php printf("%.2f",
$db->f("order_total"))?>
" />
<input type="hidden" name="currency" value="EUR" />
<input type="hidden" name="firstname" value="<?php echo $user->first_name?>" />
<input type="hidden" name="lastname" value="<?php echo $user->last_name?>" />
<input type="hidden" name="address" value="<?php echo $user->address_1?>&#10<?php
echo $user->address_2?>
" />
<input type="hidden" name="postal_code" value="<?php echo $user->zip?>" />
<input type="hidden" name="city" value="<?php echo $user->city?>" />
<input type="hidden" name="state" value="<?php echo $user->state?>" />
<input type="hidden" name="detail1_description" value="description1" />
<input type="hidden" name="detail1_text" value="detail1" />
<input type="hidden" name="detail2_description" value="description2" />
<input type="hidden" name="detail2_text" value="detail2" />
<input type="hidden" name="detail3_description="description3" />
<input type="hidden" name="detail3_text" value="detail3" />
<input type="hidden" name="confirmation_note" value="Your payment is ok. Thank you!" />
<input type="submit" value="Pay!">
</form>


Save it and you're done. You can modify the code just as you like.
A big thankyou goes out to "Lubos" <informuj (@) mailbox.sk> for this code.


ciao, Soeren

Roberto

Got Solution. I was puting info on class info.

Thanks

yannisc

I used the above code, but after payment, the order is still in "pending" status. How do we make it be confirmed?

thank you,
Yannis


kaushikndm

Quote from: Riccardo on May 22, 2007, 13:40:00 PM
Quote from: Rolf Wagels on March 05, 2007, 11:21:39 AM
Hey
thanks for the modul data. On emore question: When the customer reaches the moneybrookers website, he gets the right amount, but the choosen goods look like:
description1  detail1
description2 detail2
Anything I can do about that?
Thanks
Rolf
I have the same problem too, can someone tell us how to show the real value according to the order made instead ogf these generic descriptions?
Thank you very much any help will be very appreciated!
Thx
Peace!

http://www.moneybookers.com/merchant/en/moneybookers_gateway_manual.pdf