Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jgarniss

Archived
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Real Name
    Jon Garniss

jgarniss's Achievements

  1. OK, so I was able to get the Worldwide Saver to work to a point. I get a quote from UPS, but when I hit Continue after selecting Worldwide Saver, the screen returns stating that OSC can not determine the rate, yet if I hit continue again, the rate pops up, and I end up being stuck in a loop. I am using the ups module 1.8. PLEASE HELP!
  2. Hi everyone, I am using the UPS module with OSC and with certain countries, I am not able to get anything in terms of a quote and the customer can not continue because there are no shipping options shown. There is no error stating that it could not find an error either. For example, I am shipping from Massachusetts to Bolivia. When the customer eneters the Bolivia address, they can't go any further because nothing is returned. Yet when I go to the UPS website I see the Worldwide Saver option at @ $94. Why would OSC not get this quote? Is the code for Worldwide Saver diffferent than what's there? If so, does anyone know what the code is? Thanks in advance
  3. Hi all, I installed the latest Ultra Pics contribution and am having a strange process happening. I have 6 images added for a product. All six images display fine. If you click on the first 4 images, they do not open a browser window, they simply open a new page with the image in the same browser window. However, the last 2 images open the image in a completely new window. Why would the first 4 open in the same window and the last 2 open in a new window? I'd like it to be consistent, preferably with a new window every time. Thanks, Jon
  4. Hi everyone, I am having an issue with the final step of the process. Everything works great up to that point in the install process. When modifying the catalog/admin/includes/functions/html_output.php I am getting errors after saving the code. The step says to add this before the closing ?>: // +Country-State Selector // Adapted from functions in catalog/includes/general.php and html_output.php for Country-State Selector // Returns an array with countries // TABLES: countries function css_get_countries($countries_id = '', $with_iso_codes = false) { $countries_array = array(); if (tep_not_null($countries_id)) { if ($with_iso_codes == true) { $countries = tep_db_query("select countries_name, countries_iso_code_2, countries_iso_code_3 from " . TABLE_COUNTRIES . " where countries_id = '" . (int)$countries_id . "' order by countries_name"); $countries_values = tep_db_fetch_array($countries); $countries_array = array('countries_name' => $countries_values['countries_name'], 'countries_iso_code_2' => $countries_values['countries_iso_code_2'], 'countries_iso_code_3' => $countries_values['countries_iso_code_3']); } else { $countries = tep_db_query("select countries_name from " . TABLE_COUNTRIES . " where countries_id = '" . (int)$countries_id . "'"); $countries_values = tep_db_fetch_array($countries); $countries_array = array('countries_name' => $countries_values['countries_name']); } } else { $countries = tep_db_query("select countries_id, countries_name from " . TABLE_COUNTRIES . " order by countries_name"); while ($countries_values = tep_db_fetch_array($countries)) { $countries_array[] = array('countries_id' => $countries_values['countries_id'], 'countries_name' => $countries_values['countries_name']); } } return $countries_array; } //// // Creates a pull-down list of countries function css_get_country_list($name, $selected = '', $parameters = '') { $countries_array = array(); $countries = css_get_countries(); for ($i=0, $n=sizeof($countries); $i<$n; $i++) { $countries_array[] = array('id' => $countries[$i]['countries_id'], 'text' => $countries[$i]['countries_name']); } return tep_draw_pull_down_menu($name, $countries_array, $selected, $parameters); } // -Country-State Selector But when I do this and save it I get: Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/oscommerce/catalog/admin/includes/functions/html_output.php:386) in /var/www/oscommerce/catalog/admin/includes/functions/sessions.php on line 97 And then I can't do anything else. Has anyone else come across this? Thanks in advance!
  5. I have an issue with the coupon being applied when it shouldn;t be. I have a clean install of osCommerce that I am putting this on. I set the order total minimum at 299, but when I order a product for 199, it still allows me to use the coupon. Did I miss something?
  6. Hi everyone, I have a client that is looking to do something different with regards to shipping rates. Instead of using rate based (i.e. UPS rates) options, they would like to be able to charge a flat fee based on certain rules. For example. if you want to send a product via UPS Ground, for ONE item they want to charge 9.95, for UPS 2nd day they want to charge 24.95, for Next Day they want to charge 44.95 (these are random numbers). For international rates they similarly want to charge a flat rate based on the country. However, for every additional item on the order they want to add 2.95. So for UPS Ground for three items, the total shipping charge would be $15.85 (9.95 + 2.95 + 2.95). Does anyone know of a contribution that would allow this to happen? Or is there a way built in native that could do this? Thanks, Jon
  7. Hi everyone, I too am having the problem where the points are not being deducted from the user's account once they are used to pay for the order. Also, although I see the confirmation screen showing that the points have been applied, I do not see anything regarding the points on the order area of the admin or on the email that gets sent to the customer. I have not put in any payment modules other than the standrd payment modules included in osCommerce. Has anyone been able to solve these issues? Thanks in advance!
  8. This is odd. I am using 3.3.1 and I don't see these options for product exclusions in the coupon definition area. Am I missing something?
  9. Hi there, The way our marketing department wants to do it, they want the price to be A unless you get a coupon code from a specific affiliate site, which would then make the price A - $50. It's a bit of an odd situation to say the least, but I am wondering if this can be done?
  10. I am VERY new to osCommerce so please bear with me. I have installed the module and it looks great! My questions is this: Can I use this module to apply a discount code to a specific item only? In other words, the discount code is only applicable to a single item. If it is used against any other item, I do not want the code to be valid. Is this possible with the current version? Thanks in advance!
×
×
  • Create New...