Igor5
Users-
Posts
345 -
Joined
-
Last visited
Content Type
Profiles
Forums
Marketplace
Articles
FAQ
Our New
Store
Blogs
module__dplus_manager
Everything posted by Igor5
-
Описание категории
Igor5 replied to ioniamichael's topic in SEO-питання (оптимізація та просування магазину)
если робот зайдет на ваш сайт, то ему пофиг вверху описание или внизу -
уже поставил.. от окСторе Options +FollowSymlinks # Prevent Directoy listing Options -Indexes # Prevent Direct Access to files <FilesMatch "(?i)((\.tpl|\.ini|\.log|(?<!robots)\.txt))"> Order deny,allow Deny from all </FilesMatch> # SEO URL Settings RewriteEngine On # 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 %{HTTP_HOST} ^www.auto24.com.ua$ [NC] RewriteRule ^(.*)$ htts://auto24.com.ua/$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]
-
chukcha, можно поподробнее? а то я в этом не знаток... вот мой файл.. если не трудно - гляньте, что подправить... #### OLD OPPENFIRE RULES WORK FINE # Доступ к чтению каталогов Options All -ExecCGI -Indexes -Includes +FollowSymLinks # КЕША php_value session.cookie_domain .eurotrend.kz php_value max_input_vars 4000 # Управлять параметрами php.ini <ifModule mod_php.c> php_value upload_max_filesize 32M php_value post_max_size 10M php_value default_charset utf-8 php_value max_execution_time 200 </ifModule> # Доступ к файлам каталогов, разрешаем Роботс <FilesMatch "\.(tpl|ini|log|txt)"> Order deny,allow Deny from all </FilesMatch> <Files robots.txt> Allow from all </Files> # SEO URL Настройка # Если не стандартная установка сайта в корне, то заменить RewriteBase / на что-то свое RewriteBase /shop/ <IfModule mod_rewrite.c> RewriteEngine On #Редирект на HTTPS #RewriteCond %{HTTPS} !=on #RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^yandexbuy/([^?]*)$ index.php?route=yandexbuy/$1 [L,QSA] 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) # NOT MOVE - НЕ ТРОГАТЬ И НЕ ПЕРЕМЕЩАТЬ ЭТО ПРАВИЛО RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] #Редирект 301 RewriteCond %{HTTP_HOST} ^www.auto24.com.ua$ [NC] RewriteRule ^(.*)$ http://auto24.com.ua/$1 [R=301,L] RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [QSA,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] </IfModule> # Главный индекс файл DirectoryIndex index.php # Часовой пояс и кодировка ServerSignature Off AddDefaultCharset UTF-8 # Принудительное указание типов файлов AddHandler application/x-httpd-php .html AddHandler cgi-script .pl .py .jsp .asp .htm .shtml .sh .cgi AddType application/x-javascript .js AddType text/css .css AddType text/xml .xml AddType application/octet-stream .doc .mov .avi .pdf .xls # ForceType application/x-httpd-php # Архивирование архивов AddType text/css .css .cssgz AddType text/javascript .js .jsgz AddEncoding x-gzip .cssgz .jsgz # Архивирование использованием mod_gzip.c <ifModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript </ifModule> <IfModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$ mod_gzip_item_include mime ^text\.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_include mime ^application/x-font-woff.* mod_gzip_item_exclude mime ^image\.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* SetOutputFilter DEFLATE </IfModule> # Запретить читать log <Files ocstore_error.log> Order allow,deny Deny from all Satisfy All </Files> # Кеширование Страницы <ifModule mod_headers.c> # Turn on Expires and set default to 0 ExpiresActive On ExpiresDefault A0 # Set up caching on media files for 5 weeks <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> ExpiresDefault A3024000 Header append Cache-Control "public" </FilesMatch> # Set up caching on media files for 5 weeks <FilesMatch "\.(gif|jpg|jpeg|png|swf)$"> ExpiresDefault A3024000 Header append Cache-Control "public" </FilesMatch> # Set up 1 day caching on commonly updated files <FilesMatch "\.(xml|txt|html|js|css)$"> ExpiresDefault A86400 Header append Cache-Control "proxy-revalidate" </FilesMatch> # Force no caching for dynamic files <FilesMatch "\.(php|cgi|pl|htm)$"> ExpiresActive Off Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform" Header set Pragma "no-cache" </FilesMatch> </IfModule> # Кеширование Браузером FileETag MTime Size <ifModule mod_expires.c> ExpiresActive On ExpiresDefault A0 #по умолчанию кеш в 5 секунд ExpiresDefault "access plus 5 seconds" #кэшировать флэш и изображения на месяц ExpiresByType image/x-icon "access plus 2592000 seconds" ExpiresByType image/jpeg "access plus 2592000 seconds" ExpiresByType image/jpg "access plus 2592000 seconds" ExpiresByType image/png "access plus 2592000 seconds" ExpiresByType image/gif "access plus 2592000 seconds" ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds" #кэшировать css, javascript и текстовые файлы на одну неделю ExpiresByType text/css "access plus 604800 seconds" ExpiresByType text/javascript "access plus 604800 seconds" ExpiresByType application/javascript "access plus 604800 seconds" ExpiresByType application/x-javascript "access plus 604800 seconds" #кэшировать html и htm файлы на один день ExpiresByType text/html "access plus 43200 seconds" #кэшировать xml файлы на десять минут ExpiresByType application/xhtml+xml "access plus 600 seconds" </ifModule> # Совместимость со старыми браузерами # Отключите отправку cookies файлам ## Bad Rquest #ErrorDocument 400 /400.html ## Authorization Required #ErrorDocument 401 /401.html ## Forbidden #ErrorDocument 403 /403.html ## Not found #ErrorDocument 404 /404.html ## Method Not Allowed #ErrorDocument 405 /405.html ## Request Timed Out #ErrorDocument 408 /408.html ## Request URI Too Long #ErrorDocument 414 /414.html ## Internal Server Error #ErrorDocument 500 /500.html ## Not Implemented #ErrorDocument 501 /501.html ## Bad Gateway #ErrorDocument 502 /502.html ## Service Unavailable #ErrorDocument 503 /503.html ## Gateway Timeout #ErrorDocument 504 /504.html Redirect 301 /index.html /index.php ######################################################### # 6G FIREWALL/BLACKLIST # @ https://perishablepress.com/6g/ # 6G:[QUERY STRINGS] <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{QUERY_STRING} (eval\() [NC,OR] RewriteCond %{QUERY_STRING} (127\.0\.0\.1) [NC,OR] RewriteCond %{QUERY_STRING} ([a-z0-9]{2000}) [NC,OR] RewriteCond %{QUERY_STRING} (javascript:)(.*)(;) [NC,OR] RewriteCond %{QUERY_STRING} (base64_encode)(.*)(\() [NC,OR] RewriteCond %{QUERY_STRING} (GLOBALS|REQUEST)(=|\[|%) [NC,OR] RewriteCond %{QUERY_STRING} (<|%3C)(.*)script(.*)(>|%3) [NC,OR] RewriteCond %{QUERY_STRING} (\\|\.\.\.|\.\./|~|`|<|>|\|) [NC,OR] RewriteCond %{QUERY_STRING} (boot\.ini|etc/passwd|self/environ) [NC,OR] RewriteCond %{QUERY_STRING} (thumbs?(_editor|open)?|tim(thumb)?)\.php [NC,OR] RewriteCond %{QUERY_STRING} (\'|\")(.*)(drop|insert|md5|select|union) [NC] RewriteRule .* - [F] </IfModule> # 6G:[REQUEST METHOD] <IfModule mod_rewrite.c> RewriteCond %{REQUEST_METHOD} ^(connect|debug|delete|move|put|trace|track) [NC] RewriteRule .* - [F] </IfModule> # 6G:[REFERRERS] <IfModule mod_rewrite.c> RewriteCond %{HTTP_REFERER} ([a-z0-9]{2000}) [NC,OR] RewriteCond %{HTTP_REFERER} (semalt.com|todaperfeita) [NC] RewriteRule .* - [F] </IfModule> # 6G:[REQUEST STRINGS] <IfModule mod_alias.c> RedirectMatch 403 (?i)([a-z0-9]{2000}) # RedirectMatch 403 (?i)(https?|ftp|php):/ RedirectMatch 403 (?i)(base64_encode)(.*)(\() RedirectMatch 403 (?i)(=\\\'|=\\%27|/\\\'/?)\. RedirectMatch 403 (?i)/(\$(\&)?|\*|\"|\.|,|&|&?)/?$ RedirectMatch 403 (?i)(\{0\}|\(/\(|\.\.\.|\+\+\+|\\\"\\\") RedirectMatch 403 (?i)/(=|\$&|_mm|cgi-|etc/passwd|muieblack) RedirectMatch 403 (?i)(&pws=0|_vti_|\(null\)|\{\$itemURL\}|echo(.*)kae|etc/passwd|eval\(|self/environ) RedirectMatch 403 (?i)\.(aspx?|bash|bak?|cfg|cgi|dll|exe|git|hg|ini|jsp|log|mdb|out|sql|svn|swp|tar|rar|rdf)$ RedirectMatch 403 (?i)/(^$|(wp-)?config|mobiquo|phpinfo|shell|sqlpatch|thumb|thumb_editor|thumbopen|timthumb|webshell)\.php </IfModule> # 6G:[USER AGENTS] # 6G:[BAD IPS] <Limit GET HEAD OPTIONS POST PUT> Order Allow,Deny Allow from All # uncomment/edit/repeat next line to block IPs # Deny from 123.456.789 </Limit> ## INCREASE PAGE SPEED HTACCESS MODIFICATION ## <ifModule mod_headers.c> Header set Connection keep-alive </ifModule> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/x-javascript BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html <ifModule mod_headers.c> Header append Vary User-Agent </ifModule> <FilesMatch "\.(js|css|jpg|png|jpeg|gif|xml|json|txt|pdf|mov|avi|otf|woff|ico|swf)$"> RequestHeader unset Cookie Header unset Cookie Header unset Set-Cookie ErrorDocument 404 'Not Found' </FilesMatch> ## END INCREASE PAGE SPEED HTACCESS MODIFICATION ##
-
Всем привет! Решил создать тему с казалось бы банальным, но в тоже время важным вопросом для начинающего вебмастера - выбора хостинга... Админы не принимайте это за попытку рекламы кого либо, просто интересно что выбирает народ для своих магазинов... Тех, кто пользуется выделенкой и пр. роскошью просьба удержатся от советов, ибо для многих здесь это самолет.. Интересует именно шаред хостинг, тоесть что лучше за небольшие деньги, потолок примерно до 300 руб. в мес.
-
Привет! В общем суть проблемы в том, что при попытке войти в админку, а именно после вводе логина и пароля не происходит никаких действий (тоесь страница какбы обновилась, но в админку не пускает.. и ошибок тоже никаких не выдает) Проблему решаю так... Перед тем как попасть в админку переименовываю файл htaccess к примеру на htaccess2, после этого захожу без проблем на протяжении целого дня.. После, соответственно имя файлика возвращаю назад... Такие манипуляции приходится делать раз в сутки... Кто подскажет с чем это связано?
-
Модуль Автоматическая обработка прайс-листов. [Поддержка]
Igor5 replied to usergio's topic in Модули обмена данными
спасибо!- 49,460 replies
-
- поставщики импорт
- наполнение им
- (and 19 more)
-
Модуль Автоматическая обработка прайс-листов. [Поддержка]
Igor5 replied to usergio's topic in Модули обмена данными
Приветствую! Подскажите как можно скопировать поставщика?- 49,460 replies
-
- поставщики импорт
- наполнение им
- (and 19 more)
-
Как быстро удалить все товары ?
Igor5 replied to aleksander1993's topic in Opencart 2.x: General questions
Если через админку,, то нужно доп. решение, например модуль авт. обработка прайс листов (он умеет много чего и лишним точно не будет) Также можно через БД удалить... TRUNCATE TABLE oc_product; TRUNCATE TABLE oc_product_attribute; TRUNCATE TABLE oc_product_description; TRUNCATE TABLE oc_product_discount; TRUNCATE TABLE oc_product_image; TRUNCATE TABLE oc_product_option; TRUNCATE TABLE oc_product_option_value; TRUNCATE TABLE oc_product_related; TRUNCATE TABLE oc_product_related; TRUNCATE TABLE oc_product_reward; TRUNCATE TABLE oc_product_special; TRUNCATE TABLE oc_product_tag; TRUNCATE TABLE oc_product_to_category; TRUNCATE TABLE oc_product_to_download; TRUNCATE TABLE oc_product_to_layout; TRUNCATE TABLE oc_product_to_store; TRUNCATE TABLE oc_review; DELETE FROM oc_url_alias WHERE query LIKE 'product_id=%'; префикс свой пропишите... -
теперь понял, спасибо! попробую переделать в векторе...
-
да, всегда... Illustrator использую редко.. с Corel Draw не работал ну 8 px тоже искажается, хотя в лого розетки шрифт не больше, да и размеры самого полотна такие же
-
Привет форумчане, вообщем нужно в логотипе мелким шрифтом внизу прописать пару слов, думаю это понятно, так как такое делают многие, ну а кто не понял что я имею ввиду, то вот для примера лого розетки (не реклама)... лого делаю в фотошопе, перепробовал уже разные шрифты, но все они искажаются, при выставлении размера ниже 8.. подскажите какой шрифт используется на данном лого?
-
Модуль Автоматическая обработка прайс-листов. [Поддержка]
Igor5 replied to usergio's topic in Модули обмена данными
ну правильная работа модуля это когда после окончания тайм-лимита нужно обновить страницу и товары продолжать загружаться...и если я не ошибаюсь там другое сообщение появляется.. у меня же получается после тайм-лимита нужно заново выбирать прайс, а не просто обновлять страницу- 49,460 replies
-
- поставщики импорт
- наполнение им
- (and 19 more)