@astrix
Something is wrong with your setup, you should see Expiration time, check the screenshot below:
https://www.dropbox.com/s/q3asb1wpvi4kypl/Screenshot%20at%20Jan%2008%2007-18-15.png?dl=0
Can you please try to delete and re-install the plugin?
In-order to remove the .htaccess you’ll have disable the minify feature, As there’s no option to selectively remove the .htaccess file as it gets generated automatically.
Thread Starter
Astrix
(@astrix)
Hello @bornforphp, I think the issue is coming from WP Optimize because I installed the latest version on another website install and same happened. Also, check this video: https://youtu.be/gYEDOhKY1QE?t=534 @8min55 you can see he can’t modify the delay.
I also tried on a fresh wordpress install, same issue
I don’t have minify activated
I tried other brower cache plugin and they managed to add entries to my .htaccess file
Thank you
-
This reply was modified 5 years, 4 months ago by
Astrix.
-
This reply was modified 5 years, 4 months ago by
Astrix.
@astrix Can you please try to keep only default WordPress .htaccess rules in .htaccess file and check if you see the Expiration option in Static file headers tab?
Thread Starter
Astrix
(@astrix)
Hello @bornforphp, I can confirm that this issue is still there even on a fresh and clean WordPress 5.6 install with no other plugin than WP Optimize.
Gzip entries are properly added in the main .htaccess file by WP-Optimize, but nothing related to browser cache and no delay option in wpo browser cache tab (tried deactivating, reactivating wpo with no luck):
# BEGIN WP-Optimize Gzip compression
<IfModule mod_filter.c>
<IfModule mod_deflate.c>
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType font/x-woff .woff
AddType image/svg+xml .svg
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-font-woff
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE font/woff
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
# Remove browser bugs (only needed for really old browsers)
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
</IfModule>
</IfModule>
# END WP-Optimize Gzip compression
In the .htaccess located in the wpo-cache folder, this is the content:
# Disable directory browsing
Options -Indexes
# Disable access to any files
<FilesMatch “.*”>
Order allow,deny
Deny from all
</FilesMatch>
-
This reply was modified 5 years, 4 months ago by
Astrix.