sneakyimp Posted December 18, 2003 Posted December 18, 2003 I have altered my oscommerce install just a bit so that it uses SIM with authorize.net instead of gathering all the credit card data. i can process (and flunk) transactions just fine...but oscommerce doesn't recognize when the user puts a different billing address on the SIM page hosted by authorize.net. i'm certain this information gets posted back to OSCOMMERCE but oscommerce appears to ignore it. where might i touch up this information? FlashMOG - make multiplayer games in Flash/PHP!
khabagir Posted December 18, 2003 Posted December 18, 2003 Hi Jayson, Would you like to let me know that how did you integrate SIM? Thanks
sneakyimp Posted December 18, 2003 Author Posted December 18, 2003 ooo....it's been about 2 months so i don't really recall particulars. i didn't bother making comprehensive changes to it so that it jives in every way with oscommerce....just got it working at a basic level. i recall editing the includes/modules/payments/authorizenet.php file in a few ways: * empty out function pre_configuration_check...authorize.net will do all checks on credit card info. * change function confirmation like this: function confirmation() { global $HTTP_POST_VARS; //jta - i emptied this out too because we're using SIM...no card data will be collected at noteshack site. $confirmation = array('title' => $this->title . ': YOUR PAYMENT INFORMATION WILL BE VERIFIED SECURELY BY AUTHORIZE.NET'); return $confirmation; } that will cause the text above to appear on the checkout_confirmation page. * you may need to change the process_button code a bit too...i seem to recall having problems with the fingerprint being generated and then realizing it wasn't the code,it was that the time on my server was not set properly. i would *highly* recommend a thorough reading of the SIM implementation guide on the authorize.net website. it's VERY VERY useful. you will also need to make changes to one or two of the checkout_* pages. you'll want to skip over the one that gathers credit card info...if you allow your users to select which payment gateway they want, then you will have extra work...i just removed this setp altogether...don't recall how...sorry! hope this helps. FlashMOG - make multiplayer games in Flash/PHP!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.