shembelcut
Forum Replies Created
-
Hello @mateuszgbiorczyk,
Thanks for your response.
Actually I followed all the steps in FAQ, I tried using both ngnix and apache for my website and it both scenarios I can’t get the redirects working via “via .htaccess (recommended)” option.
However if I change the setting to “Pass Thru (without rewrites in .htacces files or Nginx configuration)” I can see that my browser is fetching the webp format but then all the images in REST API responses are still jpg and png format.I doubled checked the following files:
– /wp-content/.htaccess
– /wp-content/uploads/.htaccess
– /wp-content/uploads-webpc/.htaccess
and they are not empty:# BEGIN WebP Converter # ! --- DO NOT EDIT PREVIOUS LINE --- ! <IfModule mod_mime.c> AddType image/webp .webp </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/webp "access plus 1 year" </IfModule> # ! --- DO NOT EDIT NEXT LINE --- ! # END WebP Converteralso I have added following rule as an additional nginx directives :
location ~ /wp-content/(?<path>.+)\.(?<ext>jpe?g|png|gif)$ { if ($http_accept !~* "image/webp") { break; } add_header Vary Accept; expires 365d; try_files /wp-content/uploads-webpc/$path.$ext.webp $uri =404; }Also I tried serving assets files directly by nginx as well as apache.
so basically I tried pretty much all the scenarios but seems like something is not right on my VPS.Forum: Plugins
In reply to: [Login by Auth0] Redirect too many times after entering credentials@auth0josh Here’s the HAR for your reference
https://www.dropbox.com/s/7en4tapb843gd5l/chromewebdata.har?dl=0
Thanks
Forum: Plugins
In reply to: [Login by Auth0] Redirect too many times after entering credentials@auth0josh Followed all the steps in documentation but facing the same issue, even tried turning off the caching but “ERR_TOO_MANY_REDIRECTS” is still happening.
any hints what could cause it ?- This reply was modified 7 years ago by shembelcut.
Thanks for your response.
Just created a ticket with more details.
The plugin was always enabled though.Forum: Plugins
In reply to: [Multiple Featured Images] Can’t see the additional featured images‘post_type’ => array( ‘page’ ),
you have to modify this line based on post types that you are willing to add the second featured image.Forum: Plugins
In reply to: [Multiple Featured Images] Can’t see the additional featured imagesany help !?