>I did not have perl installed when I installed Apache however, I later installed it.
>Is this the issue?
Most likely. When you install Apache, the apxs script is modified to point to Perl. If there was no perl installed at the time of install, it points to nothing. Edit the apxs script and look at the first line. It is probably something like
#! no-perl-installed
You need to change it to
#! /path/to/perl/
usually /usr/local/bin/perl. If you don't know for sure, try typing which perl at the command prompt. It will tell you where it finds perl in the system path.
-Sean
