Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dinmc

Pioneers
  • Posts

    50
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by dinmc

  1. Hi, I started in standard mode - and I have been trying to change on all SEO setting in Admin - but no matter what I do the links ends blind! Regards Lars
  2. Yes! Sorry. Don't know how to delete it. Regards Lars
  3. Hi, Installed AuctionTastic on OSC 2.2MS2 (with lots of changes). The bidding works strage. Take a look here: From the start of the auction I would exspect the numbers in the red, green and blue circle to be tha same, but they are not! The startprice (red circle) is added with the minimum overbid value - and this number is put to the next minimum bid (green circle) The bidding-value-field (in the blue circle) will be the value from the red circle minus local tax (in denmark tax is 25%). Anyone able to help with this issue?? I made as well a testbid - this could be made as low as 519.20 - but the minimum startprice was set to 599 (red circle) Regards Lars
  4. Hi, I installed latest ULTIMATE Seo Urls 5 on my OSC 2.2MS2 shop. Installation fairly easy - until i set Enable SEO URLs 5? TRUE in admin module - then NO catagori links or product links will work on the website - I get the Page not found message nomatter what setting I put to the SEO admin setting. I go trough the hole installation but I can't find any errors. I put the danish conversion map in the correct folder as told. Any hints?? Reagards Lars Sorry!! Making new problems before solving the AuctionTastic problems. I really want them both to work!
  5. Hi, I installed latest ULTIMATE Seo Urls 5 on my OSC 2.2MS2 shop. Installation fairly easy - until i set Enable SEO URLs 5? TRUE in admin module - then NO catagori links or product links will work on the website - I get the Page not found message nomatter what setting I put to the SEO admin setting. I go trough the hole installation but I can't find any errors. I put the danish conversion map in the correct folder as told. Any hints?? Reagards Lars Sorry!! Making new problems before solving the AuctionTastic problems. I really want them both to work!
  6. Hi, Did you manage to make everything working using the latest AuctionTastic run on a OSC 2.2MS2?? What changes will be needed to make to latest AuctionTastic run on a OSC 2.2MS2?? Regards Lars
  7. What changes will be needed to make to latest AuctionTastic run on a OSC 2.2MS2 Regards Lars
  8. What kind of "fiddling" will I have to do to make it work in OSC 2.2MS2?? Regards Lars
  9. Now added this but it makes no change! Regards Lars
  10. Hi, Installed AuctionTastic on OSC 2.2MS2 (with lots of changes). The bidding works strage. Take a look here: From the start of the auction I would exspect the numbers in the red, green and blue circle to be tha same, but they are not! The startprice (red circle) is added with the minimum overbid value - and this number is put to the next minimum bid (green circle) The bidding-value-field (in the blue circle) will be the value from the red circle minus local tax (in denmark tax is 25%). Anyone able to help with this issue?? I made as well a testbid - this could be made as low as 519.20 - but the minimum startprice was set to 599 (red circle) Regards Lars
  11. Hi, Take a look at this link It shows only 4 auctions per page. Where do I change this - I would like more auction to be shown per page. Regards Lars
  12. Hi, Could you be more specific, what files and where to change?? Regards Lars
  13. Hi, First of all the AuctionTastic is a great OSC contribution - but I have a list of problems using it on a OSC 2.2MS2 installation - and to upgrade my shop to latest OSC version is a VERY huge job to do. So I hope to be able to make AuctionTastic work in the OSC 2.2MS2 environment (danish language package). Lots of store owners does NOT use the latest OSC release - so it would be very nice tp make AuctionTastic work in older OSC version! List of the problems I discover (more may come!). 1. With a auction startprice on lets say 100, and a overbidprice of 10 - the first bid will be 110 - during bidding. Bids should now be increased by 10 but it's possible to make bids with an increment lower than 10!! 108 f.ex will work. The window where the bid has to be typed shows strange values - I exspect it should show the next correct minimum bid??? 2. When logged in to the shop - and bidding on an auction make this error in the shoppingcart (right side collum). Fatal error: Call to a member function calculate_price() on a non-object in /var/www/www.dinmc.dk/www/catalog/includes/classes/shopping_cart.php on line 228 Here is the complete code for the shoppingcart.php - I marked line 228 in red: <?php /* $Id: shopping_cart.php,v 1.35 2003/06/25 21:14:33 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ class shoppingCart { var $contents, $total, $weight, $cartID, $content_type; function shoppingCart() { $this->reset(); } function restore_contents() { global $customer_id; if (!tep_session_is_registered('customer_id')) return false; // insert current cart contents in database if (is_array($this->contents)) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { $qty = $this->contents[$products_id]['qty']; $product_query = tep_db_query("select products_id from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "'"); if (!tep_db_num_rows($product_query)) { tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET . " (customers_id, products_id, customers_basket_quantity, customers_basket_date_added) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . $qty . "', '" . date('Ymd') . "')"); if (isset($this->contents[$products_id]['attributes'])) { reset($this->contents[$products_id]['attributes']); while (list($option, $value) = each($this->contents[$products_id]['attributes'])) { tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " (customers_id, products_id, products_options_id, products_options_value_id) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . (int)$option . "', '" . (int)$value . "')"); } } } else { tep_db_query("update " . TABLE_CUSTOMERS_BASKET . " set customers_basket_quantity = '" . $qty . "' where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "'"); } } } // reset per-session cart contents, but not the database contents $this->reset(false); // BOF AUCTION $products_query = tep_db_query("select products_id, customers_basket_quantity, auction_product, final_price from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "'"); // EOF AUCTION while ($products = tep_db_fetch_array($products_query)) { $this->contents[$products['products_id']] = array('qty' => $products['customers_basket_quantity']); // BOF AUCTION $this->contents[$products['products_id']]['auction_id'] = $products['auction_product']; $this->contents[$products['products_id']]['auction_price'] = $products['final_price']; // EOF AUCTION // attributes $attributes_query = tep_db_query("select products_options_id, products_options_value_id from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products['products_id']) . "'"); while ($attributes = tep_db_fetch_array($attributes_query)) { $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id']; } } $this->cleanup(); } function reset($reset_database = false) { global $customer_id; $this->contents = array(); $this->total = 0; $this->weight = 0; $this->content_type = false; if (tep_session_is_registered('customer_id') && ($reset_database == true)) { tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "'"); tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where customers_id = '" . (int)$customer_id . "'"); } unset($this->cartID); if (tep_session_is_registered('cartID')) tep_session_unregister('cartID'); } function add_cart($products_id, $qty = '1', $attributes = '', $notify = true) { global $new_products_id_in_cart, $customer_id; $products_id = tep_get_uprid($products_id, $attributes); if ($notify == true) { $new_products_id_in_cart = $products_id; tep_session_register('new_products_id_in_cart'); } if ($this->in_cart($products_id)) { $this->update_quantity($products_id, $qty, $attributes); } else { $this->contents[] = array($products_id); $this->contents[$products_id] = array('qty' => $qty); // insert into database if (tep_session_is_registered('customer_id')) tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET . " (customers_id, products_id, customers_basket_quantity, customers_basket_date_added) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . $qty . "', '" . date('Ymd') . "')"); if (is_array($attributes)) { reset($attributes); while (list($option, $value) = each($attributes)) { $this->contents[$products_id]['attributes'][$option] = $value; // insert into database if (tep_session_is_registered('customer_id')) tep_db_query("insert into " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " (customers_id, products_id, products_options_id, products_options_value_id) values ('" . (int)$customer_id . "', '" . tep_db_input($products_id) . "', '" . (int)$option . "', '" . (int)$value . "')"); } } } $this->cleanup(); // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } function update_quantity($products_id, $quantity = '', $attributes = '') { global $customer_id; if (empty($quantity)) return true; // nothing needs to be updated if theres no quantity, so we return true.. $this->contents[$products_id] = array('qty' => $quantity); // update database if (tep_session_is_registered('customer_id')) tep_db_query("update " . TABLE_CUSTOMERS_BASKET . " set customers_basket_quantity = '" . $quantity . "' where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "'"); if (is_array($attributes)) { reset($attributes); while (list($option, $value) = each($attributes)) { $this->contents[$products_id]['attributes'][$option] = $value; // update database if (tep_session_is_registered('customer_id')) tep_db_query("update " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " set products_options_value_id = '" . (int)$value . "' where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "' and products_options_id = '" . (int)$option . "'"); } } } function cleanup() { global $customer_id; reset($this->contents); while (list($key,) = each($this->contents)) { if ($this->contents[$key]['qty'] < 1) { unset($this->contents[$key]); // remove from database if (tep_session_is_registered('customer_id')) { tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($key) . "'"); tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($key) . "'"); } } } } function count_contents() { // get total number of items in cart $total_items = 0; if (is_array($this->contents)) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { $total_items += $this->get_quantity($products_id); } } return $total_items; } function get_quantity($products_id) { if (isset($this->contents[$products_id])) { return $this->contents[$products_id]['qty']; } else { return 0; } } function in_cart($products_id) { if (isset($this->contents[$products_id])) { return true; } else { return false; } } function remove($products_id) { global $customer_id; unset($this->contents[$products_id]); // remove from database if (tep_session_is_registered('customer_id')) { tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "'"); tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where customers_id = '" . (int)$customer_id . "' and products_id = '" . tep_db_input($products_id) . "'"); } // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } function remove_all() { $this->reset(); } function get_product_id_list() { $product_id_list = ''; if (is_array($this->contents)) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { $product_id_list .= ', ' . $products_id; } } return substr($product_id_list, 2); } function calculate() { $this->total = 0; $this->weight = 0; if (!is_array($this->contents)) return 0; reset($this->contents); while (list($products_id, ) = each($this->contents)) { $qty = $this->contents[$products_id]['qty']; // products price $product_query = tep_db_query("select products_id, products_price, products_tax_class_id, products_weight from " . TABLE_PRODUCTS . " where products_id = '" . (int)$products_id . "'"); if ($product = tep_db_fetch_array($product_query)) { $prid = $product['products_id']; $products_tax = tep_get_tax_rate($product['products_tax_class_id']); $products_price = $product['products_price']; $products_cost = $product['products_cost']; $products_weight = $product['products_weight']; // BOF AUCTIONS if( isset($this->contents[$products_id]['auction_id']) && $this->contents[$products_id]['auction_id'] > '0' ){ $this->total += $currencies->calculate_price($this->contents[$products_id]['auction_price'], $products_tax, '1'); } // EOF AUCTIONS //GroupDiscount start global $customer_id; $query = tep_db_query("select g.customers_groups_discount from " . TABLE_CUSTOMERS_GROUPS . " g inner join " . TABLE_CUSTOMERS . " c on g.customers_groups_id = c.customers_groups_id and c.customers_id = '" . $customer_id . "'"); $query_result = tep_db_fetch_array($query); $customer_discount = $query_result['customers_groups_discount']; if (strstr($customer_discount, "+") != null) { $products_price = $products_price + $products_price * abs($customer_discount) / 100; } else { $products_price = $products_price - $products_price * abs($customer_discount) / 100; } //GroupDiscount end $specials_query = tep_db_query("select specials_new_products_price from " . TABLE_SPECIALS . " where products_id = '" . (int)$prid . "' and status = '1'"); if (tep_db_num_rows ($specials_query)) { $specials = tep_db_fetch_array($specials_query); $products_price = $specials['specials_new_products_price']; } $this->total += tep_add_tax($products_price, $products_tax) * $qty; $this->weight += ($qty * $products_weight); } // attributes price if (isset($this->contents[$products_id]['attributes'])) { reset($this->contents[$products_id]['attributes']); while (list($option, $value) = each($this->contents[$products_id]['attributes'])) { $attribute_price_query = tep_db_query("select options_values_price, price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " where products_id = '" . (int)$prid . "' and options_id = '" . (int)$option . "' and options_values_id = '" . (int)$value . "'"); $attribute_price = tep_db_fetch_array($attribute_price_query); //GroupDiscount start global $customer_id; $query = tep_db_query("select g.customers_groups_discount from " . TABLE_CUSTOMERS_GROUPS . " g inner join " . TABLE_CUSTOMERS . " c on g.customers_groups_id = c.customers_groups_id and c.customers_id = '" . $customer_id . "'"); $query_result = tep_db_fetch_array($query); $customer_discount = $query_result['customers_groups_discount']; if (strstr($customer_discount, "+") != null) { $attribute_price['options_values_price'] = $attribute_price['options_values_price'] + $attribute_price['options_values_price'] * abs($customer_discount) / 100; } else { $attribute_price['options_values_price'] = $attribute_price['options_values_price'] - $attribute_price['options_values_price'] * abs($customer_discount) / 100; } //GroupDiscount end if ($attribute_price['price_prefix'] == '+') { $this->total += $qty * tep_add_tax($attribute_price['options_values_price'], $products_tax); } else { $this->total -= $qty * tep_add_tax($attribute_price['options_values_price'], $products_tax); } } } } } function attributes_price($products_id) { $attributes_price = 0; if (isset($this->contents[$products_id]['attributes'])) { reset($this->contents[$products_id]['attributes']); while (list($option, $value) = each($this->contents[$products_id]['attributes'])) { $attribute_price_query = tep_db_query("select options_values_price, price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " where products_id = '" . (int)$products_id . "' and options_id = '" . (int)$option . "' and options_values_id = '" . (int)$value . "'"); $attribute_price = tep_db_fetch_array($attribute_price_query); //GroupDiscount start global $customer_id; $query = tep_db_query("select g.customers_groups_discount from " . TABLE_CUSTOMERS_GROUPS . " g inner join " . TABLE_CUSTOMERS . " c on g.customers_groups_id = c.customers_groups_id and c.customers_id = '" . $customer_id . "'"); $query_result = tep_db_fetch_array($query); $customer_discount = $query_result['customers_groups_discount']; if (strstr($customer_discount, "+") != null) { $attribute_price['options_values_price'] = $attribute_price['options_values_price'] + $attribute_price['options_values_price'] * abs($customer_discount) / 100; } else { $attribute_price['options_values_price'] = $attribute_price['options_values_price'] - $attribute_price['options_values_price'] * abs($customer_discount) / 100; } //GroupDiscount end if ($attribute_price['price_prefix'] == '+') { $attributes_price += $attribute_price['options_values_price']; } else { $attributes_price -= $attribute_price['options_values_price']; } } } return $attributes_price; } function get_products() { global $languages_id; if (!is_array($this->contents)) return false; $products_array = array(); reset($this->contents); while (list($products_id, ) = each($this->contents)) { $products_query = tep_db_query("select p.products_id, pd.products_name, p.products_model, p.products_image, p.products_price, p.products_cost, p.products_weight, p.products_tax_class_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$products_id . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); if ($products = tep_db_fetch_array($products_query)) { $prid = $products['products_id']; $products_price = $products['products_price']; //GroupDiscount start global $customer_id; $query = tep_db_query("select g.customers_groups_discount from " . TABLE_CUSTOMERS_GROUPS . " g inner join " . TABLE_CUSTOMERS . " c on g.customers_groups_id = c.customers_groups_id and c.customers_id = '" . $customer_id . "'"); $query_result = tep_db_fetch_array($query); $customer_discount = $query_result['customers_groups_discount']; if (strstr($customer_discount, "+") != null) { $products_price = $products_price + $products_price * abs($customer_discount) / 100; } else { $products_price = $products_price - $products_price * abs($customer_discount) / 100; } //GroupDiscount end $specials_query = tep_db_query("select specials_new_products_price from " . TABLE_SPECIALS . " where products_id = '" . (int)$prid . "' and status = '1'"); if (tep_db_num_rows($specials_query)) { $specials = tep_db_fetch_array($specials_query); $products_price = $specials['specials_new_products_price']; } // BOF AUCTIONS if( isset($this->contents[$products_id]['auction_id']) && $this->contents[$products_id]['auction_id'] > '0' ){ $auction_price = $this->contents[$products_id]['auction_price']; } else $auction_price = 'false'; //EOF AUCTIONS $products_array[] = array('id' => $products_id, 'name' => $products['products_name'], 'model' => $products['products_model'], 'image' => $products['products_image'], 'price' => $products_price, 'cost' => $products['products_cost'], 'quantity' => $this->contents[$products_id]['qty'], 'weight' => $products['products_weight'], 'final_price' => ($products_price + $this->attributes_price($products_id)), // BOF AUCTIONS 'auctions_price' => $auction_price, // EOF AUCTIONS 'tax_class_id' => $products['products_tax_class_id'], 'attributes' => (isset($this->contents[$products_id]['attributes']) ? $this->contents[$products_id]['attributes'] : '')); } } return $products_array; } function show_total() { $this->calculate(); return $this->total; } function show_weight() { $this->calculate(); return $this->weight; } function generate_cart_id($length = 5) { return tep_create_random_value($length, 'digits'); } function get_content_type() { $this->content_type = false; if ( (DOWNLOAD_ENABLED == 'true') && ($this->count_contents() > 0) ) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { if (isset($this->contents[$products_id]['attributes'])) { reset($this->contents[$products_id]['attributes']); while (list(, $value) = each($this->contents[$products_id]['attributes'])) { $virtual_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_ATTRIBUTES_DOWNLOAD . " pad where pa.products_id = '" . (int)$products_id . "' and pa.options_values_id = '" . (int)$value . "' and pa.products_attributes_id = pad.products_attributes_id"); $virtual_check = tep_db_fetch_array($virtual_check_query); if ($virtual_check['total'] > 0) { switch ($this->content_type) { case 'physical': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'virtual'; break; } } else { switch ($this->content_type) { case 'virtual': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'physical'; break; } } } } else { switch ($this->content_type) { case 'virtual': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'physical'; break; } } } } else { $this->content_type = 'physical'; } return $this->content_type; } function unserialize($broken) { for(reset($broken);$kv=each($broken);) { $key=$kv['key']; if (gettype($this->$key)!="user function") $this->$key=$kv['value']; } } } ?> I hope someone can help me out. I'm close to give up. I checked the installation a couple of times, and can't find any installation errors. Does anyone use the AuctionTastic on a OSC 2.2MS2 without problems??? Regards Lars
  14. Hi, I have same problem - any solution for this? I'm using Group Discount contribtion as well and this really makes some strage things to AuctionTastic. If custemer has a speciel discount - lets say 10% - then the starting bid will go below starting price and the overbid amount will be reduced as well. Don't have the knowledge to solce this. Anyone? Regards Lars
  15. Hi, What's the outcome of this issue? What's right and what's wrong?? Regards Lars
  16. What changes did you have to make for working on old OSC? I installed AuctionTastic on OSC 2.2MS2 and this is causing problems. Do you have list of the changes you need to do to make it work? Regards Lars
  17. Had a look to the support thread - but no help found. I'm running the AuctionTastic on OSC 2.2MS2. I started testing the contrib, and found that admin site seams to work but shopsite has problems. I made an auction and a test account and started bidding. When I got into my shopping cart this error comes up: Fatal error: Call to a member function calculate_price() on a non-object in /var/www/www.dinmc.dk/www/catalog/includes/classes/shopping_cart.php on line 228 Any ideas?? Regards Lars
  18. Hi, There seams to be some problem when using the AuctionTastic on a OSC 2.2MS2 installation. This piece of code does not work in OSC 2.2MS: // BOF AUCTIONS if( isset($this->contents[$products_id]['auction_id']) && $this->contents[$products_id]['auction_id'] > '0' ){ $this->total += $currencies->calculate_price($this->contents[$products_id]['auction_price'], $products_tax, '1'); } // EOF AUCTIONS ...anyone know what should be replaced?? What other issues could I get when using uctionTastic on a OSC 2.2MS2 installation?? Anyone knows?? Regards Lars
  19. Hi. Something goes wrong with the danish letter. They either disappear or look very strange!!

    Regards

    Lars

  20. Hi, I setup the version 3.1 and everything looks OK until I press "Quick-Stock-Updater" in the Admin Catalog menu, then I get this error. I'm using OSC 2.2MS i danish. I added information in the danish laungege file - but I try to change to english, but I get the same failure " Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/www.dinmc.dk/www/catalog/admin/quick_stockupdate.php:13) in /var/www/www.dinmc.dk/www/catalog/admin/includes/functions/sessions.php on line 67 Any good hints how to solve this. By the way - I have more than 1300 partnumbers in the shop - will this be a problem?? Regards Lars
  21. Hi, Just installed the Margin Report 3.00a and it's really great piece of software. I like it. But I have some ideas to ekstra functions that would make it even better. But I'm not PHP programmer - but mayby someone can help! 1. Would be nice if "amout of product" would be exported til Excel as well - then it could be used to calculate complete stockvalue of all the parts in stock 2. To make an import bottom. The exported Excel file could be edited in excel with correct prices and how many in stock of each part - and after the update the excel file could be imported back to Oscommerce. Could anyone do this add?? What would be the cost to make this update for the Margin Report 3.00a?? Regards Lars
  22. Hi. I'm using the Automatic Thumbnail Creator v1.0 contribution, but since the latest update for GD Lib, it will not work any longer. Tryed to read the information http://bugs.php.net/bug.php?id=35060 , but it can't find out how to solve the problem. Please help. I really don't knoe about PHP-coding. Regards Lars
  23. Have same problem, but my problem was NOT solved removing the language files I'm not using. It's a great contribution, but this problem is very strange!! Hope someone can really find the error!! Best Regard Lars
  24. I have setup this great "Order Editor" contribution, http://www.oscommerce.com/community/contributions,1435 and made a danish translation for it. I works, but when adding products to an existing order, some products in the shop is not visible in the "add products"- menu. Blank fields will be in the dropdown menu's. Any that has a sollution to this problem??
×
×
  • Create New...