mod-perl is an Apache web server module. The module improves the performance of Perl CGI scripts. Scripts are loaded into memory on the first invocation and added to the Apache process. On each subsequent invocation the script is run directly with no need for loading and parsing.

learn more… | top users | synonyms

0
votes
0answers
6 views

singleton session using mod_perl

I have two pages: index.cgi and login.cgi. In my index.cgi i have a CGI::Session Object, and in login.cgi i am trying to get the CGI::Sesion Object, but I am getting another Object. index.cgi ...
1
vote
1answer
20 views

Determine application directory of Catalyst application running under mod_perl

When running under mod_perl Cwd's getcwd returns / When using Mojolicious, I can simply put $self->app->home in any controller to determine the absolute path to the base directory in which the ...
0
votes
2answers
57 views

perl regex to match any `word character' except Q

I need a regex to match any character or word except Q. I tried using the expression /\b((?!(Q)).+?)\b/ but it is not working!
1
vote
1answer
39 views

How to track down what Apache process is doing

I occasionally have Apache processes that go to 100% of CPU usage and never quit. When this happens 8 times (8 CPUs), the server becomes unusable. According to server-status, the "hung" process is a ...
1
vote
1answer
40 views

Can Nodejs run behind Apache and is it supported?

Apache creates a new Thread for each request or more accurately, it re-uses a Thread from a pool of Threads but Node.js is essentially a single Thread. Would there be any complication in running a ...
1
vote
1answer
37 views

Really weird perl syntax error adding TO_JSON method to package

In adding a TO_JSON method (to convert a blessed reference via JSON.pm) into CGI::Cookie if I do this: package CGI::Cookie; sub TO_JSON { return { map { name => $_->name, ...
0
votes
1answer
62 views

mojolicious script works three times, then crashes

The following script should demonstrate a problem I'm facing using Mojolicious on OpenBSD5.2 using mod_perl. The script works fine 4 times being called as CGI under mod_perl. Additional runs of the ...
1
vote
2answers
43 views

perl module for creating CLI [closed]

I wish to know is there any existing perl module which can provide the framework to create new CLI commands ? Thanks Arpit
0
votes
1answer
48 views

Ip address with the address 192.168.0.0 network in http request header

Using mod_perl for Apache 1.3. Address of the client get the headers X-Forwarded-For, HTTP_X_FORWARDED_FO,or environment variable $ENV{REMOTE_ADDR}: sub address { my $self = shift; ...
0
votes
1answer
110 views

having some problems installing mod_perl on windows

I want to run Perl on an Apache webserver in Xampp for Windows, but when i want to install Perl from the documentation here: http://perl.apache.org/docs/2.0/os/win32/install.html, there is 1 line i ...
0
votes
1answer
100 views

xampp 1.8.1 perl not working and tthrowing error 500

I am using xampp 1.8.1 on windows 7 and want to use it for perl, but when i execute even the most easy hello world perl script it gives me an error 500. Does anybody know what i am doing wrong? this ...
1
vote
1answer
172 views

web service using perl, wsdl and multi-threading does not working

web service using perl, wsdl and multi-threading not working: Command line execution with threading: works Soap client call with threading: doesn't work Soap client call without threading: works ...
-4
votes
1answer
72 views

Compare files, then enter coordinates into perl script then run perl script with pre-written commands and coordinates [closed]

I would like a batch that reads a file called ships.txt, then takes the entries (each on a line) from that file and compares them to a file with the file extension of *.map (say test.map), looking for ...
0
votes
1answer
62 views

multiple instances of Singleton CGI Object in perl

i hava a cgi page index.cgi and one template of login form as index.cgi use Singleton::CGI; use Singleton::Session; $q = new Singleton::CGI(); $session = new Singleton::Session(); $template = ...
1
vote
0answers
60 views

apache error Denied Access to method

I'm completely stuck and have no idea why this is happening - please HELP!! :) I have a javascript that's trying to call a method coded in Perl. The javascript function: function getSOAP() { var ...
2
votes
1answer
54 views

How to run a background process with mod perl

I am using perl to return data sets in XML. Now I have come across a situation where I need to run some clean up after sending a dataset to the client. But some where, in the chain of mod perl and ...
0
votes
0answers
33 views

Segmentation Fault of Apache about XML Parser

I have encountered the following error of segmentation fault in Apache. It seems that XML::Parser has a problem. But, I have no idea to solve the segmentation fault. Does anyone know the solution or ...
1
vote
1answer
30 views

How can I clear all cached objects using Cache::FileCache?

I am using Cache::FileCache and the cache stored in /tmp/FileCache/ In the /tmp/FileCache/ there are 3 dirs: __AUTO_PURGE__ Default namespace Which one is safe to deletes to clear the cache?
-1
votes
1answer
72 views

Retrieve a value from object in perl

I am getting $VAR1 = bless( \*{'Fh::fh00001Screenshot.png'}, 'Fh' ); in a variable. But I need to retrieve fh00001Screenshot.png from it. How can I get it?
0
votes
1answer
57 views

Cpan module for Video upload

In my perl website we have a image uploader, there we used Image::Magick module to read image file, Now we want to implement video and audio file upload as well, Please suggest me any cpan module ...
0
votes
0answers
55 views

Perl script running manually from commandline, but not on my browser

We had migrated our website's source code to a new server. In the previous server[perl version 5.8.0] the script was running perfectly fine. in the new server[perl version 5.8.8] though I get the ...
0
votes
0answers
175 views

mkdir //.ssh: Permission denied at /usr/lib/perl5/site_perl/5.8.8/Net/SSH/Perl/Util/Hosts.pm line 92

I'm using "Net::SFTP" in perl cgi file to put files to a windows M/C from my dev box. After adding below new directory manually (with 0777 permissions) everything works fine: bash-4.1$ pwd /.ssh ...
-1
votes
1answer
155 views

Error while Installing mod_perl [closed]

I am getting an error as shown below while installing mod_perl. I am using Ubuntu 12.04 , Apache2.2.22 , Perl 5.14. Please let me know How can i fix it root@hafsal-sparksupport:~/mod_perl-2.0.7# ...
-3
votes
1answer
79 views

What does this Perl function call do? [closed]

This is a program that prints a directory recursively. Here $top is the path to the directory to be printed, and $code is a subroutine reference. sub dir_walk { my ($top, $code) = @_; my ...
1
vote
1answer
134 views

how can i store an object in perl session

I am having an Emp (class) object with fields name, id and password: $emp = new Emp({name=>'pavan', id=>101, password=>'05cc11'}); $serializble = freeze($emp); Storing in session: ...
0
votes
1answer
157 views

LWP::UserAgent, mod_perl causing large Apache error logs

Each time LWP::UserAgent or LWP::Simple is used with mod_perl (PerlRun), Ubuntu 10.04.4 and Apache 2.2.14 I get about 50 or so error messages in the Apache error log: Constant subroutine ...
2
votes
1answer
332 views

Most viable WebSocket/Perl solution

The company I'm working at uses Perl for all "backend related" stuff. However, we would like to use some real-time communication between server-processes and connected clients via browser. We are ...
2
votes
1answer
164 views

Why I am getting: Undefined subroutine

I am trying to move existing perl files to a new server and I am getting an error (error_log file). It work on the old server. When I access to: http://2x.29.xx.xx/admin/web.pl I get an error: ...
0
votes
1answer
1k views

Error: Bareword “params” not allowed while “strict subs”

After clicking on a submit button, I am getting an error: Bareword "params" not allowed while "strict subs" in use at /var/www/path/get.pl line 71 Line 71: my @names = params; I do have use ...
1
vote
1answer
65 views

Change perl for mod_perl

I've just installed a new version of perl on my linux webserver(upgrading from 5.10.1 to 5.12.4), and I'd hoped that everything will go smoothly but it seems that it didn't. The default perl version ...
1
vote
1answer
85 views

Capturing stack traces on exceptions with mod_perl

I am converting some cgi scripts to mod_perl. Under cgi, I used a sig DIE to capture stack traces whenever there was an uncaptured exception, and logged them. This worked great: whenever something ...
0
votes
1answer
76 views

mod_perl script going in to a tight loop during 'use' processing

I have a rather complex problem to describe. I'm looking for any suggestions for further debugging. I'm trying to convert to mod_perl from regular cgi. I send an http request to a script that loads ...
0
votes
2answers
105 views

Serving up images under mod_perl using file::copy fails

I have a CGI script that serves up images using the File::Copy CPAN module: use File::Copy; .... (set appropriate content header) binmode STDOUT; copy $imageFile, \*STDOUT || die "Image delivery ...
5
votes
2answers
260 views

Moving from CGI to mod_perl. Understanding my, our, local

I've been using apache mod_cgi during some years. Now I am moving to mod_perl and I have found some problems, specially with subroutines. Until now I was never using my, our nor local; and the CGI ...
2
votes
0answers
80 views

Bugzilla 4.2.2: Adding attachment parameter to enter_bug.cgi call

On Bugzilla 4.2.2, I can set up default text for a bug with a call like: http://bugzilla.foo.com/enter_bug.cgi?product=foobar&short_desc=foobaz%20is%20broken But I am not sure what to modify, or ...
0
votes
1answer
768 views

Parser error : Opening and ending tag mismatch:

I have a problem reading XML file. If you please look at xml below you see element <fl> ?fl> instead of <fl></fl>. I receive error opening and ending tag mismatch. How to: ...
0
votes
2answers
220 views

Using perl system grep

Have the below perl grep regex and it's working properly. my @cont = grep {/,\s*511747450\s*,\s*CAN2\s*$/} @fileContents; I want to convert it to unix system grep and I tried the same regex ...
0
votes
2answers
403 views

Regarding Perl DBD::Oracle installation in local directory

I want to connect with the oracle database from a perl script in solaris servier. Able to see DBI is installed but not DBD::Oracle in the current perl version 5.8.4. I dont have root acess and ...
0
votes
1answer
72 views

Is Apache::Request (old perl/apache) the same as HTTP::Request (new perl/Apache)?

Hello Perl warriors. I'm totally new to the language and have been placed on a interesting project of porting an application that was originally written for Apache 1.3 (and the older Perl), to RHEL ...
1
vote
1answer
160 views

No errors inside apache error.log when perl script fail

I'm trying to debug why my index.pl file generate an error, but inside the error log of apache there is nothing logged. How can I set properly my environment to see what's happened? I don't think is a ...
0
votes
4answers
84 views

Output is not valid for My type declaration

The below code gives some strange output. Can any one explain the problem? use warnings; my $P = 10; print "My Var: $P\n"; display(); my $P = 12; display(); sub display() { print "My Var: ...
3
votes
1answer
99 views

uninitialized eq warning wwhen there is a regex match

I get a uninitialized value in string eq at *** line xxx warning in my code, which would be easy too fix if there actually was aneq at that line. But there is a regular expression match on a value ...
-1
votes
4answers
206 views

perl regular expression digit match

Doing the below regex match to verify whether date is in the YYYY_MM_DD Format. But the regular expression gives an error message if i have a value of 2012_07_7. Date part and month should be exactly ...
1
vote
2answers
446 views

parsing date string in perl

I am trying to check whether variable test is having a valid date format. It works successfully when the format is 'YYYY/MM/DD'. If i change the format to 'DD/MM/YYYY' (my $test="20/4/2012") it's ...
0
votes
0answers
36 views

performance issues on Apache 2.0.49 with Oracle: 10.2.0.3, Oracle DataGaurd 10.2.0.4.0 and rsync- 2.6.2

We are running a web application on Apache 2.0.49 with Oracle: 10.2.0.3, Oracle DataGaurd 10.2.0.4.0 and rsync- 2.6.2, with perl v5.8.3. the application is experiencing lot of latency issues while ...
-5
votes
1answer
219 views

Perl string works from command prompt but not from system() in CGI script

Within my CGI script: system("/home/httpd/cgi-bin/hbplus/hbplus /home/httpd/html/pdb1wdk.ent"); print $?; The system command is passes a file (e.g. pdb1wdk.ent) as to hbplus. This is an exe file ...
0
votes
4answers
342 views

How do I access variable's value in perl where I have multiple variables with its value and ends with ;

I have a txt file like this $CHUNK_QTY = "50000"; $CLIENT = "hi all"; $CLIENT_CODE = "NMB"; $COMPOSER = "DIALOGUE"; $CONTROL_FILE_NAME = "NMBM725.XML"; $COPY_BASE = "01"; $CSITE = "NSH"; ...
2
votes
2answers
3k views

Installing mod_perl-2.0.7 on Apache httpd-2.4.2

I am having an infuriating time trying to get an install of apache with perl. I am following the instructions on the mod_perl site located here: ...
0
votes
2answers
608 views

Perl error: Can't locate XFileConfig.pm in @INC

I'm trying to install a Perl script in my server. When I received Server access. I installed apache2, mod_perl, activated mod_rewrite in var/www/html when I try to execute install.cgi I get the ...
1
vote
2answers
278 views

Perl Scripts Seem to be Caching?

I'm running a perl script via mod_perl with Apache. I am trying to parse parameters in a restful fashion (aka GET www.domain.com/rest.pl/Object/ID). If I specify the ID like this: GET ...

1 2 3 4 5