Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Authorize.net Error


charlieworks

Recommended Posts

Hello, I just got my Authorize.Net account and my merchant account. I have the instelled module in my Version of the 2.2 OSCOMMERCE and i plugged my User name and password in with the test mode in both the module and Authorize.net settings. When i went to put in the visa credit card number that was recommended to put in, i got an error when of :

 

" There has been an error processing your credit card. Please try again.-3-103 This transaction cannot be accepted "

 

What did i do wrong? Please help me with this.

Link to comment
Share on other sites

  • 3 weeks later...

This could happen if you have entered a password for Authorize.net account in OSC module settings. But you should enter the Transaction Key instead. I had the same problem with the same error message until i've corrected this.

You can get your Key in Settings menu of Authorize.net account.

Link to comment
Share on other sites

Hey Guys I am using OS commerce MS2+ and I just got my auth.net account..Does anyone know how I can make it work ? Do I need anything else ? I get General error when I try to use it. When I go to auth.net and look at the transaction I just placed which is there, but it says general error..

 

Auth.net tells me I must contact paymenttech for help...

 

who is paymenttech and is auth.net correct ?

 

Please help asap I need to get this site up today !!!

 

Ted :(

Link to comment
Share on other sites

Ted and all others,

 

1. Maybe you've got an answer for this newbie. When I go through the shipping page to payment page to checkout_confirmation page all seems to go well and no errors, then once I press "Confirm order" button the next page that comes up is the checkout_payment.php page and the url above is: https://secure.authorize.net/gateway/transact.dll. with an error message inside the page (not in the url) "There has been an error processing your credit card. Please try again (I am live in auth net and production mode in OSC)

 

2.Then someone on the forum told me to log onto Auth net and set my response/receipt urls, and now I don't get anything but an error page from auth net:

 

An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt to charge your credit card.

 

The referrer, relay response or receipt link URL is invalid.

and auth net sends me an email.

 

So I assume I should delete the response/receitp urls to get back to the issue cause in #1 and ask for some help from someone who has auth net working (regular install mode- please)

 

 

Here's what my oscommerce/includes/configure.php look like also (I am using a sharedSSL-if that can help you understand how to help me) When I go onto oscommerce in my file manager the path inside of the mydomainname.com starts me on directory, then the path I click on is: /var/www/html/oscommerce , so I'm not sure if I've done it all right in the below configure.php's from oscommerce/admin/includes and oscommerce/includes/ files :

 

Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://www.mydomainname.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://ns.servernamethathasSSL.com/~mydomainname.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'www.mydomainname.com');
 define('HTTPS_COOKIE_DOMAIN', 'www.mydomainname.com');
 define('HTTP_COOKIE_PATH', '/oscommerce');
 define('HTTPS_COOKIE_PATH', '/oscommerce');
 define('DIR_WS_HTTP_CATALOG', '/oscommerce/');
 define('DIR_WS_HTTPS_CATALOG', '/oscommerce/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
 define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

And here's my oscommerce/admin/includes/configure.php:

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com');

define('HTTPS_CATALOG_SERVER', 'https://ns.serverwithSSL.com/~mydomainname.com');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/oscommerce/admin/'); // absolute path required

define('DIR_FS_ADMIN', '/home/virtual/site4/fst/var/www/html/oscommerce/admin/'); // absolute pate required

define('DIR_WS_CATALOG', '/oscommerce/'); // absolute path required

define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // absolute path required

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');

define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

Link to comment
Share on other sites

One other thing on this long thread I've asked for help on, I'm an out and out newbie (non-techie to a point), so could you also tell me if I placed oscommerce in the right level folder- inside of the html folder 0( on the path of /var/www/html/oscommerce ?

 

Sorry for such a long one but I've been days on this one alone, the store and website have been ready to go since Monday, I've read forums and knowledgebase and this one is stumping me.

Link to comment
Share on other sites

Ted and all others,

 

1. Maybe you've got an answer for this newbie. When I go through the shipping page to payment page to checkout_confirmation page all seems to go well and no errors, then once I press "Confirm order" button the next page that comes up is the checkout_payment.php page and the url above is: https://secure.authorize.net/gateway/transact.dll. with an error message inside the page (not in the url) "There has been an error processing your credit card. Please try again (I am live in auth net and production mode in OSC)

 

2.Then someone on the forum told me to log onto Auth net and set my response/receipt urls, and now I don't get anything but an error page from auth net:

 

An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt to charge your credit card.

 

The referrer, relay response or receipt link URL is invalid.

and auth net sends me an email.

 

So I assume I should delete the response/receitp urls to get back to the issue cause in #1 and ask for some help from someone who has auth net working (regular install mode- please)

 

 

Here's what my oscommerce/includes/configure.php look like also (I am using a sharedSSL-if that can help you understand how to help me) When I go onto oscommerce in my file manager the path inside of the mydomainname.com starts me on directory, then the path I click on is: /var/www/html/oscommerce , so I'm not sure if I've done it all right in the below configure.php's from oscommerce/admin/includes and oscommerce/includes/ files :

 

Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://www.mydomainname.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://ns.servernamethathasSSL.com/~mydomainname.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'www.mydomainname.com');
 define('HTTPS_COOKIE_DOMAIN', 'www.mydomainname.com');
 define('HTTP_COOKIE_PATH', '/oscommerce');
 define('HTTPS_COOKIE_PATH', '/oscommerce');
 define('DIR_WS_HTTP_CATALOG', '/oscommerce/');
 define('DIR_WS_HTTPS_CATALOG', '/oscommerce/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
 define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

And here's my oscommerce/admin/includes/configure.php:

 

Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com');
 define('HTTPS_CATALOG_SERVER', 'https://ns.serverwithSSL.com/~mydomainname.com');
 define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/oscommerce/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/home/virtual/site4/fst/var/www/html/oscommerce/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', '/oscommerce/'); // absolute path required
 define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // absolute path required
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
 define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
 define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...