outdoorphoto
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude uingI would like to exclude any pages on our online shop, which is here:
https://www.outdoorphoto.co.za/I would like to include any pages on our blog, which is here:
https://www.outdoorphoto.co.za/blog/Our shop is not cached by default. But as you should be able to see I’ve pulled WordPress functionality into our shop.
My issue has been solved however by modifying your exclude.php file.
- This reply was modified 7 years, 1 month ago by outdoorphoto. Reason: marked as resolved
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude uingEmre,
In your file exclude.php I can find the following line:
return "<?php echo home_url();?>" + "/" + request_uri;
Changing this line to the following allows me to exclude our online shop’s absolute URL (https://www.outdoorphoto.co.za/). In doing so my problem has been solved.
// Default WPFC Code //return "<?php echo home_url();?>" + "/" + request_uri; // ODP Modified Code return request_uri;
- This reply was modified 7 years, 1 month ago by outdoorphoto.
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude uingI have cleared the cache before, after and during.
However, mentioning the exclude rule I am not sure I am describing the problem correctly.
We are running a wordpress blog at (https://www.outdoorphoto.co.za/blog/).
We are running an online shop (not wordpress) at (https://www.outdoorphoto.co.za).Your exclude feature only allows me to exclude pages on the blog, which is running in a subfolder, “/blog/”. Whatever I add to the input in the exclusion list is added as “…/blog/whatever”.
As I am sure you understand, this means that I cannot add to the exclusion list pages that are not originating from the blog itself.Previously you have advised that I use “<!–[wpfcNOT]–>”. However this seems to no longer be working.
The following line appears in the changelog for version 0.7.9:
“[wpfcNOT]” shortcode has been converted to the image Optimisation of CSS minify- This reply was modified 7 years, 1 month ago by outdoorphoto.
- This reply was modified 7 years, 1 month ago by outdoorphoto.
- This reply was modified 7 years, 1 month ago by outdoorphoto. Reason: added changelog version
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude uingGood day Emre,
Thank you for your reply, however the built in functionality unfortunately doesn’t cover our issue since it limits page exclusions to pages on the blog itself. This feature doesn’t allow me to specify URL’s outside of our blog.For instance, I would be able to simply exclude:
https://www.outdoorphoto.co.za/blog/pagesBut I am unable to exclude the following examples:
https://www.outdoorphoto.co.za/
https://www.outdoorphoto.co.za/gopro-hero6-black-action-cameraForum: Plugins
In reply to: [WP Fastest Cache] Exclude, or Include?To anyone reading this looking for the same sort of answer, simply including the following in my external .php file did the trick:
echo “<!–[wpfcNOT]–>”;
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude, or Include?It looks like it’s working!
Thank you for the support jedi master Emre!Forum: Plugins
In reply to: [WP Fastest Cache] Exclude, or Include?Hi Emre,
Thank you for the advice! I’ll give it a go to see if it works with our integration :).