Robert1112
Forum Replies Created
-
Unfortunately, still not solved. Thank you anyway.
Nice and clean plugin, really like it!
Can you share how you handle with these in your projects? Thanks.
I also noticed the lagging. Here is the script in fucntion.php.
Thanks.
Hi Just sent. Thank you.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] images are not imported correctlyHi @yaniiliev Did you see the message? Thank you.
Where should I sent to? I look around but didnt see your email address. Thanks.
Hi @ streamlinestar
Here is the link.Thank you for your support.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] images are not imported correctlyAnother issue is the loading captured data is a bit slow when customers come back to checkout page.
Hi @@streamlinestar
Sorry for my late reply. No notification email came in somehow.
For example, I have city, state and zipcode dropdown fields on checkout. Dropdown are better for fast checkout.
Here is the code I used to capture these dropdown fields but it cause some problem somehow and I still working on it. Look forward to your advice. Thanks.
Hi If I used CSV format, do I still need php-xml module? Thank you.
Forum: Plugins
In reply to: [Proxy Cache Purge] purge not working with Cloudflare proxyDear Epstein,
Just to close it. It is solved. Thanks for your support and the awesome work.
Forum: Plugins
In reply to: [Proxy Cache Purge] purge not working with Cloudflare proxyDear Epstein,
Thanks for your reply. As previously explained, only Nginx is open to access from internet. Nginx and Varnish are in the same host. To be able to use Varnish IP, I open varnish at port 6081 and fill the server host IP for Vanish IP. Not working.
I modify Varnish VCL to include below trying to include as much IP’s as possible. Can you spot any error or possible solution. I have searched and tried for weeks.
vcl 4.0;
import directors;
backend default {
.host = “balancer2”; # IP or Hostname of backend
.port = “80”; # Port Apache or whatever is listening
.connect_timeout = 600s;
.first_byte_timeout = 600s;
.between_bytes_timeout = 600s;
.max_connections = 128;
}acl cloudflare {
“localhost”;
“127.0.0.1”;
“35.229.143.125”;
“n6.wooshop.com.tw”;
“172.16.128.4”;
“172.17.0.6”;
“172.16.0.0/16”;
“172.17.42.1/16”;
“172.17.0.0/16”;
“172.16.1.0/24”;
“::1”;
}acl purge {
“localhost”;
“127.0.0.1”;
“35.229.143.125”;
“n6.wooshop.com.tw”;
“172.16.128.4”;
“172.17.0.6”;
“172.16.0.0/16”;
“172.17.42.1/16”;
“172.17.0.0/16”;
“172.16.1.0/24”;
“::1”;
}import std;
include “lib/xforward.vcl”;
include “lib/cloudflare.vcl”;
include “lib/purge.vcl”;sub vcl_recv {
# Remove has_js and Cloudflare/Google Analytics __* cookies.
set req.http.Cookie = regsuball(req.http.Cookie, “(^|;\s*)(_[_a-z]+|has_js)=[^;]*”, “”);# Remove a “;” prefix, if present.
set req.http.Cookie = regsub(req.http.Cookie, “^;\s*”, “”);# Remove the cloudflare cookie
set req.http.Cookie = regsuball(req.http.Cookie, “__cfduid=[^;]+(; )?”, “”);….
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] How to let Varnish uncache?Any support? Thank you.
Hi
I am sorry. I figure out it is not caused by your plugin. Sorry for the trouble. Thanks you for your plugin. It is handy.