Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

swamper8

Archived
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Real Name
    Steven Mc Nulty

swamper8's Achievements

  1. Can anyone tell me why sometimes my FEDEX module returns 'ground' rates and sometimes it returns 'home delivery' rates? Those are the only two options I have enabled in my fedex1.php file. I saw in the readme that unless you have 'home delivery' setup in your actual FEDEX account, the OSC module will not return those rates. However sometimes it returns one and sometimes the other......not sure what is causing that. Thanks
  2. If you look in the readme file that's included with the module there is a section that tells you how to remove certain options. It reads like this: In the file catalog/includes/modules/shipping/fedex1.php, you can comment out shipping method lines as you so choose, there are 2 arrays, and an example of the comments is shown below. In the example, 3 methods will never be quoted: 2 Day Air, First Overnight, and International First. If you comment out the last method for domestic or international, say 92 below, then please remove the trailing comma on the last non-commented line. $this->domestic_types = array( '01' => 'Priority', // '03' => '2 Day Air', '05' => 'Standard Overnight', // '06' => 'First Overnight', '20' => 'Express Saver', '90' => 'Home Delivery', '92' => 'Ground Service' ); $this->international_types = array( '01' => 'International Priority', '03' => 'International Economy', // '06' => 'International First', '90' => 'Home Delivery', '92' => 'Ground Service' );
  3. Well as it turns out, when I implemented the two table change statements during the install process, they didn't take. For whatever reason I have no idea. But, once I ran them again and checked my database to make sure they stuck, everything worked fine. Interesting though the error that was returned. I was just about to contact Paypal about it and see what was up but I ALWAYS go back through my installation first because I more often than not find mistakes. And seeing how I was able to successfully implement one of your older modules, I knew it had to be something stupid. Hope this helps others who run into the same 'problem'...or inadvertently make the same mistake.
  4. Yes, I had this problem initially. It's not a FEDEX module problem. If you go into your OSC admin then click on 'Shipping/Packaging' in your Configuration menu you'll see that there is a TARE WEIGHT. This is set to 3 in a stock OSC install. YOu'll want to make this 0 for FEDEX to quote the weight of your product as setup in your products description.
  5. Several weeks ago I successfully implemented your 0.7.3 version of this module and it worked perfectly. I am going to return to that and install it to see if that makes any difference. If it works, I will re-install your latest version to eliminate any installation mistakes on my behalf. If you're interested, I will post my results some time in the next day or two.
  6. And what confuses me is that Paypal is returning, along with this error: "An error occured when we tried to process your credit card" My paypal primary account is tied to a bank account, my backup to that is a credit card. Paypal would have to be refusing both my bank account and my credit card which both are upstanding and work fine with Cube Cart.
  7. Well, I realize you must run into alot of people who don't bother to read any of the troubleshooting tips. I did read that and it is not applicable. I have been using the same credit card and bank account with OSC as I have with my CubeCart shopping cart. Direct pay/express pay both work fine in CubeCart and the money is deducted and added in the proper places. Because of this fact I question why it would work in one shopping cart and not another. That doesn't point to a Paypal problem in my opinion.
  8. Greetings all, I may have put this post in the wrong spot as I entered it in the main payment modules forum..... I have the latest version of OSC and I installed the direct & express payment module V0.8. The direct payment goes through without a problem. The Express payment does not. I am returned from paypal's website where I am asked to confirm the order in OSC. I do that and a error in red is returned. It says: An error occured when we tried to process your credit card. Transaction cannot complete. (10417) The transaction cannot complete successfully. Instruct the customer to use an alternative payment method. Not sure why I'm getting a credit card processing error when using express pay. Any help would be greatly appreciated. Thanks
  9. Greetings all, I have the latest version of OSC and I installed the direct & express payment module V0.8.1. The direct payment goes through without a problem. The Express payment does not. I am returned from paypal's website where I am asked to confirm the order in OSC. I do that and en error in read is returned. It says: An error occured when we tried to process your credit card. Transaction cannot complete. (10417) The transaction cannot complete successfully. Instruct the customer to use an alternative payment method. Any help would be greatly appreciated. Thanks
  10. Hello all, I am getting an error when trying to implement this contribution. I did all the code mods by hand because I was afraid letting it work automatically would overwrite important info and render my shopping cart useless. My shopping cart is indeed NOT working, but only 'appears' to have one bug. When I go to my catalog page, it gives me this: Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in d:\home\hnt27a040\catalog\includes\classes\shopping_cart.php on line 87 catalog\includes\classes\shopping_cart.php IS a file that gets modified in the installation instructions. I went back and compared my code additions to the install document and everything seemed to match. I also deleted and re-copied the code snippets into this .php file and the same error came back. I have NOT tried to copy the WHOLE shopping_cart.php from the contribution to my site for fear there may be other mods that have been made to this file by other modules that will then be rendered useless. Can anyone tell me what this means?? If I remove the following code from the shopping_cart.php file, and implement the original code that was there (I only commented it out, I did not delete it) my catalog and shopping cart then load correctly: $products_id = tep_get_uprid($products_id, $attributes); if ($notify == true) { $new_products_id_in_cart = $products_id; tep_session_register('new_products_id_in_cart'); } if ($this->in_cart($products_id)) { $this->update_quantity($products_id, $qty, $attributes); } else { $this->contents[] = array($products_id); $this->contents[$products_id] = array('qty' => $qty); // insert into database if (tep_session_is_registered('customer_id')) tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET . " (customers_id, products_id, customers_basket_quantity, customers_basket_date_added) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . $qty . "', '" . date('Ymd') . "')"); if (is_array($attributes)) { reset($attributes); while (list($option, $value) = each($attributes)) { $this->contents[$products_id]['attributes'][$option] = $value; // insert into database if (tep_session_is_registered('customer_id')) tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " (customers_id, products_id, products_options_id, products_options_value_id) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . (int)$option . "', '" . (int)$value . "')"); } } } $this->cleanup(); // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } (THIS IS THE CODE THAT IS SUPPOSED TO BE THE REPLACEMENT CODE) ANY THOUGHTS ANYONE?!?!
  11. I have spent many an hour unsuccessfully getting the ups.xml contribution to retrieve ups shipping quotes correctly and accurately. I thought I would back track and see if the UPS choice contribution would do what I needed it to do. I did not have any ups module pre-installed in my oscommerce installation. Does anyone know where I can get the UPS choice module? I found this in the contributions section: http://www.oscommerce.com/community/contri...arch,UPS/page,2 but am unsure if I need any previous files before I can use this one. Is this the full working contribution? Does anyone have this implemented? What are the pluses and minuses? I am only looking to ship two different types of product and multiple orders will be a rare. Thanks!!
  12. All, I'm using the UPS.XML shipping module. I finally worked out all the errors I was getting. The module appears to be working properly from an integration point. Has anyone ever had problems with this shipping module not returning accurate shipping quotes? I.E. If I let the ups module in my shopping cart calculate a 4 pound package to address xxx, it returns $14.06. if i then go to UPS.com and run the same weight and destination in the shipping section, it returns $9.87. That's a big difference. I have tare weight, handling fees and all those options turned off. Anyone had a similar problem with this module? Thanks
  13. Thankyou for your feedback. This was my problem. I've had so any errors in the process of setting up my ups module that yes, I guess I assumed it to be yet another. Have a wonderful day.
  14. I have installed some curl code that my host suggested. It fixed the problem. Thanks for your feedback, you got me on the right track.
  15. MISTAKE when i set item weight to 0, ups returns 3 pounds when i set item weight at 1, ups returns 4 pounds when i set item weight at 2, ups returns 5 pounds when i set item weight at 3, ups returns 6 pounds. UPS seems to start at 3 pounds? Why is that?
×
×
  • Create New...