Admin-Ahead Community

Linux => Control Panels => cPanel => Topic started by: lijeshk on November 08, 2013, 09:54:01 pm

Title: How to enable asp extension on a cPanel server?
Post by: lijeshk on November 08, 2013, 09:54:01 pm

Initialy, we should make sure that the apache module mod_mono is enabled in the server. You can enable it via easyapache. In non-panel linux servers. you need to enable it manually using source.

Then make sure that the perl module apache:asp is installed. You can do it using the following steps.

Code: [Select]
perl -MCPAN -e shell
cpan> install Bundle::Apache::ASP

If you want to install/add additional functionality to the exising “Apache::ASP” installation then you can do that by running the below command:

Code: [Select]
cpan> install Bundle::Apache::ASP::Extra
If you face any trouble during installing the bundle or if it throws any error then, try installing the necessary modules one at a time:

Code: [Select]
cpan> install MLDBM
cpan> install MLDBM::Sync
cpan> install Digest::MD5 (This may not be need if perl version is v5.8.8)
cpan> install Apache::ASP

You can also install this from whm >>install a perl module section

---