This is so no my area...but I was toled to do these two steps.

f) PHP compiled as Apache module, including MySQL support.
Tested mainly with PHP version 4.3.0 and above. (Note that if
you are compiling mod_php from source, it is good to compile
it against the same MySQL client library as mod_python, so
that the two Apache modules are using the same MySQL client
library. We saw Apache/PHP/Python problems in the past when
they weren't.)
<http://www.php.net/>

g) PHP compiled as a standalone command-line executable (CLI)
(in addition to Apache module) is required, too. As of PHP
4.3.0 you'll obtain the CLI executable by default, so you
don't have to compile it separately. Note that PHP CLI should
be compiled with the process control support (--enable-pcntl)
and the compression library (--with-zlib).
<http://www.php.net/manual/en/install.commandline.php>
<http://www.php.net/manual/en/ref.pcntl.php>

I first did the first one (at least I think), and I made a script like this:

PHP Code:
<?php phpinfo(); ?>
and the PHP thingy came up. So I guess that is working. But I am not 100% sure how to test the second thingy. I didn't do anything more, because I installed PHP 4.4, so I am not sure if I even need to do anything more. I wrote this little thing:

PHP Code:
<?php
echo exec('whoami');
?>
And it outputted "nobody". Does that mean that I have it all up and running. Or is there an other test I should try just to be sure?

Thanks
- ØØ -