Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dspirito

Pioneers
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Real Name
    Dave Spirito

dspirito's Achievements

  1. Sorry to resurrect an old thread, but I spent alot of time here trying to fix an issue and would like to share my solution in case anyone finds this page via Google, like I did. My issue was upon a failed transaction there was a white page with "Called manually - notice reported to webmaster" I would have liked it to return to a shop page with a human explanation ie: We're sorry, it seems there was an error processing your transaction. The error may be related to non matching credit card information. Your items should be saved in your shopping cart to the left. Please select "View" and try to submit your order again, or phone us for assistance. so I just created a page in my shop root called epdq_error.php and added the following redirect code to the bottom of /cpi/complete.php in place of the print "Called manually - notice reported to webmaster" ; header( 'Location: http://www.mysite.com/shop/epdq_error.php' ) ; Works for me! Cheers
  2. Sorry, I'm an idiot.. Turns out if you miss the "php" in <?php the code will not run, who knew.. I found a few questions on this while searching and this was not mentioned, so it may be useful to leave open for beginner oscommerce users. Otherwise, an admin may close and or delete this. Thanks!
  3. Greetings, I am having a huge issue with the SIPS/ATOS payment module, and only that mod. I am still in the testing phases of this shop and the module has been working fine for about a month. Today it began returning the entire raw php contents from "atos.php" in both the admin payment modules page, as well as in the cart, which you can't get past unless disabling the module (inside phpmyadmin).. I have contacted the host to inquire about any PHP updates and they said there have been none. I have also used a program to compare the differences of multiple files and there haven't been changes. If anyone has any ideas I would greatly appreciate it! Thanks, Dave
  4. Search Search Search!

  5. I fixed my issue; here is what was wrong for reference: I did the manual install because I had other shipping modules before. one item for the install was: Replace the following in checkout_shipping.php: 'cost' => $quote[0]['methods'][0]['cost']); With: // start indvship //'cost' => $quote[0]['methods'][0]['cost']); 'cost' => $quote[0]['methods'][0]['cost'], 'invcost' => $shipping_modules->get_shiptotal()); // end indvship I commented out: //'invcost' => $shipping_modules->get_shiptotal()); and now have just: 'cost' => $quote[0]['methods'][0]['cost']); I would like to have this individual pricing add the value per item, just not to the order total. If anyone knows an easy way to accomplish this I would greatly appreciate it. Thanks, Dave (from Rhode Island)
  6. Hello, First off, great community! I've been reading a wealth of info here and its greatly helping me on a daily basis! The contributions are excellent and I have used quite a few so far. I'm newer at php and mysql, but not completely, and have a fundamental grasp on the technology. For this contrib, I'm having an issue; Objective: Have East and West shipping zones; separated by state (west states incur $10 handling fee) I have setup 2 zones with specific states in each, and the per item price is in place. Also, is there any way to specify a price difference per each item depending on East or West purchase? I have duplicated the file (indvship to indvship1/indvship1 language file, and renamed indvship to indvship1 inside each file)to accomplish what I'm trying. I must not quite get it.. Problem: It works great unless I pick a western state Initially, at checkout_shipping.php 'delivery info' the shipping is correct; But when continuing to checkout at checkout_confirmation.php 'order confirmation', the shipping price doubles. Also, even picking a Western state, the shipping amount is correct until Plus Flat Rate Shipping is added upon order confirmation.. I'm sure I must have duplicated it wrong. I will be looking into this and any help is greatly appreciated!!!
×
×
  • Create New...