| Author |
Message |
|
Shane
|
Post subject: Authorize.net Posted: Thu Dec 31, 2009 3:34 am |
|
Joined: Tue Dec 29, 2009 6:30 pm Posts: 5
|
|
Is there a way to use this payment gateway?
|
|
 |
|
 |
|
dave
|
Post subject: Re: Authorize.net Posted: Thu Dec 31, 2009 11:06 pm |
|
Joined: Fri Oct 26, 2007 9:55 pm Posts: 1910 Location: Colorado, US
|
|
I don't know of a module for this gateway, sorry. Dave
|
|
 |
|
 |
|
Shane
|
Post subject: Re: Authorize.net Posted: Sat Jan 02, 2010 2:21 am |
|
Joined: Tue Dec 29, 2009 6:30 pm Posts: 5
|
|
Thanks Dave!
I dont know much about PHP. But what would it cost to have someone write one? Where would i find such a person?
I am also interested in connecting Phreebooks with a Magento store? Would this be a feasible project for someone to write?
I love your accounting system, i am just trying to see if i can make it work for my scenario
|
|
 |
|
 |
|
dave
|
Post subject: Re: Authorize.net Posted: Wed Jan 06, 2010 11:40 pm |
|
Joined: Fri Oct 26, 2007 9:55 pm Posts: 1910 Location: Colorado, US
|
|
I'll add the authorize.net to my to do list but no guarantees. If you find someone that can do most of the work, I should be able to provide a little help.
As far as Magneto, this is a commercial application and I have no plans to interface with it. They do have a community edition but warn that there is no support and you are on your own to fix problems. Sounds risky to me.
Dave
|
|
 |
|
 |
|
magentonews_uk
|
Post subject: Re: Authorize.net Posted: Fri Feb 19, 2010 12:38 pm |
|
Joined: Fri Feb 19, 2010 12:20 pm Posts: 1
|
|
It is really sound risky but get from magento better result, i did face some problem but easy to fix by yourself.
_________________ Magento Design
|
|
 |
|
 |
|
Kumba
|
Post subject: Re: Authorize.net Posted: Wed Jul 07, 2010 8:08 pm |
|
Joined: Sun Jul 20, 2008 4:15 am Posts: 31
|
|
I can provide the Authorize.net AIM integration side, if you can provide the phreebooks side of the module.
It's a fairly simple PHP Curl post with a URLEncoded array, that returns a URLEncoded result array.
Here's some of the basic things the phreebooks side would need: - Set an API ID and Shared Key from Authorize.net - Some way to have a credit-card specific billing address association - Take the returned result to display 'Accepted' with trans ID as reference, 'Rejected' with the reason, etc
I would be interested in sponsoring this module if you want to take it up. Just let me know, thanks.
|
|
 |
|
 |
|
dave
|
Post subject: Re: Authorize.net Posted: Wed Jul 07, 2010 10:27 pm |
|
Joined: Fri Oct 26, 2007 9:55 pm Posts: 1910 Location: Colorado, US
|
|
I have a module that has a little testing behind it. Try it and let me know how it goes. If all is well, I will release it to the website as a payment module.
Dave
|
|
 |
|
 |
|
judah
|
Post subject: Re: Authorize.net Posted: Wed Aug 04, 2010 4:27 am |
|
Joined: Tue Feb 09, 2010 4:52 pm Posts: 15
|
|
I downloaded this and tried it and came up with two issues:
1) The module expects "First_Name" and "Last_Name" fields for Bill To and Ship To. With 2.1, these are no longer there. I replaced the Last Name with the Contact Name from the $orders object...
2) The Create_Random_Value function seems to be missing...
"Fatal error: Call to undefined function create_random_value() in /home/miracom/public_html/PhreeBooksR2.1/my_files/custom/services/payment/modules/authorizenet.php on line 654"
Other than that, it looks like it has much potential. Anything I could do to expedite this?
|
|
 |
|
 |
|
dave
|
Post subject: Re: Authorize.net Posted: Fri Aug 06, 2010 10:21 pm |
|
Joined: Fri Oct 26, 2007 9:55 pm Posts: 1910 Location: Colorado, US
|
|
Can you please post your php file (zip first). The only instance I see of that function has been commented out in my install.
Dave
|
|
 |
|
 |
|
judah
|
Post subject: Re: Authorize.net Posted: Thu Aug 12, 2010 3:06 am |
|
Joined: Tue Feb 09, 2010 4:52 pm Posts: 15
|
|
So I was able to get it to function... Here's the updated php file...
I also added the EMail field to the page in the /modules/banking/pages/bills/template_main.php file ...
Comment out line 34: //echo html_hidden_field('bill_email', $order->bill_email) . chr(10);
add at line 97: echo html_input_field('bill_email', $order->bill_email, 'size="35" maxlength="48" onfocus="clearField(\'bill_email\', \'' . GEN_EMAIL . '\')" onblur="setField(\'bill_email\', \'' . GEN_EMAIL . '\')"') . chr(10);
The latter is not critical, but allows you to modify the EMail address if, for example, it was blank in the order and Authorize.Net won't accept the transaction without an EMail...
|
|
 |
|
 |
|