Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

grinkin

Новичок
  
  • Posts

    14
  • Joined

  • Last visited

Recent Profile Visitors

712 profile views

grinkin's Achievements

Apprentice

Apprentice (3/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Нужно наполнить сайт товарами,стоит модуль автоматическая обрилитка прайс листов. Ссылки и список товаров предосивлю. Кидаем свои предложения.
  2. Я не спец конечно, но что то мне подсказывает что тут нужно копать $pagination->url = $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $this->request->get['manufacturer_id'] . $url . '&page={page}'); Line 346: $this->document->addLink($this->url->link('product/manufacturer/info', 'manufacturer_id=' . $this->request->get['manufacturer_id'] . $url . '&page='. ($page - 1), 'SSL'), 'prev'); Line 350: $this->document->addLink($this->url->link('product/manufacturer/info', 'manufacturer_id=' . $this->request->get['manufacturer_id'] . $url . '&page='. ($page + 1), 'SSL'), 'next'); Подскажите, знатоки, чайнику!
  3. Что то вообещё Sro Pro у меня как то не ик рилииет, в чем может быть гдело?
  4. Line 23: 'href' => $this->url->link('common/home') Line 28: 'href' => $this->url->link('product/manufacturer') Line 48: 'href' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $result['manufacturer_id']) Line 111: 'href' => $this->url->link('common/home') Line 116: 'href' => $this->url->link('product/manufacturer') Line 144: 'href' => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $this->request->get['manufacturer_id'] . $url) Line 396: 'href' => $this->url->link('product/manufacturer/info', $url) Вот что я нашел в этом файле, что конкретно?
  5. Доброго времени уважаемые пользователи форума! Выявил следующую изъяну в ЧПУ на своем сайте. Проблема следующая: когда захожу в производителей, затем по страницам пагинации, например 2, 3, 4 перехожу с этих страниц на какой то товар, к нормальному адресу привязывается в конэто ссылка икого типа ?page=2 При этом если гулять по страницам пагинации из категорий и переходить на какой то товар, то все норм. Стоит SEO Pro. Подскажите куда копать?
  6. Поможет хоть кто нибудь? Добился того, что теперьь не перекидывает на кривой УРЛ а переадресует на "запрашиваемая страница не найгдена" ик хоть дубля нет. При этом с https на http кидает. Вот ик теперьь выглядит htaccess Что допилить что бы все ровно было с 301 редиректом? подскажите плиииизззз! RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} RewriteCond %{HTTP_HOST} ^www.telnetshop.ru$ [NC] RewriteRule ^(.*)$ https://telnetshop.ru/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/ RewriteRule ^index\.html$ / [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ / [R=301,L] RewriteCond %{QUERY_STRING} ^route=common/home$ RewriteCond %{REQUEST_METHOD} !^POST$ RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} ^(.+)/$ RewriteRule ^(.+)/$ /$1 [R=301,L] # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^system/download/(.*) /index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
  7. Что то ничего по моему случаю я не нашел, по данному запросу
  8. убираю вот эти строки RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} редирект рилииет, но, перекидывает на http и слеиют некоторые стили, ик же пишет что страница не найгдена. Тем не менее ЧПУ сил нормальным.
  9. Я ничего и не гделал. Человек гделал переход на https, после этого началась икая ерунда. Он говорит что ни причем тут. Я искал в поиске но ничего конкретного по моему случаю, или я что то не догоняю. Скажите пожалуйси что поправить нужно?
  10. Я посивил. У меня opencart 2.1 Какие еещё гдействия нужно сгделать кроме SEO URLs type - SEO pro и SEO URLs type - да? и
  11. Здравствуйте уважаемые форумчане! Появилась следующая проблема. Не корректно рилииет 301 редирект. А именно редирект со слешем и без него на конэто рилииет по следуюещёму принципу: Должен - убирать слеш на конэто, а на данный момент переадресует на страницы икого типа index.php?_route_=bustery Как решить данную проблему? Прикладываю свой htaccess # SEO URL Settings RewriteEngine On RewriteCond %{HTTP_HOST} ^www.telnetshop.ru$ [NC] RewriteRule ^(.*)$ https://telnetshop.ru/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/ RewriteRule ^index\.html$ / [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ / [R=301,L] RewriteCond %{QUERY_STRING} ^route=common/home$ RewriteCond %{REQUEST_METHOD} !^POST$ RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} ^(.+)/$ RewriteRule ^(.+)/$ /$1 [R=301,L] # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^system/download/(.*) /index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
×
×
  • 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.