tr-opencart

     
avatar Şuanki Zaman: 04-19-2024, 09:50 AMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Tarayıcı önbellekleme özelliğinden yararlanın

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  tuncaksoy - Görüntüleme - Okunma  5872 - Yorum  7

tuncaksoyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 54
Konular: 23
Katılma Tarihi: Dec 2015
Rep Puanı: 0
Teşekkürler: 16
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-24-2016 06:10 PM

Arkadaşlar Merhaba

Bu konuda internette çok geniş bir araştırma yaptım ve bir çok şey denedim ancak tam olarak istediğimi yapamıyorum.

PageSpeed Insights testinde "Tarayıcı önbellekleme özelliğinden yararlanın" uyarısı alıyorum.

.htaccess içerisinde bir çok deneme yaptım ancak bu uyarıyı kaldıramadım.

Aşağıda kullandığım içerik var.
Dediğim gibi asıl sorunumun hiç bir şekilde önbellekleme olayını yapamamam.

https://developers.google.com/speed/page...ab=desktop

Bilen birileri yardımcı olabilir mi?
Teşekkürler

Kod:
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

## Prevent Directory listing.
Options -Indexes

## Prevent Apache from returning a 404 error as the result of a rewrite when the directory with the same name does not exist.
Options -MultiViews

## Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
AddDefaultCharset utf-8

## Force UTF-8 for certain file formats.
<IfModule mod_mime.c>
  AddCharset utf-8 .atom .css .js .json .jsonld .rss .vtt .webapp .xml
</IfModule>

## Prevent Direct Access to files.
<FilesMatch "(^#.*#|\.(bak|config|dist|fla|in[ci]|ini|tpl|log|psd|sh|sql|sw[op])|~)$">
# Apache < 2.3
<IfModule !mod_authz_core.c>
  Order allow,deny
  Deny from all
  Satisfy All
</IfModule>
# Apache ≥ 2.3
<IfModule mod_authz_core.c>
  Require all denied
</IfModule>
</FilesMatch>

## Force IE to render pages in the highest available mode.
<IfModule mod_headers.c>
  Header set X-UA-Compatible "IE=edge"
  # mod_headers cannot match based on the content-type, however this header should be sent only for HTML pages and not for the other resources.
  <FilesMatch "\.(appcache|atom|crx|css|cur|eot|f4[abpv]|flv|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|tt[cf]|vcf|vtt|webapp|web[mp]|woff|xml|xpi)$">
    Header unset X-UA-Compatible
  </FilesMatch>
</IfModule>

## Prevent some browsers from MIME-sniffing the response.
# This reduces exposure to drive-by download attacks and cross-origin data leaks, and should be left uncommented,
# especially if the web server is serving user-uploaded content or content that could potentially be treated as executable by the browser.
<IfModule mod_headers.c>
  Header set X-Content-Type-Options "nosniff"
</IfModule>

## Remove `ETags` as resources are sent with far-future expires headers.
<IfModule mod_headers.c>
# Header unset ETag
</IfModule>

# `FileETag None` doesn't work in all cases.
# FileETag None

## Remove `Last-Modified` from headers.
<ifModule mod_headers.c>
# Header unset Last-Modified
</ifModule>

## SEO URL Settings
RewriteEngine On

# If your opencart installation does not run on the main web root, make sure you add the right folder to it, so: / becomes: /shop/
RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^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]

## Enable Apache Gzip.
<ifModule mod_gzip.c>
  mod_gzip_on Yes
  mod_gzip_dechunk Yes
  mod_gzip_item_include file .(html?|txt|css|js|php)$
  mod_gzip_item_include handler ^cgi-script$
  mod_gzip_item_include mime ^text/.*
  mod_gzip_item_include mime ^application/x-javascript.*
  mod_gzip_item_exclude mime ^image/.*
  mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>

<IfModule mod_deflate.c>
<FilesMatch "\.(txt|css|js|php)$">
  SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>

