Moneybookers Details

(1/8) > >>

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.

clubart:
Please help, I urgently need MoneyBookers payment module.

Can someone help me?

codrinber:
I need also moneybookers module...Any chance to release?

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):

Code:

<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

Navigation

[0] Message Index

[#] Next page