My new payment method shows up in Admin/System/Configuration/Advanced but not in Payment Methods.
I’ve followed the wiki- how-to/create-payment-method-module and searched the forum, seen that a lot of other people are facing the same problem.
Can someone tell me which is the updated wiki?
I’m having this same issue.. anyone find a solution to this?
@jshirkey: I had the same problem and found out what was missing.
You have to add a column (one for each of your custom attributes) in the table sales_flat_quote_payment.
I did it in a mysql4-upgrade-0.6.0-0.7.0.php file with the following:
if (Mage::getVersion() >= 1.1) { $installer->startSetup();
Has anybody had any luck with a PayJunction API module? I used the Community LinkPoint API module as a model and everything shows up on the frontend and backend properly, the order goes through without error, however nothing gets captured or sent to PayJunction. I think I’m close, but just need some different eyes on it to tell me what I’m missing.
Following (next post) is the code I have so far (from the /app/code/local/Mage/Payjunction/Model/Payjunction.php file), any help would be greatly appreciated, I’ve hit a wall on this :\
You might consider using the following code to add columns to the sales_flat_quote table:
$installer->getConnection()->addColumn($installer->getTable('sales_flat_quote'), 'custom_field_name', 'VARCHAR(255) NOT NULL');
I found this used in one of the core install scripts, and discovered that it will only add the column if the column doesn’t already exist. So if it’s called more than once, it won’t generate some kind of error like the SQL statement will, it will just move on if the column already exists.
I’ve tried to add a payment module to Magento 1.1.4 using the code in the latest Wiki article (September 11th 2008) but I just get thrown a lot of errors. I presume this is nowhere near ready for a good programmer, but newbie magento-er to write a working payment module?
Does anyone know is it possible to test payment gateway with self-signed certificate?
I work on new payment module. It works until “Place order” point on one-page checkout process. When I click “Place order” - I am not able to send data (POST method) to payment gateway - at least I cannot observe it with HttpFox (scans all browser traffic). I got “Payment authorization error” alert. HttpFox shows module posted data to “https://magento/checkout/onepage/saveOrder/” instead to outside payment gateway server. Anyway, result code is 200.
I have just written a SecPay payment module as I didn’t want, and don’t believe in paying for commercial components for open source technology. I have not implemented the AVS check as yet, but fully implemented and tested the CV2 and payment. I will be putting this on my site for download after I have implemented the AVS stuff.
If anyone wants the module in the meantime, just PM me and I’ll happily send it to you, for free!