Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Кэширование браузера


Recommended Posts

Доброго времени суток.

Помогите разобраться. 

по всем пунктам загрузки сайт проходит, кроме кэширования бразуера.

собственно подскажите как его включить

поиск по форуму юзал, гугл тоже ничего внятного подсказать не может.

 

Заранее спасибо за ответ :)

Надіслати
Поділитися на інших сайтах


  • 3 weeks later...

к сожалению не помогло :(

 

Не подскажите по этой ошибке? стала выскакивать на главной сайта .

 

Warning: array_key_exists() expects parameter 2 to be array, null given in system/library/v2pagecache.php on line 64

Warning: array_key_exists() expects parameter 2 to be array, null given in system/library/v2pagecache.php on line 7

 

 

вот что гугл выдает

 

  • vascript/bootstrap/css/bootstrap.min.css (не указан срок действия)
  • …javascript/bootstrap/js/bootstrap.min.js (не указан срок действия)
  • catalog/view/javascript/common.js (не указан срок действия)
  • pt/font-awesome/css/font-awesome.min.css (не указан срок действия)
  • w/javascript/jquery/jquery-2.1.1.min.js (не указан срок действия)
  • pt/jquery/owl-carousel/owl.carousel.css (не указан срок действия)
  •  
Змінено користувачем Juicyman
Надіслати
Поділитися на інших сайтах


к сожалению не помогло :(

 

Не подскажите по этой ошибке? стала выскакивать на главной сайта .

 

Warning: array_key_exists() expects parameter 2 to be array, null given in system/library/v2pagecache.php on line 64

Warning: array_key_exists() expects parameter 2 to be array, null given in system/library/v2pagecache.php on line 7

это не имеет отношения к htaccess

Надіслати
Поділитися на інших сайтах

это не имеет отношения к htaccess

была проблема с модулем, уже разобрался :) а вот с кешированием до сих пор нет .

В подобных темах искал, прописывал время кеширования . но все тщетно. Или анализаторы могут ошибаться?)

Надіслати
Поділитися на інших сайтах


была проблема с модулем, уже разобрался :) а вот с кешированием до сих пор нет .

В подобных темах искал, прописывал время кеширования . но все тщетно. Или анализаторы могут ошибаться?)

помогите за вознаграждение с этим кэшем :(

Надіслати
Поділитися на інших сайтах


Надіслати
Поділитися на інших сайтах

 спасибо что не остаетесь равнодушным :)
 
 перечитал множество статей, но все одно и тоже 
 
 
# For any support issues please visit: http://www.opencart.com
 
Options All +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 ^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]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.juicyclouds.ru$ [NC]
 
 
### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.
 
# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off
 
# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off
 
# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M
 
# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M
 
# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200
 
# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200
 
# 7. disable open_basedir limitations
# php_admin_value open_basedir none
 
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access 7 days"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType text/css "access plus 1 year"
ExpiresByType text/html "access plus 7 day"
ExpiresByType text/x-javascript "access 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/x-icon "access 1 year"
ExpiresByType application/x-shockwave-flash "access 1 year"
 
</IfModule>
# Cache-Control
<ifModule mod_headers.c>
 
<filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
 
<filesMatch "\.(css|js)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
 
<filesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</filesMatch>
 
<filesMatch "\.(html|htm|php)$">
Header set Cache-Control "max-age=172800, private, must-revalidate"
</filesMatch>
</ifModule>
 
FileETag MTime Size
<ifmodule mod_expires.c>
<filesmatch ".(jpg|jpeg|gif|png|ico|css|js)$">
ExpiresActive on
ExpiresDefault "access plus 1 year"
</filesmatch>
</ifmodule>
 
 
что я делаю не так ?)
Змінено користувачем Juicyman
Надіслати
Поділитися на інших сайтах


 

 спасибо что не остаетесь равнодушным :)
 
 перечитал множество статей, но все одно и тоже 
 
 
# For any support issues please visit: http://www.opencart.com
 
Options All +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 ^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]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.juicyclouds.ru$ [NC]
 
 
### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.
 
# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off
 
# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off
 
# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M
 
# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M
 
# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200
 
# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200
 
# 7. disable open_basedir limitations
# php_admin_value open_basedir none
 
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access 7 days"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType text/css "access plus 1 year"
ExpiresByType text/html "access plus 7 day"
ExpiresByType text/x-javascript "access 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/x-icon "access 1 year"
ExpiresByType application/x-shockwave-flash "access 1 year"
 
</IfModule>
# Cache-Control
<ifModule mod_headers.c>
 
<filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
 
<filesMatch "\.(css|js)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
 
<filesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</filesMatch>
 
<filesMatch "\.(html|htm|php)$">
Header set Cache-Control "max-age=172800, private, must-revalidate"
</filesMatch>
</ifModule>
 
FileETag MTime Size
<ifmodule mod_expires.c>
<filesmatch ".(jpg|jpeg|gif|png|ico|css|js)$">
ExpiresActive on
ExpiresDefault "access plus 1 year"
</filesmatch>
</ifmodule>
 
 
что я делаю не так ?)

 

Была похожая ситуация, мне помогло это https://opencartforum.com/topic/49564-%D0%B2%D0%BA%D0%BB%D1%8E%D1%87%D0%B8%D1%82-%D0%BA%D1%8D%D1%88-%D0%B1%D1%80%D0%B0%D1%83%D0%B7%D0%B5%D1%80%D0%B0-%D0%BF%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5%D0%BB%D1%8F/?hl=%D0%BA%D1%8D%D1%88+%D0%B1%D1%80%D0%B0%D1%83%D0%B7%D0%B5%D1%80%D0%B0

Надіслати
Поділитися на інших сайтах


  • 4 weeks later...
Надіслати
Поділитися на інших сайтах


  • 3 weeks later...

У большинства хостеров в мир смотрит Nginx, и для кеширования-сжатия статики, нужно менять его конфиг, а не apache.

Те инструкции которые приведены выше для .htaccess, никак не подействуют.

 

Но есть ситуации безвыходные, так например виртуальный хостинг от reg.ru, не позволяет управлять настройками кеширования-сжатия статических файлов в принципе.

 

Это не смешно. У них так и написано. Заканчивался 2016 год. Спектрумы побеждают человечество по всем фронтам.

Надіслати
Поділитися на інших сайтах

  • 2 weeks later...

Может этот модуль поможет Вам?

На кеширование-сжатие статики модуль не влияет. Влияет на время генерации страниц сервером.

Надіслати
Поділитися на інших сайтах

Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку

×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.