Hey I need to install mod_perl on my server and wanted to make sure these steps from another post cover the whole setup-
Quote Originally Posted by eglwolf View Post
PLESE NOTE: change the x.xx to the actual version number of mod_perl you have downloaded.


# Get the mod_perl .tar.gz from http://search.cpan.org/dist/mod_perl/

# unpack it:
$ tar xzf mod_perl-x.xx.tar.gz

# get into the directory
$ cd mod_perl-x.xx

# Configure
$ perl Makefile.PL USE_APXS=1 WITH_APXS=/usr/local/apache/bin/apxs EVERYTHING=1

# Make
$ make

# Install
$ make install

# Activate
$ /usr/local/apache/bin/apxs -a -n perl -i libperl.so
This covers the basic install and gets it running for all accounts I have on my server correct? Thanks for the help there are just alot of different methods for installing from what i have searched and wanted to make sure. Also im running fedora i686 with cpanel 10.9. Thanks again for the help.