Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

multimixer

Members
  • Posts

    4,733
  • Joined

  • Last visited

  • Days Won

    72

Posts posted by multimixer

  1. 1) Each image should have a unique name, otherwise the next one you upload will overwrite he previous one. They all go to the same folder

     

    2) Just uploading images via FTP (as I guess you did after renaming the images - not clear what you mean with "reinstall") doesn't work, because the "system", the database, doesn't now what image belong to what product.

     

    You need to upload each image for each product separately via admin. In that way the system creates a record in the database that say "image xy.jpg belong to product abc

  2. @@fuchuangxin

     

    this error has nothing to do with the option types addon. It comes from a module (product_specials.php) that is not standard osCommerce, possibly an addon or part of the template you have.

     

    However, it is looking to find a function (tep_get_sub_categories()) that is missing from your installation. I suggest you to seek help for this error either at the addon topic or the template seller, or open a new topic in the forum

  3. Here you go

      // BOF Option types v2 Because of Text and Upload options, $option AND $value don't have to be numeric!
      /*
      if (is_array($attributes) && !empty($attributes)) {
        reset($attributes);
        while (list($option, $value) = each($attributes)) {
    	  if (!is_numeric($option) || !is_numeric($value)) {
    	    $attributes_pass_check = false;
    	    break;
    	  } else {
    	    $check_query = tep_db_query("select products_attributes_id from " . TABLE_PRODUCTS_ATTRIBUTES . " where products_id = '" . (int)$products_id . "' and options_id = '" . (int)$option . "' and options_values_id = '" . (int)$value . "' limit 1");
    	    if (tep_db_num_rows($check_query) < 1) {
    		  $attributes_pass_check = false;
    		  break;
    	    }
    	  }
        } // end while
      } elseif (tep_has_product_attributes($products_id)) {
        $attributes_pass_check = false;
      }
      */
      // EOF Option types v2 Because of Text and Upload options, $option AND $value don't have to be numeric!
      if (is_numeric($products_id) && is_numeric($qty) && ($attributes_pass_check == true)) {
        $check_product_query = tep_db_query("select products_status from " . TABLE_PRODUCTS . " where products_id = '" . (int)$products_id . "'");
        $check_product = tep_db_fetch_array($check_product_query);
        if (($check_product !== false) && ($check_product['products_status'] == '1')) {
    	  if ($notify == true) {
    	    $new_products_id_in_cart = $products_id;
    	    tep_session_register('new_products_id_in_cart');
    	  }
    

  4. Well, Jack was right, STS could cause maybe a small delay in pageload, but not something really significant

     

    The fact that your site runs on their server faster than on yours may say something about the server but not about the website speed. An other regular website of you would run even faster on their server.

     

    Fact is that your site became slow after their modifications. Do you have a list of what exactly they did? Did STS got installed by them? I hope you have a documentation

     

    Are you sure that not any external files (eg from their server) get loaded to your site?

     

    Is this the only site that has STS?

     

    Finally, it would help to see the site

  5. 1) This addon will drop anyones "configuration_group" table and replace it with the default groups (1 to 15) in 2 languages, english and german. In case you have any other data added to that table, it will get lost. Be careful !

     

    2) The addon work under the assumption that you have to languages installed, german and english and that german has language_id=1 and english language_id=2. If you have any other language setup (eg english has language_id=1), it will probably not do exactly what you expect. Since osCommerce 2.3.1 install english by default with a language id of 1, and any other language will have a language id of 2 (like german) this is what will happen in most of the cases

  6. The main part of osCommerce is not constructed using grids

     

    It looks basically like this:

     

    grid_4 (left column) ---- grid_16 (middle part) ---- grid_4 (right column)

     

    In case of only 1 column, it adjust automatically like this

     

    grid_4 (left column) ---- grid_20 (middle part)

     

    That mean, that you need to know in advance how many columns you plan to use, so you know what grid you are in, a 16 or a 20, I mean in case you want to use the grid system within the main content part

  7. @@maritrench

     

    Most possible is that you did some mistake during installation, something like a systax error etc, that you cant see because you have error reporting off

     

    Go through all files and check again each step

     

    If you have a blank page everywhere, then possible pages to check first are

    includes/application_top.php

    includes/classes/shopping_cart.php

  8. @@CrazyCarzCustoms

     

    Well, bad news: the last one who uploaded anything to this addon was me and this was 2,5 years ago

     

    The addon is not compatible with version 2.3.1 and in my eyes it is not worth to convert it. There are more modern solutions available now

     

    What you need is an addon that will convert your categories structure into an unordered list, from there on you can use any css or js on it, there are many tutorilas all over the internet

  9. Well, your developer is partially right: a good part of the addons are made by hobby programmers, have coding mistakes or in the best case bad practices, a big part has no support etc

     

    At the other hand, they are not meant to be used by developers. They are meant for store owners who would not be able to create any functionality themselves

     

    A developer don't need to follow any addon practices "blind" and it's his own decision to use a particular addon as is, to use it as a base for his own modifications or not to use it at all and create his own functionality

     

    For sure you can't say that none of the addons work. Your developers statement is insulting for all those people who delivered and keep delivering quality addons, there are 1000's of stores working with them

     

    Regarding the statement "Use at your own risk", yes that is true, this is for all addons, even for osCommerce it self

     

    In any case, your developer need to deliver a solution and make sure that this solution work. You don't care if he'll use an addon or what exactly he will do. You have a need, developer should cover the need and make sure that there is "no risk"

     

    I don't know your exact agreement with your developer and why he don't do what you need.

     

    However, right now there are 2 options

    - you learn to do this kind of things your self

    - you pay somebody else for this (in this case you can post to the commercial support section o the forum)

     

    About how to create a copy of your store, there are several topics that cover this, it's the same procedure like moving the store from one host to an other, or for installing the store on xampp etc, you can use that keywords for searching

×
×
  • Create New...