Hi @salviof ,
Can you tell me exactly what issues are you having? Are you getting any error messages?
Let me know.
Thank you.
Ok, my varnish cache all GET request, To work, I had to ignore cache when path containing one of this 3 parts “wp-media-storage-to-cloud” “wp-cloud” “w2cloud”
Thats working fine now..
Thats a example in VCL varnish:
if (req.url ~ "wp-media-storage-to-cloud"){
return (pass);
}
if (req.url ~ "wp-cloud"){
return (pass);
}
if (req.url ~ "w2cloud"){
return (pass);
}
-
This reply was modified 5 years, 2 months ago by
salviof.
The exactly what issues cause are: They do not load the new sent configuration, then the sync button does not appear.
Hi @salviof ,
Can you please give us a screenshot of the entire page and the error log console?
However, you may purge reverse proxy cache to see if this works.
Also, can you please try disabling the Varnish cache on WordPress admin to check if it’s working?
Let me know if this works.
Thank you.
Yes when purge they works once time.
Hello @salviof ,
Great! Feel free to let us know if you face any further issues.
Thank you.