- 🇩🇪Germany Anybody Porta Westfalica
Closing this as duplicate of 🐛 File extensions added in "search404_ignore_query" are being ignored. Fixed for 2.x! It will be solved over there.
I think extensions to abort search will never work because of a bug in search404GetKeys()
$path = preg_replace('/[_+-.,!@#$^&*();\'"?=]|[|]|[{}]|[<>]/', '/', $path);
if (preg_match("/\.($extensions)$/i", $key)) {
Correct me if I'm wrong as I'm not too good with regexps. Removing \. solves the problem...
if (preg_match("/($extensions)$/i", $key)) {
... but now it skips search404 for any request with one of "extensions to abort" anywhere in URI (/some/png/article123 or /some.png)
I ended up with this
if (!empty($extensions)) {
$ext = array_pop($keys); // get the last keyword which probably is extension
if (preg_match("/($extensions)$/i", $ext)) {
return FALSE;
}
}
Closed: duplicate
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Closing this as duplicate of 🐛 File extensions added in "search404_ignore_query" are being ignored. Fixed for 2.x! It will be solved over there.