Results 1 to 2 of 2
  1. #1

    Default Response :expires Thu, 19 Nov 1981 08:52:00 GMT for page cache

    [Note: remember to include site URL, ZC version, list of plugins, PHP version, etc ... read the Posting Tips shown above for information to include in your post here.
    And, remove this comment before actually posting!]
    Hi everyone.
    My site maybe have a few mistake for cache,and i test in https://gtmetrix.com/ it display as below:
    HTML Code:
    Response Version - HTTP/2
    age	
    
    309
    
    alt-svc	
    
    h3=":443"; ma=86400
    
    cache-control	
    
    no-store, no-cache, must-revalidate, public
    
    cf-cache-status	
    
    HIT
    
    cf-ray	
    
    7fdcfa1a099f8419-YVR
    
    content-encoding	
    
    br
    
    content-type	
    
    text/html; charset=utf-8
    
    date	
    
    Mon, 28 Aug 2023 13:42:20 GMT
    
    expires	
    
    Thu, 19 Nov 1981 08:52:00 GMT
    
    last-modified	
    
    Mon, 28 Aug 2023 13:37:11 GMT
    
    nel	
    
    {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    
    pragma	
    
    no-cache
    
    report-to	
    
    {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=N8COLOR9v7VOU3QoDG4Y39Au478QhJCRBwCI8Sfj4dvmRf9vBABFLIq0wCeqKtjNnWx%2B%2FFth6bo7Kczw51lCDmqxzHP2MyvRNu%2FX3d71vY8ckrsE8IHLjEkVfLY%2FGaVa"}],"group":"cf-nel","max_age":604800}
    
    server	
    
    cloudflare
    
    vary	
    
    Accept-Encoding,User-Agent
    
    x-frame-options	
    
    SAMEORIGIN
    
    x-html-edge-cache-status	
    
    Hit, Refreshed
    
    x-html-edge-cache-version	
    
    -1
    
    x-powered-by	
    
    PHP/8.1.21
    
    Request Version - HTTP/2
    :authority	
    
    heelsbags.com
    
    :method	
    
    GET
    
    :path	
    
    /
    
    :scheme	
    
    https
    
    accept	
    
    text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
    
    accept-encoding	
    
    gzip, deflate, br
    
    accept-language	
    
    en-US,en;q=0.9
    
    sec-fetch-dest	
    
    document
    
    sec-fetch-mode	
    
    navigate
    
    sec-fetch-site	
    
    none
    
    sec-fetch-user	
    
    ?1
    
    upgrade-insecure-requests	
    
    1
    
    user-agent	
    
    Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 GTmetrix
    and .htaccess as below:
    PHP Code:
    <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 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>  
    #AddOutputFilter DEFLATE html xml php js css txt image jpg png webp jpeg gif ico
    </ifmodule>
    <
    IfModule mod_expires.c>
      
    ExpiresActive On
      Header append Cache
    -Control "public"
    #  Header unset Pragma
    #  FileETag None
    #  Header unset ETag

      # Images
      
    ExpiresByType image/jpeg "access plus 1 year"
      
    ExpiresByType image/gif "access plus 1 year"
      
    ExpiresByType image/png "access plus 1 year"
      
    ExpiresByType image/webp "access plus 1 year"
      
    ExpiresByType image/svg+xml "access plus 1 year"
      
    ExpiresByType image/x-icon "access plus 1 year"

      
    # Video
      
    ExpiresByType video/webm "access plus 1 year"
      
    ExpiresByType video/mp4 "access plus 1 year"
      
    ExpiresByType video/mpeg "access plus 1 year"

      
    # Fonts
      
    ExpiresByType font/ttf "access plus 1 year"
      
    ExpiresByType font/otf "access plus 1 year"
      
    ExpiresByType font/woff "access plus 1 year"
      
    ExpiresByType font/woff2 "access plus 1 year"
      
    ExpiresByType application/font-woff "access plus 1 year"

      
    # CSS, JavaScript
      
    ExpiresByType text/css "access plus 1 month"
      
    ExpiresByType text/javascript "access plus 1 month"
      
    ExpiresByType application/javascript "access plus 1 month"

      
    # Others
      
    ExpiresByType application/pdf "access plus 1 month"
      
    ExpiresByType image/vnd.microsoft.icon "access plus 1 year"
    </IfModule>
    ###############################################################################
    # Add custom headers and options
    ###############################################################################
    # Notes:
    #
    # Examples: Adding IE compatibility / edge flags, language and encoding flags,
    # php or suphp directives, configure other Apache modules such as page_speed,
    # and enable or disable Apache httpd options.
    #
    # Do NOT configure anything directly relating to physical or virtual resources
    # in this section. These should be addressed later on in this file.
    ###############################################################################
    #Options -Indexes

    ###############################################################################
    # Enable mod_rewrite processing using the rules in this .htaccess file
    ###############################################################################
    # Notes:
    #
    # <IfModule> should be avoided at all costs. If mod_rewrite is not available
    # it is almost always better to return HTTP 500 status. This way we see there
    # is an issue as soon as the .htaccess file is uploaded.
    #
    # For mod_rewrite to work, the Apache server option to allow symbolic links to
    # be followed must be enabled. Most providers supporting mod_rewrite will
    # already have it enabled for you, but if your rewrite rules are not working
    # you can un-comment the first directive below to manually enable the option.
    #
    # Don't forget, mod_rewrite directives are processed in order until a matching
    # RewriteRule with the [L] flag is encountered. So the more specific a rule is
    # the closer it should appear to the top of this file.
    ###############################################################################
    #Options +FollowSymLinks
    RewriteEngine on

    ###############################################################################
    # Tell mod_rewrite where this file is relative to the server document_root
    ###############################################################################
    # Notes:
    #
    # This directive should only be enabled if this .htaccess file is not placed
    # in the document_root (usually public_html, www, or web) of the (sub)domain.
    #
    # An easy way to determine the location relative to the server document_root is
    # to look at the URL used to access a file in this folder. For example if you
    # access a "page" in the same folder as this file by typing in the URL
    # "www.mydomain.com/myfolder/index.html" then "myfolder" will be the location
    # of this file relative to the server document_root.
    #
    # Another quick and easy way to determine the correct setting for this is to
    # look at the defined value for DIR_WS_CATALOG and DIR_WS_HTTPS_CATALOG in
    # Zen Cart's configure.php files. All three values should match.
    #
    # Don't forget the leading and trailing /. This directive requires both!
    ###############################################################################
    #RewriteBase /shop/


    ###############################################################################
    # Redirect if request was for index.php (no query)
    ###############################################################################
    # Notes:
    #
    # This is only required if the site generates references to index.php with no
    # parameters. This rule will force a 301 redirect to the site root when a
    # request is made for "/index.php" with no query terms (?key=value).
    ###############################################################################
    #RewriteCond %{QUERY_STRING} ^$
    #RewriteRule ^index\.php$ / [R=301,L]


    ###############################################################################
    # Add any custom 301 redirects
    ###############################################################################
    # Notes:
    #
    # In general these should be few and far between. If you use a RewriteRule
    # be sure to add the L flag to let Apache mod_rewrite know to stop processing
    # and skip any RewriteRules defined later in the .htaccess file.
    ###############################################################################


    ###############################################################################
    # Redirect if request was for index.php (with or without query)
    ###############################################################################
    # Notes:
    #
    # This is a performance optimization. If the request is for index.php simply
    # pass the request on and do not process any other mod_rewrite directives in
    # this file.
    #
    # Basically this avoids the overhead of checking if index.php is a real file
    # or directory (used in subsequent mod_rewrite rules) before sending the
    # request to index.php.
    ###############################################################################
    RewriteRule ^index\.php$ - [L]


    ###############################################################################
    # Start Ultimate (SEO) URLs
    ###############################################################################
    # Notes:
    #
    # You should not make any changes in this section unless you really understand
    # how it will impact your web site. Mistakes can break things.
    ###############################################################################

    # Handles the new URL formats
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$4&cPath=$2&%{QUERY_STRING} [L]

    # Original (unchanged) URL formats
    RewriteRule ^(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+)(.*)$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-ezp-([0-9]+)(.*)$ index\.php?main_page=page&id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)(.*)$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]

    # Rewrite all other requests (if the file / directory does not exist)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond 
    %{REQUEST_FILENAME} !-d
    RewriteRule 
    ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]
    RewriteRule ^(.*).htmlindex\.php?main_page=advanced_search_result&keywords=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*).htmlindex\.php?main_page=search_result&search_in_description=$2&%{QUERY_STRING} [L
    Please help me set some parameters correctly to accelerate website loading speed please.
    the site :https://heelsbags.com

  2. #2

    Default Re: Response :expires Thu, 19 Nov 1981 08:52:00 GMT for page cache

    Quote Originally Posted by targetmarts View Post
    [Note: remember to include site URL, ZC version, list of plugins, PHP version, etc ... read the Posting Tips shown above for information to include in your post here.
    And, remove this comment before actually posting!]
    Hi everyone.
    My site maybe have a few mistake for cache,and i test in https://gtmetrix.com/ it display as below:
    HTML Code:
    Response Version - HTTP/2
    age	
    
    309
    
    alt-svc	
    
    h3=":443"; ma=86400
    
    cache-control	
    
    no-store, no-cache, must-revalidate, public
    
    cf-cache-status	
    
    HIT
    
    cf-ray	
    
    7fdcfa1a099f8419-YVR
    
    content-encoding	
    
    br
    
    content-type	
    
    text/html; charset=utf-8
    
    date	
    
    Mon, 28 Aug 2023 13:42:20 GMT
    
    expires	
    
    Thu, 19 Nov 1981 08:52:00 GMT
    
    last-modified	
    
    Mon, 28 Aug 2023 13:37:11 GMT
    
    nel	
    
    {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    
    pragma	
    
    no-cache
    
    report-to	
    
    {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=N8COLOR9v7VOU3QoDG4Y39Au478QhJCRBwCI8Sfj4dvmRf9vBABFLIq0wCeqKtjNnWx%2B%2FFth6bo7Kczw51lCDmqxzHP2MyvRNu%2FX3d71vY8ckrsE8IHLjEkVfLY%2FGaVa"}],"group":"cf-nel","max_age":604800}
    
    server	
    
    cloudflare
    
    vary	
    
    Accept-Encoding,User-Agent
    
    x-frame-options	
    
    SAMEORIGIN
    
    x-html-edge-cache-status	
    
    Hit, Refreshed
    
    x-html-edge-cache-version	
    
    -1
    
    x-powered-by	
    
    PHP/8.1.21
    
    Request Version - HTTP/2
    :authority	
    
    heelsbags.com
    
    :method	
    
    GET
    
    :path	
    
    /
    
    :scheme	
    
    https
    
    accept	
    
    text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
    
    accept-encoding	
    
    gzip, deflate, br
    
    accept-language	
    
    en-US,en;q=0.9
    
    sec-fetch-dest	
    
    document
    
    sec-fetch-mode	
    
    navigate
    
    sec-fetch-site	
    
    none
    
    sec-fetch-user	
    
    ?1
    
    upgrade-insecure-requests	
    
    1
    
    user-agent	
    
    Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 GTmetrix
    and .htaccess as below:
    PHP Code:
    <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 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>  
    #AddOutputFilter DEFLATE html xml php js css txt image jpg png webp jpeg gif ico
    </ifmodule>
    <
    IfModule mod_expires.c>
      
    ExpiresActive On
      Header append Cache
    -Control "public"
    #  Header unset Pragma
    #  FileETag None
    #  Header unset ETag

      # Images
      
    ExpiresByType image/jpeg "access plus 1 year"
      
    ExpiresByType image/gif "access plus 1 year"
      
    ExpiresByType image/png "access plus 1 year"
      
    ExpiresByType image/webp "access plus 1 year"
      
    ExpiresByType image/svg+xml "access plus 1 year"
      
    ExpiresByType image/x-icon "access plus 1 year"

      
    # Video
      
    ExpiresByType video/webm "access plus 1 year"
      
    ExpiresByType video/mp4 "access plus 1 year"
      
    ExpiresByType video/mpeg "access plus 1 year"

      
    # Fonts
      
    ExpiresByType font/ttf "access plus 1 year"
      
    ExpiresByType font/otf "access plus 1 year"
      
    ExpiresByType font/woff "access plus 1 year"
      
    ExpiresByType font/woff2 "access plus 1 year"
      
    ExpiresByType application/font-woff "access plus 1 year"

      
    # CSS, JavaScript
      
    ExpiresByType text/css "access plus 1 month"
      
    ExpiresByType text/javascript "access plus 1 month"
      
    ExpiresByType application/javascript "access plus 1 month"

      
    # Others
      
    ExpiresByType application/pdf "access plus 1 month"
      
    ExpiresByType image/vnd.microsoft.icon "access plus 1 year"
    </IfModule>
    ###############################################################################
    # Add custom headers and options
    ###############################################################################
    # Notes:
    #
    # Examples: Adding IE compatibility / edge flags, language and encoding flags,
    # php or suphp directives, configure other Apache modules such as page_speed,
    # and enable or disable Apache httpd options.
    #
    # Do NOT configure anything directly relating to physical or virtual resources
    # in this section. These should be addressed later on in this file.
    ###############################################################################
    #Options -Indexes

    ###############################################################################
    # Enable mod_rewrite processing using the rules in this .htaccess file
    ###############################################################################
    # Notes:
    #
    # <IfModule> should be avoided at all costs. If mod_rewrite is not available
    # it is almost always better to return HTTP 500 status. This way we see there
    # is an issue as soon as the .htaccess file is uploaded.
    #
    # For mod_rewrite to work, the Apache server option to allow symbolic links to
    # be followed must be enabled. Most providers supporting mod_rewrite will
    # already have it enabled for you, but if your rewrite rules are not working
    # you can un-comment the first directive below to manually enable the option.
    #
    # Don't forget, mod_rewrite directives are processed in order until a matching
    # RewriteRule with the [L] flag is encountered. So the more specific a rule is
    # the closer it should appear to the top of this file.
    ###############################################################################
    #Options +FollowSymLinks
    RewriteEngine on

    ###############################################################################
    # Tell mod_rewrite where this file is relative to the server document_root
    ###############################################################################
    # Notes:
    #
    # This directive should only be enabled if this .htaccess file is not placed
    # in the document_root (usually public_html, www, or web) of the (sub)domain.
    #
    # An easy way to determine the location relative to the server document_root is
    # to look at the URL used to access a file in this folder. For example if you
    # access a "page" in the same folder as this file by typing in the URL
    # "www.mydomain.com/myfolder/index.html" then "myfolder" will be the location
    # of this file relative to the server document_root.
    #
    # Another quick and easy way to determine the correct setting for this is to
    # look at the defined value for DIR_WS_CATALOG and DIR_WS_HTTPS_CATALOG in
    # Zen Cart's configure.php files. All three values should match.
    #
    # Don't forget the leading and trailing /. This directive requires both!
    ###############################################################################
    #RewriteBase /shop/


    ###############################################################################
    # Redirect if request was for index.php (no query)
    ###############################################################################
    # Notes:
    #
    # This is only required if the site generates references to index.php with no
    # parameters. This rule will force a 301 redirect to the site root when a
    # request is made for "/index.php" with no query terms (?key=value).
    ###############################################################################
    #RewriteCond %{QUERY_STRING} ^$
    #RewriteRule ^index\.php$ / [R=301,L]


    ###############################################################################
    # Add any custom 301 redirects
    ###############################################################################
    # Notes:
    #
    # In general these should be few and far between. If you use a RewriteRule
    # be sure to add the L flag to let Apache mod_rewrite know to stop processing
    # and skip any RewriteRules defined later in the .htaccess file.
    ###############################################################################


    ###############################################################################
    # Redirect if request was for index.php (with or without query)
    ###############################################################################
    # Notes:
    #
    # This is a performance optimization. If the request is for index.php simply
    # pass the request on and do not process any other mod_rewrite directives in
    # this file.
    #
    # Basically this avoids the overhead of checking if index.php is a real file
    # or directory (used in subsequent mod_rewrite rules) before sending the
    # request to index.php.
    ###############################################################################
    RewriteRule ^index\.php$ - [L]


    ###############################################################################
    # Start Ultimate (SEO) URLs
    ###############################################################################
    # Notes:
    #
    # You should not make any changes in this section unless you really understand
    # how it will impact your web site. Mistakes can break things.
    ###############################################################################

    # Handles the new URL formats
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$4&cPath=$2&%{QUERY_STRING} [L]

    # Original (unchanged) URL formats
    RewriteRule ^(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+)(.*)$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-ezp-([0-9]+)(.*)$ index\.php?main_page=page&id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)(.*)$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]

    # Rewrite all other requests (if the file / directory does not exist)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond 
    %{REQUEST_FILENAME} !-d
    RewriteRule 
    ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]
    RewriteRule ^(.*).htmlindex\.php?main_page=advanced_search_result&keywords=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*).htmlindex\.php?main_page=search_result&search_in_description=$2&%{QUERY_STRING} [L
    Please help me set some parameters correctly to accelerate website loading speed please.
    the site :https://heelsbags.com
    and i have a wordpress https://guestcn.com in this hosting,it work fine,and i have try to copy the .htaccess to https://heelsbags.com but it display same result

 

 

Similar Threads

  1. v150 As I can set the Expires and Cache-Control in my ZC (Windows, GoDaddy)?
    By juliooscar in forum General Questions
    Replies: 0
    Last Post: 14 Feb 2012, 12:47 AM
  2. Wrong Cache-Control HTTP Response
    By andreitero in forum Basic Configuration
    Replies: 8
    Last Post: 19 Sep 2010, 11:38 AM
  3. USPS Patch Nov 19 2007 for v1.3.7 and earlier
    By Ajeh in forum Zen Cart Release Announcements
    Replies: 1
    Last Post: 20 Nov 2007, 12:43 AM
  4. How to change time for GMT in Admin
    By tempestade in forum General Questions
    Replies: 2
    Last Post: 13 Oct 2007, 12:18 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR