Hello,
I have installed the mod_perl for you and confirmed that it is actually working.
Captured with live http header plugin
HTTP/1.x 200 OK
Date: Fri, 03 Jun 2005 04:56:31 GMT
Server: Apache/1.3.33 (Unix) mod_perl/1.29 mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.3.11 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html
BTW when I was checking your server, apache was not running and throwing segmentation fault. I think you were aware of it, as the machine got rebooted, while I was on the server.
So I had to recompile the apache with mod_perl disabled (not sure that was the cause of segmentation fault) and instead of Cpanel's APACI way of compiling mod_perl, I used apxs.
I am pasting below the compilation..
[root@cpanel root]# cd /usr/src/
[root@cpanel src]# wget http://perl.apache.org/dist/mod_perl-1.29.tar.gz
--21:47:14-- http://perl.apache.org/dist/mod_perl-1.29.tar.gz
=> `mod_perl-1.29.tar.gz'
[root@cpanel src]# tar xvzf mod_perl-1.29.tar.gz
mod_perl-1.29
[root@cpanel src]# cd mod_perl-1.29
[root@cpanel mod_perl-1.29]# perl Makefile.PL USE_APXS=1 WITH_APXS=/usr/local/apache/bin/apxs EVERYTHING=1
[root@cpanel mod_perl-1.29]# make && make test
[root@cpanel mod_perl-1.29]# make install
Apxs way of module compilation has a major beneift that you don't have to recompile apache if you ever feel to disable the mod_perl module. For disabling mod_perl, open up httpd.conf and comment out the below lines and restarting the server.
LoadModule perl_module libexec/libperl.so
AddModule mod_perl.c
I hope this helps..
Note: You can see the statically compiled modules when you execute " /usr/local/apache/bin/httpd -l "