• Resolved spottico

    (@spottico)


    I got this warning upon setting the plugin.

    Browser Caching is not working properly:
    – Your server may not have the “expires” module enabled (mod_expires for Apache, ngx_http_headers_module for NGINX)
    – Another plugin may be interfering with the configuration

    please let me know what i can do to enable the plugin to work properly.

    Regards

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @spottico

    I trust you are doing well!

    Please let us know for which types of your site Browser Caching is not enabled? Please share here a screenshot.

    To enable Browser Caching, please go to Hummingbird > Caching > Browser Cashing. Under Configuration choose your server type.

    If your server is Apache, choose it from the drop-down list, select expiry time and click on the Activate button. Please see the attached screenshot:
    https://monosnap.com/file/vnIM6ndefncoj5wEtakixa2UMG6q3k

    If your server is a different type, please follow the instructions that will be automatically shown once a server type is chosen from a dropdown.

    Let us know how it went!

    Kind regards,
    Nastia

    Thread Starter spottico

    (@spottico)

    Hello this is a screenshot of the issue i am facing. please check it and let me know what i can do to fix it.

    https://prnt.sc/rebo17

    Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @spottico

    I hope you are doing well!

    Please see this screencast on how to enable Browser Caching:
    https://take.ms/hwzKi

    If this will not work, please add manually this code to the .htaccess file:

    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault A0
    
    <FilesMatch "\.(txt|xml|js)$">
    ExpiresDefault A31536000
    </FilesMatch>
    
    <FilesMatch "\.(css)$">
    ExpiresDefault A31536000
    </FilesMatch>
    
    <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac|eot|ttf|otf|woff|svg)$">
    ExpiresDefault A31536000
    </FilesMatch>
    
    <FilesMatch "\.(jpg|jpeg|png|gif|swf|webp)$">
    ExpiresDefault A31536000
    </FilesMatch>
    </IfModule>
    
    <IfModule mod_headers.c>
      <FilesMatch "\.(txt|xml|js)$">
       Header set Cache-Control "max-age=31536000"
      </FilesMatch>
    
      <FilesMatch "\.(css)$">
       Header set Cache-Control "max-age=31536000"
      </FilesMatch>
    
      <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac|eot|ttf|otf|woff|svg)$">
       Header set Cache-Control "max-age=31536000"
      </FilesMatch>
    
      <FilesMatch "\.(jpg|jpeg|png|gif|swf|webp)$">
       Header set Cache-Control "max-age=31536000"
      </FilesMatch>
    </IfModule>

    Hope this helps!

    Kind regards,
    Nastia

    Plugin Support Dimitris – WPMU DEV Support

    (@wpmudev-support6)

    Hello @spottico

    I’m marking this topic as “resolved” due to recent inactivity.
    Feel free to post back here any updates or create a new topic about it.
    🙂

    Thank you,
    Dimitris

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Browser Caching is not working properly:’ is closed to new replies.