Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to enable asp extension on a cPanel server?  (Read 4204 times)

0 Members and 1 Guest are viewing this topic.

lijeshk

  • Guest
How to enable asp extension on a cPanel server?
« 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

---