PHP5 preinstalled, but not working with Apache2

I got a new self managed machine. PHP is working from command line, but not configured in apache.
Enviroment
PHP is 5.0.2
Apache 2.0.53
FreeBSD 5.3

I added 3 lines to the httpd.conf

LoadModule php5_module libexec/apache/libphp5.so
#apparently the default on the machine put libphp5 in a wired location in apache install of apache2
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps


When I run apachectl stop, I got this error
" Undefined symbol "ap_block_alarms"

I am not sure if I need to remake both PHP5 and Apache2 to solve this problem.

 

 

 

 

Top