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

jameel

Get this module it works great.. will solve your problem as well..
It is iframe based module so customer will stay on your website, Full instructions are included
http://www.itechshop.org/index.php?option=com_virtuemart&page=shop.product_details&flypage=flypage.tpl&product_id=21
Virtuemart + Joomla extensions www.itechshop.org
get Paypal extended, payza extended, moneybookers extended module that let you use 98  currencies nonsupported paypal/alertpay/mb currencies on VM 1.1.x and convert them to supported one at www.itechshop.org

220+ domain extensions www.industechnologies.co

jameel

Now you can use 98 currencies in your favorite virtuemart and accept paypal, moneybookers or Payza (previously alertpay)..
these module convert non supported currencies into respective payment processor supported currency (you choose it in the backend)...

iMoneybookers extended payment module for non supported currencies

http://www.itechshop.org/index.php?option=com_virtuemart&page=shop.product_details&flypage=flypage.tpl&product_id=23

Payza extended payment module for non supported currencies
http://www.itechshop.org/index.php?option=com_virtuemart&page=shop.product_details&flypage=flypage.tpl&product_id=25

Paypal extended payment module for non supported currencies
http://www.itechshop.org/index.php?option=com_virtuemart&page=shop.product_details&flypage=flypage.tpl&product_id=19

or get combo pack that include all three and save 50%
http://www.itechshop.org/index.php?option=com_virtuemart&page=shop.product_details&flypage=flypage.tpl&product_id=24
Virtuemart + Joomla extensions www.itechshop.org
get Paypal extended, payza extended, moneybookers extended module that let you use 98  currencies nonsupported paypal/alertpay/mb currencies on VM 1.1.x and convert them to supported one at www.itechshop.org

220+ domain extensions www.industechnologies.co

ribo

Quote from: lukasknol on December 14, 2009, 22:07:41 PM
I found a solution to redirect directly to moneybookers so u dont need to use a pay button (this one is for creditcard):

---

vmRedirect( $url . $query_string );
} else {

---

Here is the whole script:

---

<?php
$db1 = new ps_DB();
$q = "SELECT country_2_code FROM #__vm_country WHERE country_3_code='".$user->country."' ORDER BY country_2_code ASC";
$db1->query($q);

$url = "https://www.moneybookers.com/app/payment.pl";
$tax_total = $db->f("order_tax") + $db->f("order_shipping_tax");
$discount_total = $db->f("coupon_discount") + $db->f("order_discount");



$post_variables = Array(
"pay_to_email" => MB_EMAIL,
"detail1_description" => $VM_LANG->_('PHPSHOP_ORDER_PRINT_PO_NUMBER').": ". $db->f("order_id"),
"transaction_id" => $db->f("order_number"),
"detail1_text" => $db->f("order_id"),
"amount" => $db->f("order_total"),
"currency" => $db->f("order_currency"),
"firstname" => $dbbt->f('first_name'),
"lastname" => $dbbt->f('last_name'),
"address" => $dbbt->f('address_1'),
"address2" => $dbbt->f('address_2'),
"postal_code" => $dbbt->f('zip'),
"city" => $dbbt->f('city'),
"hide_login" => "1" ,
"recipient_description" =>  $vendor_name,
"country" => $dbbt->f('country'),
"pay_from_email" => $dbbt->f('user_email'),
"phone_number" => $dbbt->f('phone_1'),
"logo_url" => "http://www.moneybookers.com/creatives/pay_below_5.gif",
"status_url2" => "mailto:" . MB_EMAIL,
"return_url" => SECUREURL ."index.php?option=com_virtuemart&page=checkout.resultmb&order_id=".$db->f("order_id"),
"status_url" => SECUREURL ."administrator/components/com_virtuemart/notifymb.php",
"cancel_url" => SECUREURL ."index.php",
"merchant_fields" => "softwareproviderjum, order_id" ,
"softwareproviderjum" => "joomvm" ,
"order_id" => $db->f("order_id") ,
"new_window_redirect" => "1",
"language" => "EN" ,
"payment_methods" => "ACC",

);
if( $page == "checkout.thankyou" ) {
$query_string = "?";
foreach( $post_variables as $name => $value ) {
$query_string .= $name. "=" . urlencode($value) ."&";
}

vmRedirect( $url . $query_string );
} else {


echo '<form action="'.$url.'" method="post" target="_parent">';
echo '<input type="image" name="submit" src="http://www.moneybookers.com/images/logos/checkout_logos/checkout_240x80px.gif" border="0" alt="Click to pay with Moneybookers - it is fast, free and secure!" />';

foreach( $post_variables as $name => $value ) {
echo '<input type="hidden" name="'.$name.'" value="'.htmlspecialchars($value).'" />';
}
echo '</form>';

}
?>

---
thank you for the solution. i ll try