## Serve resources with far-future expires headers.
<IfModule mod_expires.c>
  ExpiresActive on
  ExpiresDefault                          "access plus 1 month"
  ExpiresByType text/css                  "access plus 1 year"
  ExpiresByType application/json          "access plus 0 seconds"
  ExpiresByType application/ld+json       "access plus 0 seconds"
  ExpiresByType application/xml           "access plus 0 seconds"
  ExpiresByType text/xml                  "access plus 0 seconds"
  ExpiresByType image/x-icon              "access plus 1 week"
  ExpiresByType text/x-component          "access plus 1 month"
  ExpiresByType text/html                 "access plus 0 seconds"
  ExpiresByType application/javascript    "access plus 1 year"
  ExpiresByType image/gif                 "access plus 1 month"
  ExpiresByType image/jpeg                "access plus 1 month"
  ExpiresByType image/png                 "access plus 1 month"
  ExpiresByType image/svg+xml             "access plus 1 month"
  ExpiresByType video/mp4                 "access plus 1 month"
  ExpiresByType video/ogg                 "access plus 1 month"
  ExpiresByType video/webm                "access plus 1 month"
  ExpiresByType application/atom+xml      "access plus 1 hour"
  ExpiresByType application/rss+xml       "access plus 1 hour"
  ExpiresByType application/x-font-ttf    "access plus 1 month"
  ExpiresByType font/opentype             "access plus 1 month"
</IfModule>

### 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 received. 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

ExpiresActive On
    ExpiresByType image/gif A604800
    ExpiresByType image/jpg A604800
    ExpiresByType image/jpeg A604800
    ExpiresByType image/png A604800
    ExpiresByType image/bmp A604800
    ExpiresByType text/css A604800
    ExpiresByType text/javascript A604800
    ExpiresByType application/javascript A604800
    ExpiresByType application/x-javascript A604800
Alıntı Yaparak Cevapla
Paylaş!
ibrahim_130v
Süper Moderator
******
Süper Moderator user avatar
Çevrimdışı

Mesajlar: 290
Konular: 14
Katılma Tarihi: May 2014
Rep Puanı: 0
Teşekkürler: 2
50 Mesajına, 62 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-24-2016 06:22 PM
modül olarak opencart altında cache ekklentin varmı. Cache ekletisi ile bu sorunu çözersin.
ibrahim_130
ibrahim_130, üyesi Opencart Türkiye Destek Sitesi ,E-Ticaret Yazılımı Destek Paylaşım Forumu na May 2014 tarihinde katılmıştır.
Alıntı Yaparak Cevapla
Paylaş!
bilisimakademiv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 46
Konular: 0
Katılma Tarihi: Feb 2016
Rep Puanı: 0
Teşekkürler: 0
7 Mesajına, 7 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-24-2016 07:31 PM
.httaccess bu kodları denermisin

PHP Kod:
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled. 
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

## Prevent Directory listing.
Options -Indexes

## Prevent Apache from returning a 404 error as the result of a rewrite when the directory with the same name does not exist.
Options -MultiViews

## Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
AddDefaultCharset utf-8

## Force UTF-8 for certain file formats.
<IfModule mod_mime.c>
  
AddCharset utf-.atom .css .js .json .jsonld .rss .vtt .webapp .xml
</IfModule>

## Prevent Direct Access to files.
<FilesMatch "(^#.*#|\.(bak|config|dist|fla|in[ci]|ini|tpl|log|psd|sh|sql|sw[op])|~)$">
# Apache < 2.3
<IfModule !mod_authz_core.c>
  
Order allow,deny
  Deny from all
  Satisfy All
</IfModule>
# Apache ≥ 2.3
<IfModule mod_authz_core.c>
  Require 
all denied
</IfModule>
</
FilesMatch>

## Force IE to render pages in the highest available mode.
<IfModule mod_headers.c>
  
Header set X-UA-Compatible "IE=edge"
  
# mod_headers cannot match based on the content-type, however this header should be sent only for HTML pages and not for the other resources.
  
<FilesMatch "\.(appcache|atom|crx|css|cur|eot|f4[abpv]|flv|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|tt[cf]|vcf|vtt|webapp|web[mp]|woff|xml|xpi)$">
    
Header unset X-UA-Compatible
  
</FilesMatch>
</
IfModule>

## Prevent some browsers from MIME-sniffing the response.
# This reduces exposure to drive-by download attacks and cross-origin data leaks, and should be left uncommented,
# especially if the web server is serving user-uploaded content or content that could potentially be treated as executable by the browser.
<IfModule mod_headers.c>
  
Header set X-Content-Type-Options "nosniff"
</IfModule>

## Remove `ETags` as resources are sent with far-future expires headers.
<IfModule mod_headers.c>
# Header unset ETag
</IfModule>

# `FileETag None` doesn't work in all cases.
# FileETag None

## Remove `Last-Modified` from headers.
<ifModule mod_headers.c>
# Header unset Last-Modified
</ifModule>

## SEO URL Settings
RewriteEngine On

# If your opencart installation does not run on the main web root, make sure you add the right folder to it, so: / becomes: /shop/
RewriteBase /

RewriteRule ^sitemap.xmlindex.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xmlindex.php?route=feed/google_base [L]
RewriteRule ^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_=$[L,QSA]

## Enable Apache Gzip.
<ifModule mod_gzip.c>
  
mod_gzip_on Yes
  mod_gzip_dechunk Yes
  mod_gzip_item_include file 
.(html?|txt|css|js|php)$
  
mod_gzip_item_include handler ^cgi-script$
  
mod_gzip_item_include mime ^text/.*
  
mod_gzip_item_include mime ^application/x-javascript.*
  
mod_gzip_item_exclude mime ^image/.*
  
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</
ifModule>

<
IfModule mod_deflate.c>
<
FilesMatch "\.(txt|css|js|php)$">
  
SetOutputFilter DEFLATE
</FilesMatch>
</
IfModule>

## Serve resources with far-future expires headers.
<IfModule mod_expires.c>
  
ExpiresActive on
  ExpiresDefault                          
"access plus 2678400 seconds"
  
ExpiresByType text/css                  "access plus 750000 seconds"
  
ExpiresByType application/json          "access plus 2678400 seconds"
  
ExpiresByType application/ld+json       "access plus 2678400 seconds"
  
ExpiresByType application/xml           "access plus 2678400 seconds"
  
ExpiresByType text/xml                  "access plus 2678400 seconds"
  
ExpiresByType image/x-icon              "access plus 2678400 seconds"
  
ExpiresByType text/x-component          "access plus 2678400 seconds"
  
ExpiresByType text/html                 "access plus 7200 seconds"
  
ExpiresByType application/javascript    "access plus 2678400 seconds"
  
ExpiresByType image/gif                 "access plus 2678400 seconds"
  
ExpiresByType image/jpeg                "access plus 2678400 seconds"
  
ExpiresByType image/png                 "access plus 2678400 seconds"
  
ExpiresByType image/svg+xml             "access plus 2678400 seconds"
  
ExpiresByType video/mp4                 "access plus 2678400 seconds"
  
ExpiresByType video/ogg                 "access plus 2678400 seconds"
  
ExpiresByType video/webm                "access plus 2678400 seconds"
  
ExpiresByType application/atom+xml      "access plus 2678400 seconds"
  
ExpiresByType application/rss+xml       "access plus 2678400 seconds"
  
ExpiresByType application/x-font-ttf    "access plus 2678400 seconds"
  
ExpiresByType font/opentype             "access plus 2678400 seconds"
</IfModule>

# Cache Headers 
<ifmodule mod_headers.c
  
# Cache specified files for 31 days 
  
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$"
  
Header set Cache-Control "max-age=2678400, public" 
  
</filesmatch
  
# Cache HTML files for a couple hours 
  
<filesmatch "\.(html|htm)$"
  
Header set Cache-Control "max-age=7200, private, must-revalidate" 
  
</filesmatch
  
# Cache PDFs for a day 
  
<filesmatch "\.(pdf)$"
  
Header set Cache-Control "max-age=86400, public" 
  
</filesmatch
  
# Cache Javascripts for 31 days 
  
<filesmatch "\.(js)$"
  
Header set Cache-Control "max-age=2678400, private" 
  
</filesmatch
</
ifmodule>  

### 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 received. 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

ExpiresActive On 
    ExpiresByType image
/gif A604800 
    ExpiresByType image
/jpg A604800 
    ExpiresByType image
/jpeg A604800 
    ExpiresByType image
/png A604800 
    ExpiresByType image
/bmp A604800 
    ExpiresByType text
/css A604800 
    ExpiresByType text
/javascript A604800 
    ExpiresByType application
/javascript A604800 
    ExpiresByType application
/x-javascript A604800 
Alıntı Yaparak Cevapla
Paylaş!
tuncaksoyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 54
Konular: 23
Katılma Tarihi: Dec 2015
Rep Puanı: 0
Teşekkürler: 16
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-25-2016 05:03 AM
(03-24-2016 06:22 PM)ibrahim_130 Yazılan:  modül olarak opencart altında cache ekklentin varmı. Cache ekletisi ile bu sorunu çözersin.

