Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kep@

Members
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by kep@

  1. kep@

    Country

    Respected Serbia is missing from the list of countries I hope you can add in the new version.
  2. @raiwa Can you help me osCommerce Online Merchant v2.3.4.1 CE PHP Version: 7.2.34 (Zend: 3.2.0) Display_tax_info_V3.5 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 Return http error 500 bt_price_display.php
  3. 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]
  4. I used version 3.5 to see if it was correct or to use another version
  5. 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
  6. FILENAME_PRODUCT_INFO replace with 'product_info.php'
  7. I reworked everything and everything is neatly displayed where it should be, but when I click on the link, I get the next link. http://localhost/new/FILENAME_PRODUCT_INFO?products_id=35
  8. A big thank you. That's it. Problem fixed.
  9. 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 line57Warning: 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 line57Warning: 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?
  10. 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.
  11. With original Gallery modul set 1555 pop up not works reverted to 155 pop up not works original_gallery_1555.jpg
  12. 1 image = 155-Original.jpg 2 image = 155.jpg 3 image = 1555.jpg
  13. 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
  14. The problem is a real change in value in the colorbox modul.
  15. When I changed the value of 155 to any other I got the problem that when I return to 155 I can no longer enlarge the image.
  16. Unfortunately it did not help. Shows 11 images 1 basic + 10 additional
  17. 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
  18. Hello everyone PC Pro Creator is an excellent The only problem that I encountered is: prduct_list.php does not display correctly price products that are on special offer
×
×
  • Create New...