Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Alert pay module


Guest

Recommended Posts

Im looking for the Alertpay Gateway for Interspire Shopping Cart for my site.

If someone can make it i would apreciate it.

I can ftp it up to my site self so no installation necessary all i need is for someone to make this module so i can use it with my insterspire shopping cart.

 

So in detail:

If you have used interspire shopping cart before you will see all the payment gateways in the script such as paypal, google checkout etc..

What i want is to have a gateway for Alertpay (alertpay.com) so customers can buy instantly from my store and when they go through the checkout proceedure they can choose the option of paying by Alertpay.

Also would like to be told how long will it take as i need it as quickly as possible

Link to comment
Share on other sites

The module available to download: http://addons.oscommerce.com/info/4226

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Link to comment
Share on other sites

  • 1 month later...

I added this to the /catalog/includes/modules/payment/alertpay.php Barrys additions between

tep_draw_hidden_field('ap_purchasetype', 'Item') .

and

$hiddenBox .

 

to send user email, address, name, etc. I am still waiting to go live on alertpay but test mode looks good.

Sorry I posted it earlier in the wrong thread. this is for v2

---------------------------------------------------------

 

 

 

 

 

 

 

 

$hiddenBox .= tep_draw_hidden_field('ap_itemname'.$postfix, $order->products[$i]['name']) .

 

tep_draw_hidden_field('ap_amount'.$postfix, $order->products[$i]['price']) .

 

tep_draw_hidden_field('ap_quantity'.$postfix, $order->products[$i]['qty']);

 

}

 

 

 

$process_button_string = tep_draw_hidden_field('ap_merchant', MODULE_PAYMENT_ALERTPAY_ACCOUNT) .

 

//tep_draw_hidden_field('ap_amount', number_format(($order->info['total']) * $currencies->currencies[$CUR]['value'], $currencies->currencies[$CUR]['decimal_places'])) .

 

tep_draw_hidden_field('ap_currency', $CUR) .

 

tep_draw_hidden_field('ap_purchasetype', 'Item') .

 

//Barrys additions

tep_draw_hidden_field('ap_fname', $order->billing['firstname']) .

 

tep_draw_hidden_field('ap_lname', $order->billing['lastname']) .

 

tep_draw_hidden_field('ap_addressline1', $order->billing['street_address']) .

 

tep_draw_hidden_field('ap_city', $order->billing['city']) .

 

tep_draw_hidden_field('ap_stateprovince', $order->billing['state']) .

 

tep_draw_hidden_field('ap_zippostalcode', $order->billing['postcode']) .

 

tep_draw_hidden_field('ap_country', $order->billing['country']['title']) .

 

tep_draw_hidden_field('ap_contactemail', $order->customer['email_address']) .

 

tep_draw_hidden_field('ap_contactphone', $order->customer['telephone']) .

 

tep_draw_hidden_field('ap_taxamount', $order->info['tax']) .

 

$hiddenBox .

 

 

 

//pass shipping information to alertpay payment gateway

 

tep_draw_hidden_field('ap_shippingcharges', $order->info['shipping_cost']) .

 

 

 

//tep_draw_hidden_field('ap_itemname', MODULE_PAYMENT_ALERTPAY_PRODUCT_TYPE) .

 

tep_draw_hidden_field('ap_returnurl', tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) .

 

tep_draw_hidden_field('ap_cancelurl', tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...