chonkat
Forum Replies Created
-
Forum: Plugins
In reply to: [Shipping Zones by Drawing for WooCommerce] geocoding api key usage spikeI just sent a message through your website with some logs from today.
I noticed on your changelog 3.1.2.7 was recenlty released with these notes:
- New behavior: Google Maps script loads asynchronously with the Dynamic Library Import API.
- Compatibility: Compatibility fix with Check my address plugin.
Could the “New behavior” have something to do with this and help resolve it? If so, is 3.1.27 only available to subscribers?
Thank you for your time, and your response!
- This reply was modified 1 year ago by chonkat.
Forum: Plugins
In reply to: [Shipping Zones by Drawing for WooCommerce] Google Maps QuotaWere you able to resolve this? I am having really high geocoding api usage since march, for some reason, with no changes in settings, as far as i know.
Thank you wfpeter. I disabled WP Cerber and it works as expected now.
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 1 year, 11 months 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!
Forum: Plugins
In reply to: [Ultimate Gift Cards for WooCommerce] Gift card spamming in order informationI understand our purchase might be out of support. What are the current versions of each of these?
Forum: Plugins
In reply to: [Ultimate Gift Cards for WooCommerce] Gift card spamming in order informationHi! 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 5 years, 9 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”