Full service web hosting, great prices and support. Starts at $1.99/month!
Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Authorize.net SIM

  1. #1
    doggifts
    Guest


    Default Authorize.net SIM

    I am driving myself crazy with this... Is there anyway to get the MS MAX install to use the SIM function for Authorize.net? I really need to figure out a way and have gotten no where. I tried the contribution from the osc site but it gives me errors? I have MS2-MAX V1.5 install. Thank you for any help!

  2. #2
    osCMax Developer


    Authorize.net SIM


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default

    1.5 already has AIM built in. Why bother with SIM?

  3. #3
    Anonymous
    Guest


    Default

    Thank you for the reply. I do not have an SSL cert on the server yet and was going to run SIM for now until I get a Cert installed.

    There is not much help on getting the SIM to work so I think I will go ahead and get the SSL cert and try the AIM since it seems to be the better choice.

    Any tips or things to look out for if using AIM?

  4. #4
    osCMax Developer


    Authorize.net SIM


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default

    When using AIM, make sure you do not have any of the SIM settings still residing in your Authorize NET account. This wll mess things up. Delete any return urls that you set, and remove any other settings related to SIM.

    Also, make sure you generate a KEY to be used in the osCommerce module from the admin when you are setting it up.

    One other thing, Require Password should be OFF.

    Good luck to you.

  5. #5
    doggifts
    Guest


    Default Need Help....

    Alright I installed the Cert and am trying to get AIM to work. This process has been a nightmare to get running so far, I must be missing something.

    At Authorize.net

    I deleted the return URLs
    Am in test mode.
    Took out any rejections relating to AVS (I thought this could be the problem?)
    Password-Required Mode is unchecked.

    In OSC:
    The account is in test mode.
    In the Admin I have the user name and transaction key.
    In Admin I have the account set to test mode.
    I have messed with different configurations of the sessions. Right now I have Check SSL Session ID true and Check for Spider set to true and all others false.

    The shop switches to secure without any problems (Yeah!)

    I am still yet not able to process the test aco****. I get an error stating:

    There has been an error processing your credit card. Please try again.

    No matter what I do I can not get this to work. Any other tips, I have never had so many problems trying to get something to work?

  6. #6
    osCMax Developer


    Authorize.net SIM


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default

    This is most likely related to cURL. Check to see if is compiled into PHP. It needs to be.

  7. #7
    Anonymous
    Guest


    Default

    Sorry for the late reply back. That was the exact problem, thank you so much!!

    I installed Curl (which ended up with Apache completely needing reconfigured beause of an error in CPanel grrrr). Anyway, 30 hours later I have it installed.

    I have no idea what to do now though? I have not installed the direct mod yet. I was reading and it said to shell into server and check the location of curl.

    When I put in /usr/bin/curl -v it returns:
    curl: No URL specified!

    I am assuming somewhere I need to add the URL for curl? Any tips on how to do this?

    Also when I put in whereis curl the following is returned:

    curl: /usr/bin/curl /usr/ /usr/includes/local /usr/man/man1/curl.1 /usr/man/man1/curl.1

    Any tips on how to procede? Thanks for all your help!!

  8. #8
    osCMax Developer


    Authorize.net SIM


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default

    Did you recompile PHP with curl? That looks like the problem. You need to comiple curl support right into php. You can do this with buildapache/easyapache option 6.

    You can check if it is compiled in by running the server info script included in the osCommerce tools in the admin. Look for something like this in the curl section:

    CURL support enabled
    CURL Information libcurl/7.10.5 OpenSSL/0.9.6b zlib/1.1.4

    If you don't see that, then you don't have curl compiled into php and you will have to do a recompile.

  9. #9
    doggifts
    Guest


    Default

    Hi, my mistake about the curl, it is installed, I was checking the wrong way. Here is from the tools section:

    CURL support enabled
    CURL Information libcurl/7.10.5 zlib/1.1.4

    This is somewhat different than what you had posted. When compiling PHP I choose Curl Curl with SSL and OpenSSl as the options and everything installed.

    Do I need to make any changes to the actual files? It is installed in /usr/bin/curl so the path did not need changed. I noticed in the one contribution at oscommerce it required to put in the Authorize.net passord into the file but the Max install does not use this contribution. For some reason with just a plain install it is not working because I get the same error as before. I still have the require password unchecked at Authorize.net. Any advice?

  10. #10
    osCMax Developer


    Authorize.net SIM


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default

    doggifts, that is what I meant by option 6 (Curl + Curl + SSL and Open SSL). Sorry I wasnt more specific.

    You need to generate your transaction key at AuthorizeNet and paste that into the module.

    As another option, try this:

    Comment out the line in authorizenet_direct.php that says:

    Code:
    	exec("/usr.bin/curl -d \"$data\" https://secure.authorize.net/gateway/transact.dll", $response);
    and immediately after it add this:

    Code:
            $url = "https://secure.authorize.net/gateway/transact.dll"; 
            $ch = curl_init(); 
            curl_setopt($ch, CURLOPT_URL,$url); 
            curl_setopt($ch, CURLOPT_VERBOSE, 0); 
            curl_setopt($ch, CURLOPT_POST, 1); 
            curl_setopt($ch, CURLOPT_POSTFIELDS, $data); 
            curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
            $authorize = curl_exec($ch); 
            curl_close ($ch); 
            $response = split("\,", $authorize);
    Let me know if it works for you.

    If not, the problem is most likely your settings at AuthorizeNet.

Page 1 of 2 12 LastLast

Similar Threads

  1. osc MS-2 MAX and Authorize.net
    By jayv in forum osCommerce 2.2 Modification Help
    Replies: 3
    Last Post: 02-20-2006, 08:30 PM
  2. authorize.net settings
    By brennanoshea in forum osCommerce 2.2 Installation Help
    Replies: 1
    Last Post: 01-13-2005, 01:57 PM
  3. Authorize.net Module - help!
    By tbabasade2 in forum osCmax v1.7 Discussion
    Replies: 2
    Last Post: 12-28-2004, 07:28 AM
  4. Problem with authorize.net
    By cpeters in forum osCommerce 2.2 Installation Help
    Replies: 1
    Last Post: 11-24-2004, 12:45 PM
  5. New Authorize.net problem! Please help!
    By fueledmedia in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 10-14-2004, 12:42 AM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •