Results 1 to 4 of 4

Authorize.net AIM won't Finish Transactions

This is a discussion on Authorize.net AIM won't Finish Transactions within the Authorize.net forums, part of the Payment Modules category; Hi All. I just activated the Authorize.net AIM module on my newest store with osCMax v2.0.3 , and I am ...

      
  1. #1
    Member
    Join Date
    May 2008
    Posts
    84
    Rep Power
    4


    Default Authorize.net AIM won't Finish Transactions

    Hi All. I just activated the Authorize.net AIM module on my newest store with osCMax v2.0.3 , and I am having a strange problem. When I get to the mystore.com/catalog/checkout_confirmation.php page, it always redirects me back to the mystore.com/catalog/checkout_shipping.php page. Any suggestions as to what would cause this?

    Also 2 other quick questions. Is it necessary/better to use the MD5 Hash Option?

    What should my cURL location be set to? (Is this left blank?) The server info of my store lists CURL support: enabled and CURL Information: libcurl/7.15.5 OpenSSL/0.9.8c zlib/1.2.3 libidn/0.6.5

    I've never had a problem with Authorize.net on osCMax before.

  2. #2
    osCMax Development Team met00's Avatar
    Join Date
    Oct 2005
    Location
    wherever I happen to be at the moment
    Posts
    854
    Blog Entries
    2
    Rep Power
    21


    Default Re: Authorize.net AIM won't Finish Transactions

    error message from authorize is?
    [if it's not in the screen, then check in the log files]
    so endith the lesson
    <think>sometimes I just sit's and thinks</think>
    "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB

  3. #3
    Member
    Join Date
    May 2008
    Posts
    84
    Rep Power
    4


    Default Re: Authorize.net AIM won't Finish Transactions

    I don't seem to have any errors. I am on a shared server that doesn't give me error log files, but the hosts workaround is to run a php script to pull the errors into a csv file instead. I've included the code is below.

    Code:
    <?php
    
       error_reporting(0); 
       $old_error_handler = set_error_handler("userErrorHandler");
     
       function userErrorHandler ($errno, $errmsg, $filename, $linenum,  $vars) 
       {
         $time=date("d M Y H:i:s"); 
         // Get the error type from the error number 
         $errortype = array (1    => "Error",
                             2    => "Warning",
                             4    => "Parsing Error",
                             8    => "Notice",
                             16   => "Core Error",
                             32   => "Core Warning",
                             64   => "Compile Error",
                             128  => "Compile Warning",
                             256  => "User Error",
                             512  => "User Warning",
                             1024 => "User Notice");
          $errlevel=$errortype[$errno];
     
          //Write error to log file (CSV format) 
          $errfile=fopen("errors.csv","a"); 
          fputs($errfile,""$time","$filename: 
          $linenum","($errlevel) $errmsg"rn"); 
          fclose($errfile);
     
          if($errno!=2 && $errno!=8) {
             //Terminate script if fatal error
             die("A fatal error has occurred. Script execution has been aborted");
          } 
       }
       ?>
    I enter the Credit Card info and it sends me back to checkout_shipping.php.

  4. #4
    Member
    Join Date
    May 2008
    Posts
    84
    Rep Power
    4


    Default Re: Authorize.net AIM won't Finish Transactions

    Apparently this is not an authorize.net problem. I had time to do some more testing. I tried to pay with the Money Order module and it does the same thing. I still don't see any errors either.

    Guess I will start a new thread in the appropriate category.

Similar Threads

  1. Unable to finish Installation Process
    By elpesci in forum osCmax v2 Installation issues
    Replies: 2
    Last Post: 06-13-2008, 10:18 AM
  2. Got Oscmax Installed Working But Some help need to Finish it Good
    By chowhan in forum osCmax v2 Installation issues
    Replies: 4
    Last Post: 03-10-2008, 11:50 AM
  3. Dropped transactions?
    By Learners_permit in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 09-15-2006, 04:07 AM

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
  •