Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kep@

Members
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by kep@

  1. When I install the module and plug it in content
    The following error occurs to me

    1146 - Table '... .TABLE_PRODUCTS' doesn't exist

    select p.products_id, pd.products_name, pd.products_seo_keywords, pd.products_seo_description, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.products_last_modified, p.manufacturers_id, p.products_gtin from TABLE_PRODUCTS p, TABLE_PRODUCTS_DESCRIPTION pd where p.products_status = '1' and p.products_id = '511' and pd.products_id = p.products_id and pd.language_id = '5'

    [TEP STOP]

  2. osCommerce Online Merchant v2.3.4.1 CE
    PHP Version 7.3.33

    When I install the module the site stops working.
    In error_log I get an error

    PHP Fatal error:  Cannot declare class currencies_mod, because the name is already in use in .../includes/modules/bootstrap/bt_price_display.php on line 63
     

    Is this possible to solve in some way
    I need in addition to the price without VAT to show me the price with VAT and what is the xx% VAT

  3. osCommerce Online Merchant v2.3.4.1 CE

    PHP 7.3.29

    https://apps.oscommerce.com/SPtCw&featured-products-content-module-bootst&v=23

     

    Warning: Use of undefined constant DIR_WS_MODULES - assumed 'DIR_WS_MODULES' (this will throw an Error in a future version of PHP) inD:\server\xampp\htdocs\new\includes\modules\content\index\cm_fp_featured_products.phpon line57

    Warning: include(DIR_WS_MODULEScontent/index/templates/cm_fp_featured_products.php): failed to open stream: No such file or directory inD:\server\xampp\htdocs\new\includes\modules\content\index\cm_fp_featured_products.phpon line57

    Warning: include(): Failed opening 'DIR_WS_MODULEScontent/index/templates/cm_fp_featured_products.php' for inclusion (include_path='D:\server\xampp\php\PEAR') inD:\server\xampp\htdocs\new\includes\modules\content\index\cm_fp_featured_products.phpon line57

     

    Does anyone have an idea?

  4. 17 hours ago, raiwa said:

    @kep@,

    Then your installation has an error. With my latest EDGE BS4 all works correct. This is not related to KissIt Image Thumbnail.

    Check if you have all related files copied. If you have applied any modification, revert it to original.

    Please post in a general support thread for further support

    Best regards
    Rainer

    Thank you so much for help
    I managed to find a solution.
    For some reason in setting up Colorbox
    Does not execute the entry in the database page to which the setting relates.
    Other information is normally entered and therefore a problem occurs.
    when you manually add the page name directly to the database.
    After that everything works perfectly.

    colorbox.jpg

  5. 5 hours ago, raiwa said:

    @kep@,

    There is something wrong with your setting/installation. Your 1555 screenshot shows 3 images in the first row and 7 in the second row.

    There is also no logic to show wrong if you revert to  155. You should not need to recover the database backup.

    Please try for any case with the original gallery module. If it has the same problem, then it is not related to KissIt Image Thumbnailer. Please recheck your installation.

    With original Gallery modul

    set 1555  pop up not works

    reverted to 155  pop up not works

    original_gallery_1555.jpg

    original_gallery_1555.jpg

  6. 5 hours ago, raiwa said:

    Just checked again:

    - set to 1555 => pop up works

    - reverted to 155 => pop up works

    Please explain with more details and maybe add screenshots.

    155-Original.jpg

    Export datebase

    Colorbox Script

    Set to 1555 > 1555.jpg     pop up not works

    reverted to 155 > 155.jpg     pop up not works

    Revert datebase 

    155-Original.jpg > pop up works

     

    155-Original.jpg

    155.jpg

    1555.jpg

  7. 34 minutes ago, raiwa said:

    @kep@, 

    KissIt has not yet been updated to EDGE BS4,

    if you are using it in EDGE BS 4 you should update the following:

    includes/functions/html_output.php

    line 143:

    
          $bs_parameters .= 'img-responsive';

    update to:

    
          $bs_parameters .= 'img-fluid';

     

    Unfortunately it did not help.
    Shows 11 images
    1 basic + 10 additional

  8. On 4/3/2019 at 1:29 PM, raiwa said:

    Hello  @vampirehunter,

    It will not display more than 10 images with me
    Here's the code for product_info.php
    This is the last Responsived version of github
    Responsive-osCommerce-master

     

    <?php
    /*
      $Id$
    
      osCommerce, Open Source E-Commerce Solutions
      http://www.oscommerce.com
    
      Copyright (c) 2018 osCommerce
    
      Released under the GNU General Public License
    */
    
      require('includes/application_top.php');
    
      if (!isset($_GET['products_id'])) {
        tep_redirect(tep_href_link('index.php'));
      }
    
      require('includes/languages/' . $language . '/product_info.php');
    
      $product_check_query = tep_db_query("select count(*) as total from products p, products_description pd where p.products_status = '1' and p.products_id = '" . (int)$_GET['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
      $product_check = tep_db_fetch_array($product_check_query);
    
      require('includes/template_top.php');
    
      if ($product_check['total'] < 1) {
    ?>
    
    <div class="contentContainer">
    
      <div class="row">
        <?php echo $oscTemplate->getContent('product_info_not_found'); ?>
      </div>
      
    </div>
    
    <?php
      } else {
        $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id, p.products_gtin from products p, products_description pd where p.products_status = '1' and p.products_id = '" . (int)$_GET['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
        $product_info = tep_db_fetch_array($product_info_query);
    
        tep_db_query("update products_description set products_viewed = products_viewed+1 where products_id = '" . (int)$_GET['products_id'] . "' and language_id = '" . (int)$languages_id . "'");
    
    ?>
    
    <?php echo tep_draw_form('cart_quantity', tep_href_link('product_info.php', tep_get_all_get_params(array('action')). 'action=add_product', 'NONSSL'), 'post', 'role="form"'); ?>
    
    <?php
      if ($messageStack->size('product_action') > 0) {
        echo $messageStack->output('product_action');
      }
    ?>
    
    <div class="contentContainer">
    
      <div class="row is-product">
        <?php echo $oscTemplate->getContent('product_info'); ?>
      </div>
    
    </div>
    
    </form>
    
    <?php
      }
      require('includes/template_bottom.php');
      require('includes/application_bottom.php');
    ?>

    I use the module Gallery KisssIt

    Please if some help is possible.
    The version I use is 2.8.1

×
×
  • Create New...