QUOTE (Mibble @ Dec 5 2004, 10:11 PM)
for authorizenet, what is the error you get on the screen? are you seeing any transactions reaching authorizenet?
what credit cards do you accept, are they displayed in the checkout_payment?
are you using ssl?
what is your ssl setting in your configure.php?
There is no error until IE or Netscape finally gives up and changes to the "page cannot be displayed". Everything seems to go through fine up to that point, but once you click confirm order it does nothing, it gets to that point and dies. In other words, it never makes it to the checkout_success.php page, so the redirection after confirm order never happens.
The transaction w/ authorize appears to happen, but is never forwarded to the success page. We accept MC, and Visa, and it fails during the test too. Yes, they are displayed during checkout_payment. Yes, we are using a shared SSL via IPowerWeb.
Here is our configure.php.
CODE
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://nm-pcsolutions.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://host132.ipowerweb.com/~nm-pcsol'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'nm-pcsolutions.com');
define('HTTPS_COOKIE_DOMAIN', 'host132.ipowerweb.com/~nm-pcsol');
define('HTTP_COOKIE_PATH', '/ecommerce/os/catalog/');
define('HTTPS_COOKIE_PATH', '/ecommerce/os/catalog/');
define('DIR_WS_HTTP_CATALOG', '/ecommerce/os/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/ecommerce/os/catalog/');
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/nm-pcsol/public_html/ecommerce/os/catalog/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'xxxxxxx');
define('DB_SERVER_PASSWORD', 'xxxxxxx');
define('DB_DATABASE', 'xxxxxxxx');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
?>
This brings up another question. The file attributes on "configure.php" are set to read, 444 across the board. I was curious as to what the proper attributes should be or if that is it. As far as I know we changed nothing there. Please let me know.
Sorry for the double post, it would not let me edit my original post. I missed some of your questions that I thought needed better responses, or an actual response to the ones that I missed. Admin please feel free to delete the above post.