Guest Posted September 17, 2002 Share Posted September 17, 2002 I'm trying to get the BOA gateway http://www.oscommerce.com/downloads.php/co...ions,446/type,1 to work. It processes through the bank fine but on return it sends me back to the login page instead of displaying the results page. Quote Link to comment Share on other sites More sharing options...
outpost7 Posted September 25, 2002 Share Posted September 25, 2002 Has anyone offer any solutions to this, I am getting the same problem? Quote Link to comment Share on other sites More sharing options...
Guest Posted September 25, 2002 Share Posted September 25, 2002 (edited) I ended up having to track down the problem like a puppy who's toy went under the couch. What I discovered was that the issue arrose from my using BOA's branded card processing. The osCommerce session id wasn't being passed to and frow and since it was going to and from an SSL secure site on different domains the Cookie's weren't doing the trick. So what I ended up doing was almost elementary. I simply added the 'osCsid' to the list of items passed to BOA. That's all there was to it. Below it the code snippet: (let me know how it goes? micah@wecreative.com) /catalog/modules/payment/bofa.php function process_button() { global $HTTP_SERVER_VARS, $CardNumber, $order, $customer_id; $process_button_string = tep_draw_hidden_field('IOC_merchant_id', MODULE_PAYMENT_BOFA_MERCHANT_ID) . tep_draw_hidden_field('osCsid', $session->id) . tep_draw_hidden_field('IOC_merchant_shopper_id', $customer_id) . Micah Edited October 7, 2004 by Johnson Quote Link to comment Share on other sites More sharing options...
outpost7 Posted September 25, 2002 Share Posted September 25, 2002 Thanks, that fixed that issue, but now I don't get anything in the back end? I go to the admin site and see nothing? strange? Quote Link to comment Share on other sites More sharing options...
pebroy Posted September 1, 2005 Share Posted September 1, 2005 Are you still using the Bank of America payment module, am looking inot using BOFA payment system for my store. ANy thoughts? I ended up having to track down the problem like a puppy who's toy went under the couch. What I discovered was that the issue arrose from my using BOA's branded card processing. The osCommerce session id wasn't being passed to and frow and since it was going to and from an SSL secure site on different domains the Cookie's weren't doing the trick. So what I ended up doing was almost elementary. I simply added the 'osCsid' to the list of items passed to BOA. That's all there was to it. Below it the code snippet: (let me know how it goes? micah@wecreative.com) /catalog/modules/payment/bofa.php function process_button() { global $HTTP_SERVER_VARS, $CardNumber, $order, $customer_id; $process_button_string = tep_draw_hidden_field('IOC_merchant_id', MODULE_PAYMENT_BOFA_MERCHANT_ID) . tep_draw_hidden_field('osCsid', $session->id) . tep_draw_hidden_field('IOC_merchant_shopper_id', $customer_id) . Micah <{POST_SNAPBACK}> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.