Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

skunkbad

Archived
  • Posts

    42
  • Joined

  • Last visited

Everything posted by skunkbad

  1. skunkbad

    IMS gateway

    I've got a customer with IMS gateway. Their website is ims.com. Is there a payment module available for this gateway?
  2. I do work on Windows, but the server is Linux. I'm not sure if that matters. All I did was copy and paste your code from the manual install instructions to the existing file. I use Notepad++ for text editing, and the format for this file's line endings is already Unix. It's odd that I could copy and paste all of the code from the manual install instructions, and this is the only part that wouldn't work (considering that the code IS different, and did work after I changed it). If I have this problem, I'm sure other people will too. Thanks for your help.
  3. It turns out that the manual installation instructions that came in the zip for this contribution were wrong, and it was this that was creating the error. Check out the instructions for manually editing \catalog\includes\classes\shopping_cart.php Find (around line 110 [around line 119 in edited file]): if ($this->in_cart($products_id_string)) { $this->update_quantity($products_id_string, $qty, $attributes); } else { $this->contents[$products_id_string] = array('qty' => (int)$qty); Replace with: // BOF qpbpp if ($this->in_cart($products_id_string)) { $this->update_quantity($products_id_string, $qty, $attributes, $product_info['discount_categories_id']); } else { $this->contents[$products_id_string] = array('qty' => (int)$qty, 'discount_categories_id' => $product_info['discount_categories_id']); // EOF qpbpp I decided to take a look at the \catalog\includes\classes\shopping_cart.php that came with the zip, and noticed that this file was different in respect to this code replacement. This is the way it should be: // BOF qpbpp if ($this->in_cart($products_id_string)) { $this->update_quantity($products_id_string, $qty, $attributes, $discount_category); } else { $this->contents[$products_id_string] = array('qty' => (int)$qty, 'discount_categories_id' => $discount_category); // EOF qpbpp Once I made this switch, everything works perfectly.
  4. This discount_category_quantity array is empty. One thing I noticed too, is that if I print_r($this->contents) before the foreach loop, discount_categories_id is also empty for each item in the shopping cart.
  5. PriceFormatterStore Object ( [priceFormatterData] => Array ( [5] => Array ( [products_name] => Dice [products_model] => [products_image] => dice.jpg [products_id] => 5 [manufacturers_id] => 0 [products_price] => 12.5000 [products_weight] => 0.25 [products_quantity] => 99999 [products_qty_blocks] => 1 [products_tax_class_id] => 0 [specials_new_products_price] => [discount_categories_id] => 1 [price_breaks] => Array ( [0] => Array ( [products_price] => 10.0000 [products_qty] => 2 ) ) ) ) )
  6. I have added the product to the discount category, and selected this discount category in the product setup, but the discount is not coming through. Please take a look at "dice" on www.michellibackgammon.com
  7. I have only one product, but it comes in different colors which I have set up through the product attributes in the admin controls. I have set a price discount if a person buys more than one of this product, but it only works if the person has selected the same color. I need it to work regardless of color choice. Does anyone have an idea of what I need to do to make this work?
  8. Didn't work, so I downloaded the newest contribution, and it's working perfectly.
  9. I'm using the new Authorize.net AIM module, and when I get a error in my URL @ checkout_payment.php, nothing displays on the screen. If there is a GET var payment_error then I see something, but not with error_message. I must admin that I've hacked my osC install pretty well. Any ideas why I'm not seeing the error_message displayed?
  10. I downloaded osCommerce, but from reading here in the forum it seems that the USPS shipping module is broken. It certainly isn't working for me, even with a username and password supplied by USPS. USPS says to test with the username and password, and once testing is finished to just ask for a production username and password. So far, all I get when I try to check shipping rates is: Is there a revised version of this module that I should be using? All I want to retrieve from USPS is PRIORITY rates and GLOBAL PRIORITY rates. It seems like it should be simple enough, but I'm stuck with the above error message.
  11. I have a similar need. I need to only show standard priority mail for USA, and Priority Mail International for everywhere else. I haven't actually got my USPS module working yet. I'm trying to use the default USPS module, but I heard that it only works in production mode. I'm waiting for USPS to give me the stuff I need for that, but in the meantime I'm trying to figure everything else out.
  12. Sorry, at first glance I didn't see that this topic had already been posted.
  13. I'm just wondering if there is any concern regarding the email that came from authorize.net today:
×
×
  • Create New...