Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

risonav

Archived
  • Posts

    66
  • Joined

  • Last visited

Profile Information

risonav's Achievements

  1. Okay.. I just uploaded everything in Admin again and now it works. So weird cause I tried this like 5 times yeasterday.
  2. Hi. I have the same problem as micky, but the cvv number does show in the database for me. The cvv just doesn't show up in the admin section. When I pull up orders in admin: Credit Card Type: Visa Credit Card Owner: test Credit Card Number: 0000000000000000 Credit Card Expires: 0106 CVV Number: THis is Blank with delete button next to it. Any luck getting it to show?
  3. Hi. I have been using CVV v.1.24 for MS2 for a while and all of a sudden I noticed that customers had stopped entering the CVV number. I thought it was weird, and did a test transaction to see if maybe it was just not showing up. I was right... the customers are entering it, but it is not showing up in Admin. No new contributions were installed. I reinstalled CVV v.1.24 for MS2 today, but still the CVV is not showing up. Any suggestions? Jen www.blueyondergirl.com
  4. Okay. It is fixed. I feel silly :blush: Added $product_check = tep_db_fetch_array($product_check_query); // BOF Separate Price per Customer if(!tep_session_is_registered('sppc_customer_group_id')) { $customer_group_id = '0'; } else { $customer_group_id = $sppc_customer_group_id; } // EOF Separate Price per Customer ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
  5. Hi. I just installed this mod and love it! The only thing is that on product_info.php the old retail prices show when I am logged in as wholesale. From what I can tell this is the only place it is happening. I reinstalled, but same problem. i must be missing something. Thanks for the wonderful contribution!
  6. Nevermind... I just deleted all the PayPal IPN stuff.
  7. I just loaded all of the PayPal IPN files and made sure that they were all located in the correct place. Unfortunately when I click on the "add to cart" button on the products_info page or on the "buy now" button, it just goes to my shopping cart with the message "Your Shopping Cart is empty!" The code on the application_top page (which is one of the pages that gets changed when PayPal IPN is added) is: // customer adds a product from the products page case 'add_product' : if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) { $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['id']))+1, $HTTP_POST_VARS['id']); } tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters))); break; // performed by the 'buy now' button in product listings and review page case 'buy_now' : if (isset($HTTP_GET_VARS['products_id'])) { if (tep_has_product_attributes($HTTP_GET_VARS['products_id'])) { tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['products_id'])); } else { $cart->add_cart($HTTP_GET_VARS['products_id'], $cart->get_quantity($HTTP_GET_VARS['products_id'])+1); } Is this what might be messed up? Has this ever happened to anyone else?
×
×
  • Create New...