Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

cinemaduro

Archived
  • Posts

    19
  • Joined

  • Last visited

Profile Information

cinemaduro's Achievements

  1. Thanks for the feedback. I didn't get anything special when I changed the transaction url to the param_dump.asp url. it just gave me a regualr screen saying the transaction couldn't go through. None of the error messages I get on any of the transactions I try, whether real or fake, live or test, have an error number that I can look up. This is extra frustrating. So I'm still trying to solve this problem.
  2. I still have yet to find a solution for this issue. Any help would be appreciated.
  3. also, it may be of note that I have force cookies set to "False" and cURL is running, as well. I remember having to get that working back when I built the site. thanks for your responses
  4. I have force cookies set to "False". Someone else mentioned test mode, and as far as that's concerned, I just used that to get the error message. In my case, everything had been working just fine for about 6 months, and then one day we just started getting this error. cURL is running, as well. I remember having to get that working back when I built the site. thanks for your responses
  5. I think I'm having the same problem. we use a shared SSL. but everything worked fine for 6 months. I get directed back to the cc input page instead of receipt page with an error that says: *(TESTMODE) This transaction has been approved.* - Your credit card could not be authorized for this reason. Please correct any information and try again or contact us for further assistance. I've got my question posted also, so you can see if any kind sole responds there, also. http://www.oscommerce.com/forums/index.php?sho...mp;#entry968148
  6. I'm not an authority, but I think you can get around that by hardcoding your links on your receipt page for all of your images and site pages. instead of <img scr="images/mypic.jpg"> it would be <img scr="http://www.mysite.com/images/mypic.jpg"> same with links so that when you click on one to go to another page, it will take you out of the secure environment so you don't have to hard code every link on every page in the whole thing.
  7. I tested it in dummy mode, and apparently when you hit the final checkout button, it takes me back to the credit card input page and gives me this message: "*(TESTMODE) This transaction has been approved.* - Your credit card could not be authorized for this reason. Please correct any information and try again or contact us for further assistance." being approved doesn't sound like a good reason to not authorize the card :huh:
  8. After 6 months of working smoothly, without any changes at all to our site, we have had several recent conscutive orders where the users seemed to get errors, but the card was charged. Since they did not think the order went through they ordered multiple times. Here is a comment from a user: ?I did have trouble with the order. After completing the orders, the message said both,that is was approved and could not be completed due to errors.? We are running the Authorize.net AIM contrib. I'm not much of a php guy, and struggled through getting this site up 6 months ago. Coming back to it now, things are all a bit fuzzy. I didn't find this exact problem in the forum anywhere else. Anyone know what's going on here? Thanks!
  9. Sorry, I think I've found some answeres in other topics that I didn't see when I first made my search. Can't figure out how to delete this post.
  10. So I saw that this topic was recently addressed on this thread here: http://www.oscommerce.com/forums/index.php?sho...=200455&hl=1064 I'm getting a similar error when I try and configure my "specials" (and a few other pages) from the admin panel (posted below), but I can't find in the code where the problem is. I have the "straight out of the box" oscommerce catalogue installed. Has anyone else had this problem or know of a solution? Thanks in advance -Tristan Here's the error message (page code below it): ------------------ 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20, 20' at line 1 select p.products_id, pd.products_name, p.products_price, s.specials_id, s.specials_new_products_price, s.specials_date_added, s.specials_last_modified, s.expires_date, s.date_status_change, s.status from products p, specials s, products_description pd where p.products_id = pd.products_id and pd.language_id = '1' and p.products_id = s.products_id order by pd.products_name limit -20, 20 [TEP STOP] ------------------ Page code: <?php /* $Id: specials.php,v 1.49 2003/06/09 22:35:33 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SPECIALS); $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_SPECIALS)); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="3" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_specials.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php $specials_query_raw = "select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and s.products_id = p.products_id and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and s.status = '1' order by s.specials_date_added DESC"; $specials_split = new splitPageResults($specials_query_raw, MAX_DISPLAY_SPECIAL_PRODUCTS); if (($specials_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '3'))) { ?> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="smallText"><?php echo $specials_split->display_count(TEXT_DISPLAY_NUMBER_OF_SPECIALS); ?></td> <td align="right" class="smallText"><?php echo TEXT_RESULT_PAGE . ' ' . $specials_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php } ?> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <?php $row = 0; $specials_query = tep_db_query($specials_split->sql_query); while ($specials = tep_db_fetch_array($specials_query)) { $row++; echo ' <td align="center" width="33%" class="smallText"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $specials['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $specials['products_image'], $specials['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $specials['products_id']) . '">' . $specials['products_name'] . '</a><br><s>' . $currencies->display_price($specials['products_price'], tep_get_tax_rate($specials['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($specials['specials_new_products_price'], tep_get_tax_rate($specials['products_tax_class_id'])) . '</span></td>' . "\n"; if ((($row / 3) == floor($row / 3))) { ?> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <?php } } ?> </tr> </table></td> </tr> <?php if (($specials_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3'))) { ?> <tr> <td><br><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="smallText"><?php echo $specials_split->display_count(TEXT_DISPLAY_NUMBER_OF_SPECIALS); ?></td> <td align="right" class="smallText"><?php echo TEXT_RESULT_PAGE . ' ' . $specials_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> </table></td> </tr> <?php } ?> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
×
×
  • Create New...