This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🔎 НАСТРОЙКА SCREAMING FROG SEO SPIDER 19.8 ПО МЕТОДУ ИЗ ВИДЕО ИВАНА ЗИМИНА (https://www.youtube.com/watch?v=JDpx0Kgc9rA) | |
С НЕКОТОРЫМИ ИЗМЕНЕНИЯМИ, КОТОРЫЕ УКАЗАНЫ НИЖЕ! | |
⭐️ 1. Settings > Storage Mode | |
Database Storage > D:\_ 2025\PROGRAM FILES\Screaming Frog SEO Spider\Storage | |
Memory Allocation > 6 Gb (возможно от 4 Gb до 14 Gb) | |
⭐️ 2. Configuration > Spider > Crawl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
taskkill /F /IM explorer.exe | |
start explorer.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.product-grid .product_buttons .quick_btn, .owl-carousel .product_buttons .quick_btn {display: inline-block; width: 100%;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | |
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L] | |
RewriteCond %{HTTP:X-Forwarded-Proto} =http [OR] | |
RewriteCond %{HTTP:X-Forwarded-Proto} ="" | |
RewriteCond %{HTTP:X-HTTPS} !1 [OR] | |
RewriteCond %{HTTPS} !=on | |
RewriteCond %{REQUEST_URI} !robots\.txt | |
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Стандартный фильтр Opencart работает по принципу ИЛИ (OR) для разных групп при фильтрации. | |
Данный патч решает проблему с фильтром, меняя логику выбора групп фильтров на И (AND) | |
https://opencartforum.com/files/file/2642-fixfilter-oc2x-ispravlenie-filtra-v-opencart-20/ | |
КАК ВЫВЕСТИ СТАНДАРТНЫЙ ФИЛЬТР | |
1. Зайти в Каталог >> Фильтры и создать группу фильтров. Зайти в нее, добавить названия фильтров. | |
2. Зайти в Каталог >> Товары и редактировать нужный товар. Во вкладке "Связи" в фильтрах добавить нужные. | |
Добавляются через автозаполнение, просто вводить название фильтра (именно фильтра, а не группы фильтров). | |
3. Зайти в Модули >> Фильтр и включить его. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Нажмите клавиши ALT + F11 , чтобы открыть редактор Visual Basic | |
2. Добавьте новый пустой модуль через меню Insert - Module | |
3. Скопируйте и вставьте в модуль код макроса. | |
4. Переименуйте модуль | |
Sub ShowCyrylic() | |
'moonexcel.com.ua | |
Dim c As Range, i As Long | |
For Each c In Selection | |
For i = 1 To Len(c) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Нажмите клавиши ALT + F11 , чтобы открыть редактор Visual Basic | |
2. Добавьте новый пустой модуль через меню Insert - Module | |
3. Скопируйте и вставьте в модуль код макроса. | |
4. Переименуйте модуль | |
Sub ShowLatin() | |
'moonexcel.com.ua | |
Dim c As Range, i As Long | |
For Each c In Selection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Завершение процесса в точное время Windows XP/Vista/7: | |
at 11:00 Taskkill /f /IM winamp.exe /T | |
Завершение процесса в точное время Windows 8/8.1/10: | |
schtasks /create /tn termination /tr "taskkill /f /t /im winamp.exe" /sc once /st 11:00 | |
Выключить комп через час: | |
shutdown.exe -s -t 3600 | |
Перезагрузить комп сейчас же: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Все диски компьютера автоматически монтируются в привычную для любого пользователя Linux директорию — /mnt. | |
То есть для просмотра содержимого диска С: достаточно ввести команду ls /mnt/c, например. | |
Команда: ls /mnt/c - открытие в bash диска С: |
NewerOlder