Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

wildball

Members
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by wildball

  1. Dear @raiwa! Thanks a lot for your Recently_Viewed_v5.1.3! I found a little error: Notice: Undefined variable: products_query_order in ../includes/modules/content/header/cm_header_recently_viewed.php on line 81 this line: $products_query = tep_db_query("SELECT DISTINCT " . $products_query_what . $products_query_from . $products_query_where . $products_query_order . " i fixed it to: $products_query = tep_db_query("SELECT DISTINCT " . $products_query_what . $products_query_from . $products_query_where . $recently_products_query_order . " i hope it's right. Best regards, Vladimir.
  2. @Fredi, i found one more file to change: Warning: Use of undefined constant DIR_FS_CATALOG_IMAGES - assumed 'DIR_FS_CATALOG_IMAGES' (this will throw an Error in a future version of PHP) in .../admin/includes/languages/russian/categories.php on line 88 Warning: Use of undefined constant DIR_FS_CATALOG_IMAGES - assumed 'DIR_FS_CATALOG_IMAGES' (this will throw an Error in a future version of PHP) in .../admin/includes/languages/russian/categories.php on line 89 so. there was define: define('ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Ошибка: Каталог с картинками имеет неверные права доступа: ' . DIR_FS_CATALOG_IMAGES); define('ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Ошибка: Каталог с картинками отсутствует: ' . DIR_FS_CATALOG_IMAGES); i fixed it to: const ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE = '<strong>Ошибка:</strong> Каталог с картинками имеет неверные права доступа: %s'; and const ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST = '<strong>Ошибка:</strong> Каталог с картинками отсутствует: %s';
  3. Thanks. By the way. there is a little notice too. 1: Notice: Undefined variable: other_img_indicator in ../includes/modules/content/product_info/templates/tpl_cm_pi_gallery_kissit.php on line 55 and 2: Notice: Undefined variable: other_img in ../includes/modules/content/product_info/templates/tpl_cm_pi_gallery_kissit.php on line 66 so i've fixed it by replace: $other_img_indicator = $other_img = null; from line 25 to line 12.
  4. @Fredi, I’m grateful for your language pack. for my configuration oscommerce version = 1.0.7.7 mysql version = 5.5.5-10.4.12-MariaDB php version = 7.4.3 there is a little warning in Admin index.php: Warning: Use of undefined constant DIR_FS_DOWNLOAD - assumed 'DIR_FS_DOWNLOAD' (this will throw an Error in a future version of PHP) in ../admin/includes/languages/russian/modules/security_check/download_directory.php on line 13 it's: define('WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT', 'Каталога для виртуальных (загружаемых) товаров не существует: ' . DIR_FS_DOWNLOAD . '. Загружаемые товары не будут работать пока эта директория не создана.'); so, i fix it: const WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT = 'Каталога для виртуальных (загружаемых) товаров не существует: [%s]. Загружаемые товары не будут работать пока эта директория не создана.';
  5. Dear @raiwa! Thanks a lot for your great work! for this configurtion: oscommerce version = 1.0.7.7 mysql version = 5.5.5-10.4.12-MariaDB php version = 7.4.3 The reset of cache does not work: Warning: Use of undefined constant DIR_FS_CATALOG_IMAGES - assumed 'DIR_FS_CATALOG_IMAGES' (this will throw an Error in a future version of PHP) in .../includes/hooks/admin/system/kiss_image_functions.php on line 38 So, i've checked: $dir = DIR_FS_CATALOG_IMAGES . KISSIT_THUMBS_MAIN_DIR; and fix it to: $dir = DIR_FS_CATALOG . 'images/' . KISSIT_THUMBS_MAIN_DIR; it will work right.
×
×
  • Create New...