Перейти к публикации
Поиск в
  • Дополнительно...
Искать результаты, содержащие...
Искать результаты в...

klimbronin

Новичок
  
  • Публикаций

    9
  • Зарегистрирован

  • Посещение

Посетители профиля

697 просмотров профиля

Достижения klimbronin

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In

Последние медали

4

Репутация

  1. если хочешь могу на сайте у тебя поправить или скинь свой filemanager.php, чтобы сравнить и посмотреть из-за чего может быть ошибка
  2. https://opencartforum.com/topic/58831-%D0%BC%D0%B5%D0%BD%D0%B5%D0%B4%D0%B6%D0%B5%D1%80-%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D0%B9/ в аналогичную тему выложил как код поменять, чтобы папка запоминалась
  3. Кому поможет отписывайтесь - на какой версии помогло. Перед изменениями на всякий случай создайте копию изменяемого файла.
  4. Помощь - надо внести изменения в файл admin\controller\common\filemanager.php. Изменения пометил комментариями на русском. Можно в Notepad++ открыть, выставить синтаксис PHP и посмотреть (комментарии буду зелёным выделены). Если не получится, то возможно из-за другой версии, я на версии 2.0.3.1 исправлял. В этом случае могу у тебя на сайте поправить. <?php class ControllerCommonFileManager extends Controller { public function index() { $this->load->language('common/filemanager'); if (isset($this->request->get['filter_name'])) { $filter_name = rtrim(str_replace(array('../', '..\\', '..', '*'), '', $this->request->get['filter_name']), '/'); } else { $filter_name = null; } // Make sure we have the correct directory // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $directory = rtrim(DIR_IMAGE . 'catalog/' . str_replace(array('../', '..\\', '..'), '', $this->request->get['directory']), '/'); } else { $directory = DIR_IMAGE . 'catalog'; } */ // НОВЫЙ КОД. НАЧАЛО $path = null; if (isset($this->request->get['directory'])) { $path = $this->request->get['directory']; setcookie("LAST_DIR", $path, time()+3600); $directory = rtrim(DIR_IMAGE . 'catalog/' . str_replace(array('../', '..\\', '..'), '', $path), '/'); } else if (isset($_COOKIE['LAST_DIR'])) { $path = $_COOKIE['LAST_DIR']; $directory = rtrim(DIR_IMAGE . 'catalog/' . str_replace(array('../', '..\\', '..'), '', $path), '/'); if(!is_dir($directory)) { $path = null; $directory = DIR_IMAGE . 'catalog'; } } else { $directory = DIR_IMAGE . 'catalog'; } // НОВЫЙ КОД. КОНЕЦ if (isset($this->request->get['page'])) { $page = $this->request->get['page']; } else { $page = 1; } $data['images'] = array(); $this->load->model('tool/image'); // Get directories $directories = glob($directory . '/' . $filter_name . '*', GLOB_ONLYDIR); if (!$directories) { $directories = array(); } // Get files $files = glob($directory . '/' . $filter_name . '*.{jpg,jpeg,png,gif,JPG,JPEG,PNG,GIF}', GLOB_BRACE); if (!$files) { $files = array(); } // Merge directories and files $images = array_merge($directories, $files); // Get total number of files and directories $image_total = count($images); // Split the array based on current page number and max number of items per page of 10 $images = array_splice($images, ($page - 1) * 16, 16); foreach ($images as $image) { $name = str_split(basename($image), 14); if (is_dir($image)) { $url = ''; if (isset($this->request->get['target'])) { $url .= '&target=' . $this->request->get['target']; } if (isset($this->request->get['thumb'])) { $url .= '&thumb=' . $this->request->get['thumb']; } $data['images'][] = array( 'thumb' => '', 'name' => implode(' ', $name), 'type' => 'directory', 'path' => utf8_substr($image, utf8_strlen(DIR_IMAGE)), 'href' => $this->url->link('common/filemanager', 'token=' . $this->session->data['token'] . '&directory=' . urlencode(utf8_substr($image, utf8_strlen(DIR_IMAGE . 'catalog/'))) . $url, 'SSL') ); } elseif (is_file($image)) { // Find which protocol to use to pass the full image link back if ($this->request->server['HTTPS']) { $server = HTTPS_CATALOG; } else { $server = HTTP_CATALOG; } $data['images'][] = array( 'thumb' => $this->model_tool_image->resize(utf8_substr($image, utf8_strlen(DIR_IMAGE)), 100, 100), 'name' => implode(' ', $name), 'type' => 'image', 'path' => utf8_substr($image, utf8_strlen(DIR_IMAGE)), 'href' => $server . 'image/' . utf8_substr($image, utf8_strlen(DIR_IMAGE)) ); } } $data['heading_title'] = $this->language->get('heading_title'); $data['text_no_results'] = $this->language->get('text_no_results'); $data['text_confirm'] = $this->language->get('text_confirm'); $data['entry_search'] = $this->language->get('entry_search'); $data['entry_folder'] = $this->language->get('entry_folder'); $data['button_parent'] = $this->language->get('button_parent'); $data['button_refresh'] = $this->language->get('button_refresh'); $data['button_upload'] = $this->language->get('button_upload'); $data['button_folder'] = $this->language->get('button_folder'); $data['button_delete'] = $this->language->get('button_delete'); $data['button_search'] = $this->language->get('button_search'); $data['token'] = $this->session->data['token']; // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $data['directory'] = urlencode($this->request->get['directory']); } else { $data['directory'] = ''; } */ // НОВЫЙ КОД - одна нижестоящая строка $data['directory'] = $directory; if (isset($this->request->get['filter_name'])) { $data['filter_name'] = $this->request->get['filter_name']; } else { $data['filter_name'] = ''; } // Return the target ID for the file manager to set the value if (isset($this->request->get['target'])) { $data['target'] = $this->request->get['target']; } else { $data['target'] = ''; } // Return the thumbnail for the file manager to show a thumbnail if (isset($this->request->get['thumb'])) { $data['thumb'] = $this->request->get['thumb']; } else { $data['thumb'] = ''; } // Parent $url = ''; // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $pos = strrpos($this->request->get['directory'], '/'); if ($pos) { $url .= '&directory=' . urlencode(substr($this->request->get['directory'], 0, $pos)); } } */ // НОВЫЙ КОД. НАЧАЛО if($path){ $pos = strrpos($path, '/'); if ($pos) { $url .= '&directory=' . urlencode(substr($path, 0, $pos)); } } // НОВЫЙ КОД. КОНЕЦ if (isset($this->request->get['target'])) { $url .= '&target=' . $this->request->get['target']; } if (isset($this->request->get['thumb'])) { $url .= '&thumb=' . $this->request->get['thumb']; } $data['parent'] = $this->url->link('common/filemanager', 'token=' . $this->session->data['token'] . $url, 'SSL'); // Refresh $url = ''; // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $url .= '&directory=' . urlencode($this->request->get['directory']); } */ // НОВЫЙ КОД. НАЧАЛО if ($path) { $url .= '&directory=' . urlencode($path); } // НОВЫЙ КОД. КОНЕЦ if (isset($this->request->get['target'])) { $url .= '&target=' . $this->request->get['target']; } if (isset($this->request->get['thumb'])) { $url .= '&thumb=' . $this->request->get['thumb']; } $data['refresh'] = $this->url->link('common/filemanager', 'token=' . $this->session->data['token'] . $url, 'SSL'); $url = ''; // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $url .= '&directory=' . urlencode(html_entity_decode($this->request->get['directory'], ENT_QUOTES, 'UTF-8')); } */ // НОВЫЙ КОД. НАЧАЛО if ($path) { $url .= '&directory=' . urlencode(html_entity_decode($path, ENT_QUOTES, 'UTF-8')); } // НОВЫЙ КОД. КОНЕЦ if (isset($this->request->get['filter_name'])) { $url .= '&filter_name=' . urlencode(html_entity_decode($this->request->get['filter_name'], ENT_QUOTES, 'UTF-8')); } if (isset($this->request->get['target'])) { $url .= '&target=' . $this->request->get['target']; } if (isset($this->request->get['thumb'])) { $url .= '&thumb=' . $this->request->get['thumb']; } $pagination = new Pagination(); $pagination->total = $image_total; $pagination->page = $page; $pagination->limit = 16; $pagination->url = $this->url->link('common/filemanager', 'token=' . $this->session->data['token'] . $url . '&page={page}', 'SSL'); $data['pagination'] = $pagination->render(); $this->response->setOutput($this->load->view('common/filemanager.tpl', $data)); } public function upload() { $this->load->language('common/filemanager'); $json = array(); // Check user has permission if (!$this->user->hasPermission('modify', 'common/filemanager')) { $json['error'] = $this->language->get('error_permission'); } // Make sure we have the correct directory // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $directory = rtrim(DIR_IMAGE . 'catalog/' . str_replace(array('../', '..\\', '..'), '', $this->request->get['directory']), '/'); } else { $directory = DIR_IMAGE . 'catalog'; } */ // НОВЫЙ КОД. НАЧАЛО if (isset($this->request->get['directory'])) { $directory = $this->request->get['directory']; } else { $directory = DIR_IMAGE . 'catalog'; } // НОВЫЙ КОД. КОНЕЦ // Check its a directory if (!is_dir($directory)) { $json['error'] = $this->language->get('error_directory'); } if (!$json) { if (!empty($this->request->files['file']['name']) && is_file($this->request->files['file']['tmp_name'])) { // Sanitize the filename $filename = basename(html_entity_decode($this->request->files['file']['name'], ENT_QUOTES, 'UTF-8')); // Validate the filename length if ((utf8_strlen($filename) < 3) || (utf8_strlen($filename) > 255)) { $json['error'] = $this->language->get('error_filename'); } // Allowed file extension types $allowed = array( 'jpg', 'jpeg', 'gif', 'png' ); if (!in_array(utf8_strtolower(utf8_substr(strrchr($filename, '.'), 1)), $allowed)) { $json['error'] = $this->language->get('error_filetype'); } // Allowed file mime types $allowed = array( 'image/jpeg', 'image/pjpeg', 'image/png', 'image/x-png', 'image/gif' ); if (!in_array($this->request->files['file']['type'], $allowed)) { $json['error'] = $this->language->get('error_filetype'); } // Check to see if any PHP files are trying to be uploaded $content = file_get_contents($this->request->files['file']['tmp_name']); if (preg_match('/\<\?php/i', $content)) { $json['error'] = $this->language->get('error_filetype'); } // Return any upload error if ($this->request->files['file']['error'] != UPLOAD_ERR_OK) { $json['error'] = $this->language->get('error_upload_' . $this->request->files['file']['error']); } } else { $json['error'] = $this->language->get('error_upload'); } } if (!$json) { move_uploaded_file($this->request->files['file']['tmp_name'], $directory . '/' . $filename); $json['success'] = $this->language->get('text_uploaded'); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } public function folder() { $this->load->language('common/filemanager'); $json = array(); // Check user has permission if (!$this->user->hasPermission('modify', 'common/filemanager')) { $json['error'] = $this->language->get('error_permission'); } // Make sure we have the correct directory // ТУТ ЗАКОММЕНТИРОВАН СТАРЫЙ КОД (/* - начало, */ - конец комментария) /* if (isset($this->request->get['directory'])) { $directory = rtrim(DIR_IMAGE . 'catalog/' . str_replace(array('../', '..\\', '..'), '', $this->request->get['directory']), '/'); } else { $directory = DIR_IMAGE . 'catalog'; } */ // НОВЫЙ КОД. НАЧАЛО if (isset($this->request->get['directory'])) { $directory = $this->request->get['directory']; } else { $directory = DIR_IMAGE . 'catalog'; } // НОВЫЙ КОД. КОНЕЦ // Check its a directory if (!is_dir($directory)) { $json['error'] = $this->language->get('error_directory'); } if (!$json) { // Sanitize the folder name $folder = str_replace(array('../', '..\\', '..'), '', basename(html_entity_decode($this->request->post['folder'], ENT_QUOTES, 'UTF-8'))); // Validate the filename length if ((utf8_strlen($folder) < 3) || (utf8_strlen($folder) > 128)) { $json['error'] = $this->language->get('error_folder'); } // Check if directory already exists or not if (is_dir($directory . '/' . $folder)) { $json['error'] = $this->language->get('error_exists'); } } if (!$json) { mkdir($directory . '/' . $folder, 0777); $json['success'] = $this->language->get('text_directory'); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } public function delete() { $this->load->language('common/filemanager'); $json = array(); // Check user has permission if (!$this->user->hasPermission('modify', 'common/filemanager')) { $json['error'] = $this->language->get('error_permission'); } if (isset($this->request->post['path'])) { $paths = $this->request->post['path']; } else { $paths = array(); } // Loop through each path to run validations foreach ($paths as $path) { $path = rtrim(DIR_IMAGE . str_replace(array('../', '..\\', '..'), '', $path), '/'); // Check path exsists if ($path == DIR_IMAGE . 'catalog') { $json['error'] = $this->language->get('error_delete'); break; } } if (!$json) { // Loop through each path foreach ($paths as $path) { $path = rtrim(DIR_IMAGE . str_replace(array('../', '..\\', '..'), '', $path), '/'); // If path is just a file delete it if (is_file($path)) { unlink($path); // If path is a directory beging deleting each file and sub folder } elseif (is_dir($path)) { $files = array(); // Make path into an array $path = array($path . '*'); // While the path array is still populated keep looping through while (count($path) != 0) { $next = array_shift($path); foreach (glob($next) as $file) { // If directory add to path array if (is_dir($file)) { $path[] = $file . '/*'; } // Add the file to the files to be deleted array $files[] = $file; } } // Reverse sort the file array rsort($files); foreach ($files as $file) { // If file just delete if (is_file($file)) { unlink($file); // If directory use the remove directory function } elseif (is_dir($file)) { rmdir($file); } } } } $json['success'] = $this->language->get('text_delete'); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } }
  5. catalog\language\russian\russian.php или catalog\language\english\english.php добавить строчку $_['button_pre_order'] = 'Под заказ'; catalog\controller\product\product.php или system\modification\catalog\controller\product\product.php 1) после строки $data['button_cart'] = $this->language->get('button_cart'); добавить строку $data['button_pre_order'] = $this->language->get('button_pre_order'); 2) после блока $data['product_id'] = (int)$this->request->get['product_id']; $data['manufacturer'] = $product_info['manufacturer']; $data['manufacturers'] = $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $product_info['manufacturer_id']); $data['model'] = $product_info['model']; $data['upc'] = $product_info['upc']; $data['ean'] = $product_info['ean']; $data['jan'] = $product_info['jan']; $data['isbn'] = $product_info['isbn']; $data['mpn'] = $product_info['mpn']; $data['reward'] = $product_info['reward']; $data['points'] = $product_info['points']; добавить строку $data['quantity'] = $product_info['quantity']; // это количество товара catalog\view\theme\default\template\product\product.tpl или system\modification\catalog\view\theme\default\template\product\product.tpl в строке <button type="button" id="button-cart" data-loading-text="<?php echo $text_loading; ?>" class="btn btn-primary btn-lg btn-block"><?php echo $button_cart; ?></button> заменяем кусок <?php echo $button_cart; ?> на <?php /* проверка наличия на складе */ if ($quantity <= 0) echo $button_pre_order; else echo $button_cart;?> Здесь на странице товара меняется кнопка В корзину на кнопку Под заказ, если товара нет на складе. Можно ещё на странице поиска, в категориях, в рекомендуемых товарах аналогично сделать
  6. в админке есть атрибуты. опции. можно их подвязывать к товару и таким образом выводить дополнительную нформацию. попробуйте сначала так, стандартными средствами. а вообще вопрос не конкретный вы лучше картинку набросайте какую информацию и в какую область хотите выводить . может стандартными средствами справитесь, может придётся ещё и макет (tpl) изменять.
  7. 1) наверно в код изменения вносили, или эти изменения появились после установки какого-либо модуля/расширения. В этом случае можно сайт через ftp выкачать и поиском пройтись по всем файлам, если что-то найдётся, то значит проблема в коде 2) на базе данных заданы значения по умолчанию для колонок. Можно phpMyAdmin на сайт через ftp закачать и посмотреть нужную таблицу. У вас на рисунке почему-то статья упоминается, у статьи таблица наверно oc_article. У товара таблица oc_product. oc_ - это префикс, он может быть и другим.
  8. Для товаров, которых на складе не осталось можно также, кнопку "В корзину" поменять на кнопку "Под заказ" Изменений в коде не так много, могу скинуть. Покрасивее будет и визуальнее.
  9. возможно достаточно увеличить количество атрибутов, предлагаемых при клике. По умолчанию предлагается всего 5. admin\controller\catalog\attribute.php - public function autocomplete() - 'limit' => 5, сделайте лимит 50 и скорее всего это решит вашу проблему
×
×
  • Создать...

Важная информация

На нашем сайте используются файлы cookie и происходит обработка некоторых персональных данных пользователей, чтобы улучшить пользовательский интерфейс. Чтобы узнать для чего и какие персональные данные мы обрабатываем перейдите по ссылке. Если Вы нажмете «Я даю согласие», это означает, что Вы понимаете и принимаете все условия, указанные в этом Уведомлении о Конфиденциальности.