前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Apache的一个错误:[error] an unknown filter was not added: PHP

Apache的一个错误:[error] an unknown filter was not added: PHP

作者头像
数据和云01
发布2018-09-12 16:03:13
1.1K0
发布2018-09-12 16:03:13
举报
文章被收录于专栏:数据库新发现数据库新发现

在apache的日志里经常看到这个错误: [Fri Oct 08 14:49:18 2004] [error] an unknown filter was not added: php [Fri Oct 08 14:49:18 2004] [error] an unknown filter was not added: php [Fri Oct 08 14:49:20 2004] [error] an unknown filter was not added: php [Fri Oct 08 14:49:20 2004] [error] an unknown filter was not added: php [Fri Oct 08 14:49:40 2004] [error] an unknown filter was not added: php 自己的apache的版本是: [root@eygle logs]# apachectl -v Server version: Apache/2.0.49 Server built:   Jun 15 2004 16:55:22 还是自己的经验不够,刚才查了一下,找到了答案:

[25 Mar 2003 1:56pm CET] bugs at pointb dot co dot uk

Hi,

I have re-installed PHP as a DSO module on Apache 2.0.44 and I am unable
to use the new filter options. In v4.3.1 I could use the following:

<Files *.php>
       SetOutputFilter PHP
       SetInputFilter PHP
</Files>

<Files *.phps>
       SetOutputFilter PHP
       SetInputFilter PHP
</Files>

When I use this I am prompted to download the script and I get the
following in my error log:

[error] an unknown filter was not added: PHP

However if I use the older formatting with 4.3.2RC1 all works well:

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

Is this a bug, or have I missed some documentation that tells me this is
no longer included?

Thanks.

[25 Mar 2003 2:54pm CET] iliaa@php.net

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
 and the instructions on how to report
a bug at 

Since 4.3.2RC the default Apache 2 sapi is the apache2handler and is no
longer filter based. Therefor you should use
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

and not

<Files *.php>
       SetOutputFilter PHP
       SetInputFilter PHP
</Files>

If you do want to use the old filter sapi, you need to use
--with-apxs2filter option.

[25 Mar 2003 2:55pm CET] iliaa@php.net

read above comment.

原文链接:

http://bugs.php.net/bug.php?id=22881
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2004年10月14日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档