clear_cache.xml
Clear All Cache diye bir modül var vqmod da ama çalıştığından şüpheliyim çünkü türkçe menüde adı bile düzgün çıkmıyor. Otomatik bi sistem de değil sanırım. Cloudflare siteden kayıt yaptım ancak acaba modülünü mü kursam? bir önerin var mı acaba?
(03-24-2016 07:31 PM)bilisimakademi Yazılan:  .httaccess bu kodları denermisin

PHP Kod:
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled. 
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

## Prevent Directory listing.
Options -Indexes

## Prevent Apache from returning a 404 error as the result of a rewrite when the directory with the same name does not exist.
Options -MultiViews

## Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
AddDefaultCharset utf-8

## Force UTF-8 for certain file formats.
<IfModule mod_mime.c>
  
AddCharset utf-.atom .css .js .json .jsonld .rss .vtt .webapp .xml
</IfModule>

## Prevent Direct Access to files.
<FilesMatch "(^#.*#|\.(bak|config|dist|fla|in[ci]|ini|tpl|log|psd|sh|sql|sw[op])|~)$">
# Apache < 2.3
<IfModule !mod_authz_core.c>
  
Order allow,deny
  Deny from all
  Satisfy All
</IfModule>
# Apache ≥ 2.3
<IfModule mod_authz_core.c>
  Require 
all denied
</IfModule>
</
FilesMatch>

## Force IE to render pages in the highest available mode.
<IfModule mod_headers.c>
  
Header set X-UA-Compatible "IE=edge"
  
# mod_headers cannot match based on the content-type, however this header should be sent only for HTML pages and not for the other resources.
  
<FilesMatch "\.(appcache|atom|crx|css|cur|eot|f4[abpv]|flv|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|tt[cf]|vcf|vtt|webapp|web[mp]|woff|xml|xpi)$">
    
Header unset X-UA-Compatible
  
</FilesMatch>
</
IfModule>

## Prevent some browsers from MIME-sniffing the response.
# This reduces exposure to drive-by download attacks and cross-origin data leaks, and should be left uncommented,
# especially if the web server is serving user-uploaded content or content that could potentially be treated as executable by the browser.
<IfModule mod_headers.c>
  
Header set X-Content-Type-Options "nosniff"
</IfModule>

## Remove `ETags` as resources are sent with far-future expires headers.
<IfModule mod_headers.c>
# Header unset ETag
</IfModule>

# `FileETag None` doesn't work in all cases.
# FileETag None

## Remove `Last-Modified` from headers.
<ifModule mod_headers.c>
# Header unset Last-Modified
</ifModule>

## SEO URL Settings
RewriteEngine On

# If your opencart installation does not run on the main web root, make sure you add the right folder to it, so: / becomes: /shop/
RewriteBase /

RewriteRule ^sitemap.xmlindex.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xmlindex.php?route=feed/google_base [L]
RewriteRule ^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_=$[L,QSA]

## Enable Apache Gzip.
<ifModule mod_gzip.c>
  
mod_gzip_on Yes
  mod_gzip_dechunk Yes
  mod_gzip_item_include file 
.(html?|txt|css|js|php)$
  
mod_gzip_item_include handler ^cgi-script$
  
mod_gzip_item_include mime ^text/.*
  
mod_gzip_item_include mime ^application/x-javascript.*
  
mod_gzip_item_exclude mime ^image/.*
  
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</
ifModule>

<
IfModule mod_deflate.c>
<
FilesMatch "\.(txt|css|js|php)$">
  
SetOutputFilter DEFLATE
</FilesMatch>
</
IfModule>

## Serve resources with far-future expires headers.
<IfModule mod_expires.c>
  
ExpiresActive on
  ExpiresDefault                          
"access plus 2678400 seconds"
  
ExpiresByType text/css                  "access plus 750000 seconds"
  
ExpiresByType application/json          "access plus 2678400 seconds"
  
ExpiresByType application/ld+json       "access plus 2678400 seconds"
  
ExpiresByType application/xml           "access plus 2678400 seconds"
  
ExpiresByType text/xml                  "access plus 2678400 seconds"
  
ExpiresByType image/x-icon              "access plus 2678400 seconds"
  
