This is a discussion on BluePay 2.0! within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; Fellow Brains, Does any one have a working BluePay 2.0 payment module that works with OscMax? I'm working to configure ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Fellow Brains, Does any one have a working BluePay 2.0 payment module that works with OscMax? I'm working to configure mine. However, there's so much I don't know about OsMax contrasted to OsCommerce. I've discovered that the bluepay module works fine with the old OsCommerce, but not with OscMax. I'm wondering if there's a major difference between the OscMax processes payments and the way that OsCommerce did. Either way, if you have anything on this issue. Please help. Thanks, Eizo |
|
#2
| ||||
| ||||
| Hi, What specifically is not working? Are you getting some sort of error?
__________________ Michael Sasek osCMax Developer
|
|
#3
| |||
| |||
| I'm not sure what the problem is. The payment module works completely fine in the old OsC, but when I try to use it wtih Max, I continually get the default "Check your credit card information" error that all of the payment modules give when nothings going through. I'm guessing that there's a fundamental difference in the way that Max processes payments versus OsC. If there's documentation on this, I'd love to read it. If you'd care to take a look at the module itself, I've posted it to http://oziecargile.com/odcbp20.txt Thanks! -Ozie |
|
#4
| ||||
| ||||
| There is no difference in how osCMax processes payments compared to standard osCommerce. osCMax uses the exact same checkout process. There are minor differences to the unmodified osCommerce checkout, but this is only due to the Authorize.net and Paypal IPN module being installed. If it works in osCommerce, chances are it will work in osCMax. What other files are modified in order for this module to be installed, or is it just the file you linked above?
__________________ Michael Sasek osCMax Developer
|
|
#5
| |||
| |||
| No files are modified, the module simple goes in as is. This might help: I do know that the Blueplay module is based off of the old OsC cc.php payment module. And I did notice a slight difference in cc.php from OsC to Max. This code: $cc_validation = new cc_validation(); $result = $cc_validation->validate($HTTP_POST_VARS['cc_number'], $HTTP_POST_VARS['cc_expires_month'], $HTTP_POST_VARS['cc_expires_year']); Becomes this code: $cc_validation = new cc_validation(); $result = $cc_validation->validate($HTTP_POST_VARS['cc_number'], $HTTP_POST_VARS['cc_expires_month'], $HTTP_POST_VARS['cc_expires_year'], $HTTP_POST_VARS['cc_checkcode'], $HTTP_POST_VARS['cc_card_type']); Essentially, adding two $_POST variables "checkcode" and "card_type". Are these necessary for Max? Either way, what are the "minor differences to the unmodified osCommerce checkout" found in Max? Perhaps the key is there. -Ozie P.S. Thanks, this means a lot. |
|
#6
| ||||
| ||||
| To correct the cc_validation issue, check this thread: cc_validation.php errors The minor differences are specific to those modules, and either add something to checkout_process.php or in other checkout related files. The easiest way to see the differences is to get a file compare tool and compare them directly. Are you getting any other error messages? What do your server logs say when it times out? That would be the place to start. Make sure your server logging level is set to debug.
__________________ Michael Sasek osCMax Developer
|