Since last update Purge All not working anymore
-
Hello,
I like very much your plugin, but since the last update version 5.1.0 Purge Cache (All Pages) is not working anymore, although it purges an individual product page when it is changed.
Here is the VCL purge code that I am using:if(req.method == "PURGE") { if(!client.ip ~ purge) { return(synth(405,"PURGE not allowed for this IP address")); } if (req.http.X-Purge-Method == "regex") { ban("obj.http.x-url ~ " + req.url + " && obj.http.x-host == " + req.http.host); return(synth(200, "Purged")); } ban("obj.http.x-url == " + req.url + " && obj.http.x-host == " + req.http.host); return(synth(200, "Purged")); }Thanks,
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Since last update Purge All not working anymore’ is closed to new replies.