ExpiresByType text/x-component          "access plus 2678400 seconds"
  
ExpiresByType text/html                 "access plus 7200 seconds"
  
ExpiresByType application/javascript    "access plus 2678400 seconds"
  
ExpiresByType image/gif                 "access plus 2678400 seconds"
  
ExpiresByType image/jpeg                "access plus 2678400 seconds"
  
ExpiresByType image/png                 "access plus 2678400 seconds"
  
ExpiresByType image/svg+xml             "access plus 2678400 seconds"
  
ExpiresByType video/mp4                 "access plus 2678400 seconds"
  
ExpiresByType video/ogg                 "access plus 2678400 seconds"
  
ExpiresByType video/webm                "access plus 2678400 seconds"
  
ExpiresByType application/atom+xml      "access plus 2678400 seconds"
  
ExpiresByType application/rss+xml       "access plus 2678400 seconds"
  
ExpiresByType application/x-font-ttf    "access plus 2678400 seconds"
  
ExpiresByType font/opentype             "access plus 2678400 seconds"
</IfModule>

# Cache Headers 
<ifmodule mod_headers.c
  
# Cache specified files for 31 days 
  
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$"
  
Header set Cache-Control "max-age=2678400, public" 
  
</filesmatch
  
# Cache HTML files for a couple hours 
  
<filesmatch "\.(html|htm)$"
  
Header set Cache-Control "max-age=7200, private, must-revalidate" 
  
</filesmatch
  
# Cache PDFs for a day 
  
<filesmatch "\.(pdf)$"
  
Header set Cache-Control "max-age=86400, public" 
  
</filesmatch
  
# Cache Javascripts for 31 days 
  
<filesmatch "\.(js)$"
  
Header set Cache-Control "max-age=2678400, private" 
  
</filesmatch
</
ifmodule>  

### 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 received. 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

ExpiresActive On 
    ExpiresByType image
/gif A604800 
    ExpiresByType image
/jpg A604800 
    ExpiresByType image
/jpeg A604800 
    ExpiresByType image
/png A604800 
    ExpiresByType image
/bmp A604800 
    ExpiresByType text
/css A604800 
    ExpiresByType text
/javascript A604800 
    ExpiresByType application
/javascript A604800 
    ExpiresByType application
/x-javascript A604800 

Dostum denedim ancak hiç bir değişim olmadı sanırım. En azından derecelendirme aynı ve uyarı halen geliyor.
Alıntı Yaparak Cevapla
Paylaş!
ibrahim_130v
Süper Moderator
******
Süper Moderator user avatar
Çevrimdışı

Mesajlar: 290
Konular: 14
Katılma Tarihi: May 2014
Rep Puanı: 0
Teşekkürler: 2
50 Mesajına, 62 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-25-2016 12:48 PM
cache eklentisi ile ön bellek sorununu çözersin. aşağıda yer alan eklenti çok güzel bir eklentidir. Bunuda kullanabilirsin yada beğeneceğin muadili olanda olabilir. Seçim tamamen sana kalmış olur.

http://www.opencart.com/index.php?route=...arch=cache
ibrahim_130
ibrahim_130, üyesi Opencart Türkiye Destek Sitesi ,E-Ticaret Yazılımı Destek Paylaşım Forumu na May 2014 tarihinde katılmıştır.
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: tuncaksoy
tuncaksoyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 54
Konular: 23
Katılma Tarihi: Dec 2015
Rep Puanı: 0
Teşekkürler: 16
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-25-2016 05:38 PM
(03-25-2016 12:48 PM)ibrahim_130 Yazılan:  cache eklentisi ile ön bellek sorununu çözersin. aşağıda yer alan eklenti çok güzel bir eklentidir. Bunuda kullanabilirsin yada beğeneceğin muadili olanda olabilir. Seçim tamamen sana kalmış olur.

http://www.opencart.com/index.php?route=...arch=cache

Ben siteyi 100$a mal etmedim ya şimdi buna bu para verilir mi bilemedim ama emeğe saygım sonsuz tabi Smile
çok telekkür ederim. Ücretsiz birşeyler bulmaya çalışacağım, muhtemelen ücretsizi çıkana kadar da böyle devam Smile
Alıntı Yaparak Cevapla
Paylaş!
ibrahim_130v
Süper Moderator
******
Süper Moderator user avatar
Çevrimdışı

