关于mod_ext_filter的问题,请了解的网友帮忙分析一下是哪里的问题。

关于mod_ext_filter的问题,请了解的网友帮忙分析一下是哪里的问题。

环境 centos 4.3 apache 2.0.5

apache配置

./configure --prefix=/usr/local/apache  --enable-so --enable-ssl --with-ssl=/usr/local/openssl --enable-rewrite --with-module=aaa:../mod_limitipconn-0.22/mod_limitipconn.c

安装 mod_ext_filter 方式
/usr/local/apache/bin/apxs -i -c  modules/filters/mod_ext_filter.c

修改 httpd.conf

LoadModule ext_filter_module modules/mod_ext_filter.so

ExtFilterDefine fixtext mode=output intype=text/html cmd="/home/test.pl"

<Directory />
   Options FollowSymLinks
   AllowOverride None
   SetOutputFilter fixtext
</Directory>

test.pl 内容如下且设置权限777
#!/usr/bin/perl
my @tmp = <STDIN>;
open TEST, "/var/www/html/abc.txt";
my @test = <TEST>;
print @tmp,@test;


————————————————
以上,安照我找的资料如此配置后因该访问任意一个网页都会在网页的后边加上 abc.txt文件里的内容。但是我却得到白屏,没有任何显示,察看apache error_log没有错误报告
察看 access_log 显示如下(我访问的测试页面名为test.html)

"GET /test.html HTTP/1.1" 200 -
"GET /test.html HTTP/1.1" 304 -
"GET /test.html HTTP/1.1" 304 -
"GET /test.html HTTP/1.1" 200 -

我后来测试了在apache 2.23下也是如此,请问有没有网友可以指点一下或给点意见?
谢谢。

这是个很好的mod,你用它来做些什么?
我准备提供免费个人主页,可能要用到它,介绍下使用经验?
我还没有实际应用,目前只是在学习。

到目前我还没有测试成功,如果你要试验成功了,别忘了来分享一下。

继续求教。
正在研究,关注
还在测试这个功能但是还不行,有人愿意给提示么?


QUOTE:
原帖由 乔苏 于 2006-12-16 03:43 发表
环境 centos 4.3 apache 2.0.5

apache配置

./configure --prefix=/usr/local/apache  --enable-so --enable-ssl --with-ssl=/usr/local/openssl --enable-rewrite --with-module=aaa:../mod_limitipconn-0. ...

test.pl输出到文件,看看是否获取到了正确的结果。

另外test.pl是否是可执行的,是apache用户可以的。