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.
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 |
What is the easiest way to download the contents of a URL with Perl?
How the interpreter is used in Perl?
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.
How do I sort a hash by the hash value?
Explain string comparison operators in perl.
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 ?
Elaborate on perl bite-wise operators.
How to make the following assignment, as arrayreference assignment ? my $arr_ref='[1,2,3,4,4,'elem']';
How do find the length of an array?
Write a program to decode the data in the form using cgi programming
Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.
How will you get the count of parameters passed to a perl subroutine?