Mesajlar: 290
Konular: 14
Katılma Tarihi: May 2014
Rep Puanı: 0
Teşekkürler: 2
50 Mesajına, 62 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-25-2016 05:47 PM
(03-25-2016 05:38 PM)tuncaksoy Yazılan:  
(03-25-2016 12:48 PM)ibrahim_130 Yazılan:  cache eklentisi ile ön bellek sorununu çözersin. aşağıda yer alan eklenti çok güzel bir eklentidir. Bunuda kullanabilirsin yada beğeneceğin muadili olanda olabilir. Seçim tamamen sana kalmış olur.

http://www.opencart.com/index.php?route=...arch=cache

Ben siteyi 100$a mal etmedim ya şimdi buna bu para verilir mi bilemedim ama emeğe saygım sonsuz tabi Smile
çok telekkür ederim. Ücretsiz birşeyler bulmaya çalışacağım, muhtemelen ücretsizi çıkana kadar da böyle devam Smile
web sitenin hızı normal değerlerde şimdilik almaa gerek yok açıkçası. ama ilerleyen zamanda ürün ve trafiğinde ciddi artışlar olursa o zaman düşünebilirsin.
ibrahim_130
ibrahim_130, üyesi Opencart Türkiye Destek Sitesi ,E-Ticaret Yazılımı Destek Paylaşım Forumu na May 2014 tarihinde katılmıştır.
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: tuncaksoy
tuncaksoyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 54
Konular: 23
Katılma Tarihi: Dec 2015
Rep Puanı: 0
Teşekkürler: 16
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-26-2016 03:47 AM
Birşey fark ettim, önbellekleme yi "analytics.js" için yapmamı söylüyor bu testler.

Aşağıdaki önbelleğe alınabilir kaynaklar için tarayıcı önbelleği özelliğinden yararlanın:
http://www.google-analytics.com/analytics.js (2 saat)

bu olayı nasıl yapabilirim bilginiz var mı?
(03-26-2016 03:47 AM)tuncaksoy Yazılan:  Birşey fark ettim, önbellekleme yi "analytics.js" için yapmamı söylüyor bu testler.

Aşağıdaki önbelleğe alınabilir kaynaklar için tarayıcı önbelleği özelliğinden yararlanın:
http://www.google-analytics.com/analytics.js (2 saat)

bu olayı nasıl yapabilirim bilginiz var mı?

Kendi cevabımı hemen yazayım Big Grin

Bir siteden bulduğum açıklama şu şekilde:

Kodları yerleştirip, seo analiz sitelerinde hala tarayıcı önbellekleme hatası gözüküyor olabilir. Mesela ayrıntılara baktığınız zaman, http://www.google-analytics.com/ga.js
gibi bir link görülebilir. Bu durumda yapılacak birşey yok arkadaşlar. Çünkü dosya google-analytics.com’dan çekiliyor.
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Tarayıcı önbellekleme özelliğinden yararlanın Konusunun Linki Direk Link
Tarayıcı önbellekleme özelliğinden yararlanın Konusunun HTML Kodu HTML Link
Tarayıcı önbellekleme özelliğinden yararlanın Konusu BBCode Linki BBCode Link
Tarayıcı önbellekleme özelliğinden yararlanın Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  Tarayıcı Uyarı Modülü Hakkında muglali20 5 3,660 02-05-2017 07:52 PM
Son Mesaj: iletisimnet
  .htaccess ExpiresActive ile Dosya Önbellekleme e-ticaretdersleri 1 2,652 11-24-2015 09:43 PM
Son Mesaj: demon

Tarayıcı önbellekleme özelliğinden yararlanın indir, Tarayıcı önbellekleme özelliğinden yararlanın Videosu, Tarayıcı önbellekleme özelliğinden yararlanın online izle, Tarayıcı önbellekleme özelliğinden yararlanın Bedava indir, Tarayıcı önbellekleme özelliğinden yararlanın Yükle, Tarayıcı önbellekleme özelliğinden yararlanın Hakkında, Tarayıcı önbellekleme özelliğinden yararlanın nedir, Tarayıcı önbellekleme özelliğinden yararlanın Free indir, Tarayıcı önbellekleme özelliğinden yararlanın oyunu, Tarayıcı önbellekleme özelliğinden yararlanın download


Forum Atla: