Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

collig

Archived
  • Posts

    33
  • Joined

  • Last visited

Profile Information

collig's Achievements

  1. I would like to install the Guest Account contribution but I'm a bit confused as to which version is the last full installation. It seems several of the new ones are just updates. Could someone tell me which is the newest full installation download. Thanks.
  2. Fixed it! Turns out I somehow set the Shipping Zone to one state only in the Configuration. Guess I need some sleep... :-
  3. I'm totally confused by what my shipping module is doing and I hope someone can shed some light on this. I am just using the Table Rate method that calculates shipping based on price. When I log in with an account I've created a long time ago, the shipping method and price shows up fine on the shipping_checkout page. However, when I log in with a new account (created today) the shipping is not displayed at all and it's not added on to the total price. I tried replacing the shipping_checkout.php file with an original one, but it does the same thing. Does anyone know how to fix this???
  4. Thanks for the quick reply. It turns out that I modified all the code correctly, but some of the files didn't get uploaded (I modified all files first, then uploaded them one by one, so it might have been too much for the server). Everything works great now, thanks for the contribution!
  5. Hi enigma1, First of all, thanks for the great contribution! A lot of effort definitely went into writing it. I just installed the newest version and it's just what I was looking for, but I am running into a couple errors that I'm hoping you can help me out with. 1. In the configuration I set my active country to US. When I go to register as a new customer, I get a pull down menu with all the states, which is great, but next to the country field I get this error: Fatal error: Call to undefined function: tep_get_active_countries() in /home/collig5/public_html/includes/functions/html_output.php on line 304 I read through this support forum and tried some of the suggestions, but nothing seems to work. 2. Also, when I go through the checkout as a logged in customer and go to edit the shipping info (in checkout_shipping_address.php) the state option is just a text input field, and the country option has a drop down menu with all countries, not just the active country (US). I'm running out of ideas where to fix this, so I'd appreciate any help! Thanks, Kasia
  6. Hi Everyone, I installed the PayPal WPP contribution and now I'm trying to set up PayPal Express Checkout and Direct Payment in my admin. When I enter all the info in the EDIT column, including the required API Certificate info, and click Save I get the errors below. Does anyone know how I can fix these? Thanks! Kasia ----------------------------------------------------------------------------------------------------------------------- Warning: Variable passed to each() is not an array or object in /home/collig5/public_html/admin/modules.php on line 54 Warning: Cannot modify header information - headers already sent by (output started at /home/collig5/public_html/admin/modules.php:54) in /home/collig5/public_html/admin/includes/functions/general.php on line 22 ------------------------------------------------------------------------------------------------------------------------- The blue bolded line below is Line 54 from modules.php: $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); if (tep_not_null($action)) { switch ($action) { case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'"); } tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS ['module'])); break; case 'install': case 'remove': $file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.')); $class = basename($HTTP_GET_VARS['module']); if (file_exists($module_directory . $class . $file_extension)) { include($module_directory . $class . $file_extension); $module = new $class; if ($action == 'install') { $module->install(); } elseif ($action == 'remove') { $module->remove(); } } tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class)); break; } Line 22 in general.php: header('Location: ' . $url);
  7. I installed STS v4 and it seems to work in its default mode. Then I changed my stylesheet to center my pages and set a fixed width, but those changes do not show up with the template turned on. When I go back to the default osc design, the changes I made to the stylesheet are there...my page is centered. How can I apply the stylesheet changes to the template?
×
×
  • Create New...