chonkat
Forum Replies Created
-
Ok, so it looks like wordfence community has a 2fa feature now.
Maybe this is why it conflicts with our other plugin.
https://pasteboard.co/2K3XS7qsfyDI.png- This reply was modified 5 months, 1 week ago by chonkat.
I just had this happen after updating wordfence and our wp-2fa plugin at the same time. admin accounts (2fa enabled) couldn’t log in. They could after i delete the wp-2fa plugin from the plugins folder.
It seems some incompatibility between wordfence and wp-2fa has arisen.Forum: Plugins
In reply to: [Redis Object Cache] Simple question about the GUI memory infoUnderstood, thank you!
I understand our purchase might be out of support. What are the current versions of each of these?
Hi! Thanks for your answer.
These are the two I have installed.Gift Cards For WooCommerce Pro: 3.5.3
Ultimate Gift Cards For WooCommerce: 2.5.3Should they both have the same version number?
Forum: Plugins
In reply to: [WooCommerce] Update 4.4.0 Causes Fatal ErrorsSame problem. Reverted woocommerce to 4.3.3 I hope the db is not all messed up now b/c I had tried to update to wc 4.4.0!
Need WP-Rocket AND Woo-Commerce latest versions to work togetharrr!
- This reply was modified 4 years, 3 months ago by chonkat.
Forum: Plugins
In reply to: [WebP Express] web p express to s3updated aws sync to this:
usr/local/bin/aws s3 sync –acl public-read /var/www/html/yoursite/wp-content/uploads/2020 s3://yourbucket/sh/wp-content/uploads/2020/ –expires “$(date -d ‘+6 months’ –utc +’%Y-%m-%dT%H:%M:%SZ’)” –cache-control ‘max-age=31104000’
This is only for the 2020 folder. The copy to s3 script to use when copying to s3 right after uploading new images/converting with WebP Express will probably have less time.
cache-control headers are important going in to the bucket.
The header handling in the rest of .htaccess is from Web P Express, including the cache-control settings there.
Part “c” will be avoiding ALL those redirects when doing it this way.
Forum: Plugins
In reply to: [WebP Express] web p express to s3This might not be the best way, but in case it is helpful, for part “b” above redirecting to clodfront I am using this in .htaccess:
————-
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{REQUEST_FILENAME} (?i)(.*)(wp-content/uploads)(.*)(\.jpe?g|\.png)$ RewriteCond %1%2%3%4\.webp -f
RewriteRule ^(.*)(\.jpe?g|\.png)$ https://mycdnsite.com/wp-content/uploads/$1$2\.webp [T=image/webp,E=EXISTING:1,E=ADDVARY:1,L,R=302]RewriteCond %{HTTP_ACCEPT} !image/webp
RewriteCond %{REQUEST_FILENAME} (?i)(.*)(wp-content/uploads)(.*)(\.jpe?g|\.png)$
RewriteRule ^(.*)(\.jpe?g|\.png)$ https://mycdnsite.com/wp-content/uploads/$1$2 [E=EXISTING:1,E=ADDVARY:1,L,R=302]——————-
I still need to put some time into part “a” above (sync from site to s3 when an image is uploaded). For now using “aws s3 sync”