GIS_John Posted January 2, 2003 Posted January 2, 2003 I am trying to install the Bluepay (onlinedatacorp) payment module on the OSC snapshot dated 12/30/2002. I can get the other payment methods to show up, but the BluePay module refuses to show up. Is this module even compatible with the newer snapshots? Am I missing something? Quote
networkdad Posted February 9, 2003 Posted February 9, 2003 Did you ever get the bluepay module to work with the new checkout code ??? Quote
GIS_John Posted February 10, 2003 Author Posted February 10, 2003 Yes, I did manage to get it working. What I did was to take the authorize.net payment module, and modify it to process the Bluepay data (changing fields, connections, etc.). I can send you a copy of wha tI did if you want. Thanks, John Quote
Guest Posted February 12, 2003 Posted February 12, 2003 John, Can you please send me a copy of what you did to get the bluepay module working? Regards, Dave Bergert [email protected] Quote
networkdad Posted February 12, 2003 Posted February 12, 2003 John, Can you please send me a copy of what you did to get the bluepay module working? Regards, Dave Bergert [email protected] Folks: I'm working with a developer/programmer to re-do the payment module to work with new checkout code. We're almost done, and i'll have him release it as soon as we're done testing, and are certain that it works. THanks! Jason Quote
davidturetsky Posted February 26, 2003 Posted February 26, 2003 I really need the new code too. Please let me know via email or private message. Regards. Quote
networkdad Posted February 26, 2003 Posted February 26, 2003 It's now available here: http://www.oscommerce.com/community/contributions,993 Quote
davidturetsky Posted February 26, 2003 Posted February 26, 2003 Here is my problem. When an order is confirmed, the script jumps to the user login page, the shopping cart is not flushed and there is no record that the transaction was succesful. But, Bluepay does receive and process the transaction. What am I doing wrong? Quote
davidturetsky Posted February 26, 2003 Posted February 26, 2003 Oh, I am using the very latest codebase (MS1)! Quote
davidturetsky Posted February 26, 2003 Posted February 26, 2003 I think the problem starts here at the after_process() function, since all of the activities before-hand do occur. // load the after_process function from the payment modules $payment_modules->after_process(); $cart->reset(true); // unregister session variables used during checkout tep_session_unregister('sendto'); tep_session_unregister('billto'); tep_session_unregister('shipping'); tep_session_unregister('payment'); tep_session_unregister('comments'); tep_redirect(tep_href_link(FILENAME_CHECKOUT_SUCCESS, '', 'SSL')); require(DIR_WS_INCLUDES . 'application_bottom.php'); In the odcbp.php script, there is only a reference to after_process() as such: function after_process() { return false; } Is that going to cause the problems? Quote
Guest Posted February 26, 2003 Posted February 26, 2003 Hi, I have looked at this issue on behalf of David and have managed to identify the problem which I am pleased to say is not down to the module. On further investigation David is currently using a shared SSL cert / space so this is setup as: STD - http://sitename.com/catalog SSL - https://shared.sslserver.com/~hostingusername/catalog These have been changed for obvious reasons But this appears to cause a problem for the module (I expect it will apply to other modules too) while the 'space' occupied by the SSL part of the site is simply pointed from the non SSL part it does appear to cause problems for the 'APPROVAL_URL' Once we switched to SSL=false the mod worked perfectly... This probably warrants further investigation by others here who may be more knowlegable about SSL and Sessions etc BUT rest assured if the mod is used on http://www.yoursite.com (without SSL support) it will work and if it's used on https://yoursite.com (with SSL support it also works) I DONT offer support for this module as I would spend most of my day making no pennies and I do run a business however, I will try to ascertain more about this issue via the forums and post my findings back here. Regards Ed i-netmedia Quote
davidturetsky Posted February 26, 2003 Posted February 26, 2003 I just might have been bald without Ed's help. I owe Ed and everyone in the OSC a beer for all of their wonderful support. Cheers! :D Quote
Guest Posted February 26, 2003 Posted February 26, 2003 Glad I could help (even if it has opened up a small can of worms...) Regards Ed i-netmedia Quote
Guest Posted February 26, 2003 Posted February 26, 2003 Just a quikie, I have now tested this mod on MS1 and it is working as it should (it was developed on 28/01/02 so I didn't expect their to be a problem. Now this is confirmed. Regards Ed i-netmedia Quote
karmand Posted March 25, 2003 Posted March 25, 2003 I read: "This probably warrants further investigation by others here who may be more knowlegable about SSL and Sessions etc BUT rest assured if the mod is used on http://www.yoursite.com (without SSL support) it will work and if it's used on https://yoursite.com (with SSL support it also works) " in a post. I am testing the Blue pay Module on a site with that same scenario, and I get the error that brings the page back to the login.php (another post was about this) I use: http://www.yoursite.com (without SSL support) and https://yoursite.com (with SSL support) Now, I find this interesting that in the administration index.php, the secure area says that "You are protected by a unknown secure SSL connection." The certificate is set up properly and I get no errors accessing https://yoursite.com (with SSL support). Interesting. QUESTION: Does anyone have this module working in SSL? I can see it working if I turn OFF ssl (false in the config.php). It seems to work and go to the correct url...after processing. If you do have the module working, what are some parameters I am missing? Thanks, kerby armand Quote kerby armand rent-a-geek-now.com
networkdad Posted March 25, 2003 Posted March 25, 2003 I read: "This probably warrants further investigation by others here who may be more knowlegable about SSL and Sessions etc BUT rest assured if the mod is used on http://www.yoursite.com (without SSL support) it will work and if it's used on https://yoursite.com (with SSL support it also works) " in a post. I am testing the Blue pay Module on a site with that same scenario, and I get the error that brings the page back to the login.php (another post was about this) I use: http://www.yoursite.com (without SSL support) and https://yoursite.com (with SSL support) Now, I find this interesting that in the administration index.php, the secure area says that "You are protected by a unknown secure SSL connection." The certificate is set up properly and I get no errors accessing https://yoursite.com (with SSL support). Interesting. QUESTION: Does anyone have this module working in SSL? I can see it working if I turn OFF ssl (false in the config.php). It seems to work and go to the correct url...after processing. If you do have the module working, what are some parameters I am missing? Thanks, kerby armand I am using SSL on my site (http://www.healthyharvest.com) - I had the same problem, and it ended up being the SID coulndt go from my server to the other server and keep the same SID. To get around it, i installed haralds proposal which forces my customers to use cookies during checkout. You can read about the code i implemented here: http://www.oscommerce.com/forums/viewtopic.php...er=asc&start=30 So, now cookies are required to be able to check out - This wasnt a big deal for me, as most e-com sites now require them anyways. HTH Quote
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.
Note: Your post will require moderator approval before it will be visible.