Clear cache not working on bedrock sites
-
This is the request after clicking on clear cache “PURGE https://joselucasafonso.com//.* “, I identified that the cleaning is not carried out due to the “//”. To fix the problem I implemented:
// Create path to purge. $purgeme = $schema . $host . $path . $pregex; $purgeme = preg_replace('#([^:])//+#', '$1/', $purgeme); // New line that fixed the problem
This newline removes the double slashes, keeping only one. I ask the developers to implement this fix, so I can get the next updates.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Clear cache not working on bedrock sites’ is closed to new replies.