Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

costas

Users
  
  • Posts

    2,822
  • Joined

  • Last visited

Everything posted by costas

  1. Вероятнее всего проблемы с дисковым пространством на хостинге, посмотрите сколько у Вас свободного места на диске.
  2. в файле catalog/model/catalog/product.php в методе public function getLatestProducts($limit) { это: $query = $this->db->query("SELECT p.product_id FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id= p2s.product_id) WHERE p.status = '1' AND p.date_available <= '" . $this->NOW . "' AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY p.date_added DESC LIMIT " . (int)$limit); заменить на $query = $this->db->query("SELECT p.product_id FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id= p2s.product_id) WHERE p.status = '1' AND p.date_available <= '" . $this->NOW . "' AND p.quantity > 0 AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY p.date_added DESC LIMIT " . (int)$limit);
  3. CSV файл с разделителями, формат категорий имеет свои разделители, если в названии категории встречается этот разделитель то само собой будут проблемы.
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.