Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Error Log - an unknown filter was not added: includes

Tags:

logging

apache

I'm getting multiple instances of the following error in my Mac OS X Apache error_log:

[Thu Jun 25 17:11:56.789373 2015] [core:error] [pid 277] [client 127.0.0.1:58739] AH00082: an unknown filter was not added: includes

I've been searching but haven't been able to locate what the cause of this is. Is there a way to get more specific details about what is causing this?

like image 677
user982124 Avatar asked Jun 25 '15 07:06

user982124


1 Answers

Actually what most likely happened was:

  1. You have SetOutputFilter DEFLATE in your config
  2. You have NOT enabled the mod_deflate module

In my particular case, I had to simply uncomment this line:

LoadModule deflate_module libexec/apache2/mod_deflate.so

and then all was well.

like image 142
lensovet Avatar answered Oct 10 '22 05:10

lensovet