Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

shuweee

Archived
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Real Name
    Mike

shuweee's Achievements

  1. hello my canadian friends, i got a question here.. i got Canada Post module going but one thing that got me thinking is the weight. oscommerce by default goes with lbs and Canada post is kg. is there any ways to have Canada post system measure by lbs instead ? if not how do i covert the oscommerce to provide kg rather than lbs? Thanks
  2. Gents, I was wondering if there's such a thing call monthly payment plan module so if customer is buying something expensive they have the option to make seperate payments on the monthly basis? Thanks
  3. hello all, i've been scratching my head for months now , testing it back and forth with no success. so here i am asking and see if anyone know how it might works. so when an affiliate create a url or link to the products and customer a comes to the site via the link, if the customer has to create an acct or login via the login page, how does osc affiliate/osc remember the sales or transaction is for which affiliate ? so far i have test it a few times locally and i just cant seem to register a affiliate sales. any help or suggestion would be greatly appreciate. Cheers
  4. hey wolf, thanks so much for helping, however i tried replacing the code and it didnt work.. if its not too much hassle, could you pm me ur email and iw ill send u the file i have and see if u can find out where and why its not working.. Thanks Wolf, here ar ethe codes, i tried changing the matching line however theres 2, when i changed the first matching part, it really didnt do anything, the option isnt enable when i go through the shipping option and if i change the section part, it gives me some sort of datatype error here are the codes if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_DLY_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_$ $zipcodes=split (',',MODULE_SHIPPING_DLY_ZIPCODE); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { if ((in_array($order->delivery['postcode'],$zipcodes )) or (MODULE_SHIPPING_DLY_ZIPCODE=='')) $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { if ((in_array($order->delivery['postcode'],$zipcodes )or (MODULE_SHIPPING_DLY_ZIPCODE==''))) $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } }
  5. im hoping someone can shed some light into my problems here.. finally after months of looking, i decided to install OSC Affiliate 2.5a everything went good, installation and it appears to be working, however one little problem here, when i sign up as a affiliate just to test the system, the link i build and purchase with doesnt seem to record the sales at all. any suggestions would be greatly appreciated. Mike oh also, i have tried setting the min status to 1 and wait cycle from 30 days to 1 day and that didnt change anything..
  6. here are the codes <?php /* $Id: dly.php,v 1.2 2004/11/18 16:29:56 ChBu Exp $ Dr. Bill Bailey, http://www.lowcarbnexus.com Zoe Lozada Almodovar, [email protected] VERY slight hack of dly.php by Dr. Bill Bailey, http://www.lowcarbnexus.com VERY slight hack of spu.php by dion made from original code by M. Halvorsen (http://www.arachnia-web.com) to allow local delivery from warehouse. Dr. Bill Bailey, http://www.lowcarbnexus.com Made to work with latest check-out procedure by Matthijs (Mattice) >> e-mail: [email protected] >> site: http://www.matthijs.org CHANGES (v1.2): - added selection of post codes (city codes) where this delivery is possible, it will not show up if the delivery is not in a selected city of the selected zone. CHANGES (v1.1): - added Minimum Total Order Value to configuration - updated code - added icon references CHANGES (v1.0): - formatted to work with latest checkout procedure - removed icon references - updated the db queries Released under the GNU General Public License */ class dly { var $code, $title, $description, $icon, $enabled; // class constructor function dly() { global $order; $this->code = 'dly'; $this->title = MODULE_SHIPPING_DLY_TEXT_TITLE; $this->description = MODULE_SHIPPING_DLY_TEXT_DESCRIPTION; $this->sort_order = MODULE_SHIPPING_DLY_SORT_ORDER; $this->icon = DIR_WS_ICONS . 'shipping_dly.gif'; // To remove icon change this line to: $this->icon = ''; $this->enabled = MODULE_SHIPPING_DLY_STATUS; // Beg Minimum Order Total required to activate module $this->min_order = MODULE_SHIPPING_DLY_MINIMUM_ORDER_TOTAL; if ( ($order->info['total']) < ($this->min_order) ) { $this->enabled = false; } // End Minimum Order Total required to activate module if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_DLY_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_DLY_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id"); $zipcodes=split (',',MODULE_SHIPPING_DLY_ZIPCODE); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { if ((in_array($order->delivery['postcode'],$zipcodes )) or (MODULE_SHIPPING_DLY_ZIPCODE=='')) $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { if ((in_array($order->delivery['postcode'],$zipcodes )or (MODULE_SHIPPING_DLY_ZIPCODE==''))) $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } } // class methods function quote($method = '') { global $order; $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_DLY_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_DLY_TEXT_WAY, 'cost' => MODULE_SHIPPING_DLY_COST))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); return $this->quotes; } function check() { if (!isset($this->_check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_SHIPPING_DLY_STATUS'"); $this->_check = tep_db_num_rows($check_query); } return $this->_check; } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Enable Local Delivery', 'MODULE_SHIPPING_DLY_STATUS', '1', 'Do you want to offer Local Delivery?', '6', '5', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Local Delivery Cost', 'MODULE_SHIPPING_DLY_COST', '0.00', 'What is the Local Delivery cost? (The Handling fee will NOT be added.)', '6', '6', now())"); // Beg Minimum Order Total required to activate module tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Minimum Order Total', 'MODULE_SHIPPING_DLY_MINIMUM_ORDER_TOTAL', '0.00', 'What is the Minimum Order Total required for this option to be activated.', '6', '7', now())"); // End Minimum Order Total required to activate module // Begin ZipCode tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Zip codes', 'MODULE_SHIPPING_DLY_ZIPCODE', '', 'Only enable this shipping method for these zip codes. Separate with comma if several, empty if all.', '6', '7', now())"); // End ZipCode tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'MODULE_SHIPPING_DLY_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_SHIPPING_DLY_SORT_ORDER', '3', 'Sort order of display.', '6', '0', now())"); } function remove() { $keys = ''; $keys_array = $this->keys(); for ($i=0; $i<sizeof($keys_array); $i++) { $keys .= "'" . $keys_array[$i] . "',"; } $keys = substr($keys, 0, -1); tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in (" . $keys . ")"); } function keys() { return array('MODULE_SHIPPING_DLY_STATUS', 'MODULE_SHIPPING_DLY_COST', // Beg Minimum Order Total required to activate module 'MODULE_SHIPPING_DLY_MINIMUM_ORDER_TOTAL', // End Minimum Order Total required to activate module // Begin ZipCode 'MODULE_SHIPPING_DLY_ZIPCODE', // End ZipCode 'MODULE_SHIPPING_DLY_SORT_ORDER', 'MODULE_SHIPPING_DLY_ZONE'); } } ?>
  7. quite frankly i'm not a coder so i'm here looking for some assistance. but logically this should be quite easy for you hard core coder out there :D this particular contribution is setup to scan for exact match of postal code, however in order for this to work for me in Canada, i'm hoping someone can tell me how to make this contribution to only scan for first 3 characters of postal code rather than looking for exact match. in Canda we use V1P2A2 and first 3 characters will identify the area they are in unlike in US it goes by numbers. Anyone's help would be greatly appreciated.. http://www.oscommerce.com/community/contri...h,Local+Deliver :thumbsup:
  8. im looking for some support to enhanced and make the current Events Calendar a better contribution.. rewards will be given to those who are interested.. thanks
  9. hey guys, these are the current codes on my new_products.php, i have added more info and buy now feature into it. and now i want to merge another contriubtion to the new_products.php and is having problems. so im looking for some assistance to help merge those two together. willing to donate some cash if someone is willing to help. my currrent new_products.php codes <?php /* $Id: new_products.php,v 1.34 2003/06/09 22:49:58 hpdl Exp $ by Mikey J: [email protected] ? ? ?http://www.getmemusic.com This contribution enhances the New Products module so that it displays "more info" and "buy now" links underneath the displayed products. See the README file for easy installation instructions. osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- new_products //--> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B'))); new contentBoxHeading($info_box_contents); if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) { ? $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by rand() desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { ? $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' order by rand() desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } $row = 0; $col = 0; $info_box_contents = array(); while ($new_products = tep_db_fetch_array($new_products_query)) { ? $new_products['products_name'] = tep_get_products_name($new_products['products_id']); ? $info_box_contents[$row][$col] = array('align' => 'center', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class=shadow1') . '</a><br> <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br> <a title="more info" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . 'more-info-sml.gif') . '</a> ' . '<a title="buy now" href="' . tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . 'buy-now-sml.gif') . '</a><br>' . (($new_products['products_price'] > 0) ? $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) : '')); ? $col ++; ? if ($col > 2) { ? ? $col = 0; ? ? $row ++; ? } } new contentBox($info_box_contents); ?> <!-- new_products_eof //--> and these are the codes im trying to merge. as you can probably tell, there are some very similiar lines. since im not a php coder i think this will be very easy for some of you guys out there. Thanks <?php /* $Id: new_products.php,v 1.33 2003/02/12 23:55:58 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- new_products //--> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B'))); new contentBoxHeading($info_box_contents); if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) { $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, p.products_price, s.status, s.specials_new_products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $new_products_category_id . "' and p.products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } $row = 0; $col = 0; $info_box_contents = array(); while ($new_products = tep_db_fetch_array($new_products_query)) { $new_products['products_name'] = tep_get_products_name($new_products['products_id']); // hack $new_products['products_name'] = tep_get_products_name($new_products['products_id']); $new_products['specials_new_products_price'] = tep_get_products_special_price($new_products['products_id']); if (tep_not_null($new_products['specials_new_products_price'])) { $whats_new_price = '<s>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</s><br>'; $whats_new_price .= '<span class="productSpecialPrice">' . $currencies->display_price($new_products['specials_new_products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</span>'; } else { $whats_new_price = $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])); } // end hack $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br>' . $whats_new_price); $col ++; if ($col > 2) { $col = 0; $row ++; } } new contentBox($info_box_contents); ?> <!-- new_products_eof //--> [code]
  10. hey guys, im not good at merging those php code but im sure with the talents on this forum someone might be able to answer this easy question here. so this is the current code on my new_products.php <?php /* $Id: new_products.php,v 1.34 2003/06/09 22:49:58 hpdl Exp $ by Mikey J: [email protected] http://www.getmemusic.com This contribution enhances the New Products module so that it displays "more info" and "buy now" links underneath the displayed products. See the README file for easy installation instructions. osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- new_products //--> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B'))); new contentBoxHeading($info_box_contents); if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) { $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by rand() desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' order by rand() desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } $row = 0; $col = 0; $info_box_contents = array(); while ($new_products = tep_db_fetch_array($new_products_query)) { $new_products['products_name'] = tep_get_products_name($new_products['products_id']); $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class=shadow1') . '</a><br> <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br> <a title="more info" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . 'more-info-sml.gif') . '</a> ' . '<a title="buy now" href="' . tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . 'buy-now-sml.gif') . '</a><br>' . (($new_products['products_price'] > 0) ? $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) : '')); $col ++; if ($col > 2) { $col = 0; $row ++; } } new contentBox($info_box_contents); ?> <!-- new_products_eof //--> and the one i want to merge it with. as you can tell there are quite a few similiar lines but can someone help merging those two together, i would greatly appreciated if anyone can shed some light here. <?php /* $Id: new_products.php,v 1.33 2003/02/12 23:55:58 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- new_products //--> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B'))); new contentBoxHeading($info_box_contents); if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) { $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, p.products_price, s.status, s.specials_new_products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $new_products_category_id . "' and p.products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } $row = 0; $col = 0; $info_box_contents = array(); while ($new_products = tep_db_fetch_array($new_products_query)) { $new_products['products_name'] = tep_get_products_name($new_products['products_id']); // hack $new_products['products_name'] = tep_get_products_name($new_products['products_id']); $new_products['specials_new_products_price'] = tep_get_products_special_price($new_products['products_id']); if (tep_not_null($new_products['specials_new_products_price'])) { $whats_new_price = '<s>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</s><br>'; $whats_new_price .= '<span class="productSpecialPrice">' . $currencies->display_price($new_products['specials_new_products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</span>'; } else { $whats_new_price = $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])); } // end hack $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br>' . $whats_new_price); $col ++; if ($col > 2) { $col = 0; $row ++; } } new contentBox($info_box_contents); ?> <!-- new_products_eof //-->
  11. is there an demo of this somewhere online that i can see ??
  12. hey guys, if i have a product weight 0.01 kg why is the Canada post rate return as such Canada Post (1 x 3.02kgs) why is it saying 3.02kgs? Priority Courier, 2005-05-11 $12.56 Xpresspost, 2005-05-11 $5.91 Regular, 2005-05-13 $6.15
  13. hey guys, if i have a product weight 0.01 kg why is the Canada post rate return as such Canada Post (1 x 3.02kgs) why is it saying 3.02kgs? Priority Courier, 2005-05-11 $12.56 Xpresspost, 2005-05-11 $5.91 Regular, 2005-05-13 $6.15
  14. Could someone please help me out here.. I was previously using PayPal IPN 1.1 tried upgrading it, went through the installation and now im getting this error msg, please help Thanks Warning: reset(): Passed variable is not an array or object in /home/virtual/site222/fst/var/www/html/estore/includes/classes/shopping_cart.php on line 373 Warning: Variable passed to each() is not an array or object in /home/virtual/site222/fst/var/www/html/estore/includes/classes/shopping_cart.php on line 374
  15. hi guys sorry to cut into the conversation here, but i just finished the modification manually rather than just copy over as i have a few other mod there that i like to keep. thank god i back up.. but here is the error im getting and i already installed the mod through the mod section and created a test coupon but when i go to the site im still getting this error, although half of the page do show and it load awefully slow.. Fatal error: Cannot redeclare create_coupon_code() (previously declared in /home/virtual/site222/fst/var/www/html/estore/includes/add_ccgvdc_application_top.php:36) in /home/virtual/site222/fst/var/www/html/estore/includes/add_ccgvdc_application_top.php on line 36 also on the other note, when i create a test coupon and delete it after, im unable to re-create the coupon using the same code as it give me a error msg saying the coupon id already exist.. thanks for your help! :)
×
×
  • Create New...