How to disable the mod_perl from apache_server as i have
used perlfect search on the site and its pagination is not
working and the remedy is to disable the mod_perl.



How to disable the mod_perl from apache_server as i have used perlfect search on the site and its p..

Answer / Mohd Hilal

To disable mod_perl on Apache server, follow these steps:
1. Open your httpd.conf file in a text editor.
2. Find the line that includes 'LoadModule perl5_module' and comment it out by adding a '#' at the beginning.
3. Restart the Apache server for changes to take effect.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More CGI Perl Interview Questions

What is the easiest way to download the contents of a URL with Perl?

1 Answers  


How the interpreter is used in Perl?

1 Answers  


Can any1 tell me 2 write the script using perl script 2 looking at a log file 2 see wheather the test has passed or not.

3 Answers   TCS,


How do I sort a hash by the hash value?

1 Answers  


Explain string comparison operators in perl.

1 Answers  


while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?

1 Answers  


Elaborate on perl bite-wise operators.

1 Answers  


How to make the following assignment, as arrayreference assignment ? my $arr_ref='[1,2,3,4,4,'elem']';

2 Answers  


How do find the length of an array?

0 Answers  


Write a program to decode the data in the form using cgi programming

1 Answers  


Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.

1 Answers  


How will you get the count of parameters passed to a perl subroutine?

1 Answers  


Categories