Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sgflowers

Archived
  • Posts

    285
  • Joined

  • Last visited

Everything posted by sgflowers

  1. what version of cvs are you using this was a feature that has been added to all shippiing modules you might have an old shipping module
  2. you need to adjust the sort order in the admin modules>order total Sort Order Shipping 3 Sub-Total 1 Tax 4 Total 6
  3. why not submit it through the regular process http://www.oscommerce.com/community/contri.../action,package
  4. http://www.oscommerce.com/community/contributions you can search the contributons now!
  5. hello with vistor`s stats contributions in keywords i am getting some wierd things in the report anyone know why? Keywords Times Used utf-8 60 0&x=wrt 34 garden flowers 21 glass cloche 15 20&fl=0&ve= 10 secret garden 10 21 8 (0.15)4(0.1)3.200.2.5.10.3. 6 20&fl=0 4 41 4 large planters 4 metal watering cans 4 (0.15)4(0.1)3.200.2.5.10.3 3 0&xargs=&b=21 3 wrt 3 (0..15)6.3.200.2.5.10.3. 2 (0.15)4(0.1)3.200.2.5.10. 2 0&pn 2
  6. Hello crshNbrn, Thanks for your hard work on the Canada post module. There is one other thing that could be possibly needed I don?t know how hard this would be to implement but here it goes? Linda McGrath is planning to release a shopping enhancement controller contribution that lets you add weight attributes to well to attributes. We need to be able to increase dimensions for Canada post base on attributes as well I.e. here is the scenario I sell ceramic pot (A) in 2 sizes Size 1 is 5 pounds and 12 x 5 Size 2 is 10 pounds and 24 x 10 attribute for product A is size (small, large) Any idea how this could be accomplished Thank you, Kevin Sullivan sgf
  7. I hear you, i wish some of the contribs would become part of core i know some of this is planned it would just make it so much easier for cvs updates. I can do some minor php changes by my knowledge is very limited
  8. here is what i would like to implement all of these contributions 1) category description 2) product listing in columns 3) short descriptions in product listing (and in whats new box) 4) attributes and qty box in product listing i have tried unsucessfully to do this has anyone done all of these together?
  9. Any ideas.. I seems to calculate tax ok just not adding tax to shipping amount
  10. Hi peter (and others) I am still having issues with tax it doesn't seem to be calculating or displaying properly i have followed your instructions to a tee i am just wondering if there is left over stuff from my previous configuration. My shop is in ontario (same setup as yours) here is when i am getting Sub-Total: $48.57USD 7.0% GST# + Description: 8.0% PST (Ontario): $7.29USD Per Item (Best Way): $13.16USD Total: $70.99USD it does not seem to being adding tax on the shipping at all (shipping address is in ontario) tested shipping to nova scotia Sub-Total: $48.57USD Description: 15% HST#: $7.29USD Per Item (Best Way): $13.16USD Total: $70.99USD also not adding tax to shipping
  11. Hello, I am also having problems with:(again i am using cvs from april 11 code is different in categories.php) Find the following (approx line 799) $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . $HTTP_GET_VARS['pID'] . "'"); $product = tep_db_fetch_array($product_query); Replace with the following $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . $HTTP_GET_VARS['pID'] . "'"); $product = tep_db_fetch_array($product_query);
  12. from the instructions: in admin/categories.php Find the following (approx line 573) $pInfo = new objectInfo($product); } elseif ($HTTP_POST_VARS) { $pInfo = new objectInfo($HTTP_POST_VARS); $products_name = $HTTP_POST_VARS['products_name']; $products_description = $HTTP_POST_VARS['products_description']; $products_url = $HTTP_POST_VARS['products_url']; } else { $pInfo = new objectInfo(array()); } Replace with the following $pInfo = new objectInfo($product); } elseif ($HTTP_POST_VARS) { $pInfo = new objectInfo($HTTP_POST_VARS); $products_name = $HTTP_POST_VARS['products_name']; $products_description = $HTTP_POST_VARS['products_description']; $products_head_title_tag = $HTTP_POST_VARS['products_head_title_tag']; $products_head_desc_tag = $HTTP_POST_VARS['products_head_desc_tag']; $products_head_keywords_tag = $HTTP_POST_VARS['products_head_keywords_tag']; $products_url = $HTTP_POST_VARS['products_url']; } else { $pInfo = new objectInfo(array()); } i can't figure out the correct code to use i think it has to go in here somewhere (from admin/categories.php april 11 cvs) $languages = tep_get_languages(); for ($i = 0, $n = sizeof($languages); $i < $n; $i++) { if ($HTTP_GET_VARS['read'] == 'only') { $pInfo->products_name = tep_get_products_name($pInfo->products_id, $languages[$i]['id']); $pInfo->products_description = tep_get_products_description($pInfo->products_id, $languages[$i]['id']); $pInfo->products_url = tep_get_products_url($pInfo->products_id, $languages[$i]['id']); } else { $pInfo->products_name = tep_db_prepare_input($products_name[$languages[$i]['id']]); $pInfo->products_description = tep_db_prepare_input($products_description[$languages[$i]['id']]); $pInfo->products_url = tep_db_prepare_input($products_url[$languages[$i]['id']]); } any help would be great
  13. 2) Add the data capture lines to catalog/includes/application_top.php: Find: // language if (!tep_session_is_registered('language') || isset($HTTP_GET_VARS['language'])) { if (!tep_session_is_registered('language')) { tep_session_register('language'); tep_session_register('languages_id'); } include(DIR_WS_CLASSES . 'language.php'); $lng = new language($HTTP_GET_VARS['language']); if (!$HTTP_GET_VARS['language']) $lng->get_browser_language(); $language = $lng->language['directory']; $languages_id = $lng->language['id']; } Change to: // language if (!tep_session_is_registered('language') || isset($HTTP_GET_VARS['language'])) { if (!tep_session_is_registered('language')) { tep_session_register('language'); tep_session_register('languages_id'); } include(DIR_WS_CLASSES . 'language.php'); $lng = new language($HTTP_GET_VARS['language']); if (!isset($HTTP_GET_VARS['language'])) $lng->get_browser_language(); $language = $lng->language['directory']; $languages_id = $lng->language['id']; // Visitors Start $b_lang = getenv('HTTP_ACCEPT_LANGUAGE'); $referer = getenv('HTTP_REFERER'); if ($referer == '') { $referer = 'direct'; } $uri = getenv('REQUEST_URI'); $b_ip = getenv('REMOTE_ADDR'); if ($b_lang == '') { $b_lang = 'robot'; } $b_count = '1'; $ip_count = tep_db_query("select counter from visitors where browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "'"); if (!tep_db_num_rows($ip_count)) { tep_db_query("insert into visitors (date,counter,browser_ip,browser_language,language,referer,uri) values (now(),'".$b_count."','".$b_ip."','".$b_lang."','".$language."','".$referer."','".$uri."')"); } else { $ip_values = tep_db_fetch_array($ip_count); $b_count = ($ip_values['counter'] + 1); tep_db_query("update visitors set counter = '" . $b_count . "' where browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "'"); tep_db_query("update visitors set date = now() where browser_ip = '" . $b_ip . "' AND browser_language = '" . $b_lang . "'"); } // Visitors End }
  14. one suggestion use a check box instead of a radio button and default it so that it is on cleaner looking
  15. http://www.oscommerce.com/forums/viewtopic.php?t=39962 a la warren
  16. works like a charm thanks for the quick response!!!!
  17. I get this when browsing categories in the admin at the bottom of the page any ideas?? Fatal error: Call to undefined function: tep_parse_category_path() in includes/functions/user_tracking.php on line 47 line 47 $cPath_array = tep_parse_category_path($cPath); any help would be appreciated i am running cvs from march 22
  18. Carsten, in v 1.5 of newsdesk are you going to tackle updating so it is compatable with the new cvs (file upload class) same applies to faq desk - Kevin
  19. I believe newsdesk 1.4 is not compatible with the latest cvs which uses the new file upload class here is the error i get when i try to create a new newsdesk category Fatal error: Call to undefined function: tep_get_uploaded_file() in /admin/newsdesk.php on line 92 does anyone know how to fix this
  20. sorry i forgot my email address please email a sql file that works in phpmyadmin to [email protected] Thanks, Kevin
  21. I am just setting up newsdesk does anyone have a newsdesk.sql sql file that does not give errors in phpmyadmin can they please email it to me
  22. http://www.oscommerce.com/community/contri...ions,191/page,3 I updated to the new cvs 030322 i can't figure out how to modify categories.php from the admin/ to work with categories description v1.1 any ideas? it is using the upload class now i believe
  23. Are you getting an error what is the issue maybe i can help
×
×
  • Create New...