pluginkollektiv / cachify

Smart but efficient cache solution for WordPress. Use DB, HDD, APC or Memcached for storing your blog pages. Make WordPress faster!
https://wordpress.org/plugins/cachify/
GNU General Public License v2.0
101 stars 32 forks source link

Change the CondPattern used to check if the request method is GET #270

Closed angcl closed 2 years ago

angcl commented 2 years ago

It was brought to Florian‘s and my attention that the CondPattern used does not work properly and the cache is done via the PHP fallback. Therefore, I hereby submit my proposal for a change.

Let‘s assume a page that is cached on the hard disk. The proposal then fulfils the following conditions:

I was able to test it at netcup and for me it works with the change as desired. Please check the behaviour again with different hosts.

Zodiac1978 commented 2 years ago

This looks still wrong, looking at the docs https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritecond

The string comparison operator is part of the CondPattern argument and must be included in the quotes if those are used. Eg. RewriteCond %{HTTP_USER_AGENT} "=This Robot/1.0"

Or am I missing something here?

Zodiac1978 commented 2 years ago

Shouldn‘t review on mobile. This looks perfectly fine. Was just confused by the use of the „=„ here.

stklcode commented 2 years ago

There are 8 working variants in Apache httpd 2.4:

RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{REQUEST_METHOD} =GET
RewriteCond %{REQUEST_METHOD} "GET"
RewriteCond %{REQUEST_METHOD} "=GET"
RewriteCond "%{REQUEST_METHOD}" GET
RewriteCond "%{REQUEST_METHOD}" =GET
RewriteCond "%{REQUEST_METHOD}" "GET"
RewriteCond "%{REQUEST_METHOD}" "=GET"

For single-word patterns without brackets the quotes are not actually necessary. The quoted reference states that the operator (=) must be placed inside the quotes, if quotes are used. If there are none, there's no need to add them just because of the operator. It just says what we already discovered, i.e. ="GET" is wrong. (technically it is a valid pattern, but we are expecting GET here and don't want to match the two quotes)

The explicit equals sign is not strictly required either. Actually it's missing in almost any reference examples... I personally do prefer the short version that @angelocali used, for such simple one-word equality checks.