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.
0
votes
0answers
5 views
http errror with moose and coercion in a mod-perl environment
I use perl Moose in a mod-perl environment and it works ok - execpt if I change the code it sometimes causes in ISE like "A coercion action already exists for 'HashRef'...".
Restarting apache clears ...
1
vote
0answers
7 views
conflicting perl blocks in separate virtual hosts
I am hosting a test site through a VirtualHost on my local machine. I sometimes have the need to test changes I made against a version of site before changes, just to see the differences in behaviour. ...
0
votes
1answer
26 views
-1
votes
0answers
18 views
Customized homepage for bugzilla [closed]
I am using bugzilla 4.2.5. I need to redirect to 'My bugs' page, once a user logged in.
...
4
votes
2answers
44 views
Why doesn't use warnings FATAL => 'all' seem to work?
This script:
use warnings FATAL => 'all';
warn 'warning';
die 'death';
...results in 'warning' getting logged, but doesn't die at that point, instead dying with 'death'.
I have a mod_perl ...
-1
votes
2answers
52 views
Perl convert date timezone without datetime module
I have a date in the format: 05/26/2013 06:08:00
The timezone of above date is GMT -7
how can i change the above to GMT date and time and in format:
26 May 2013 13:08:00 GMT
Note: I cannot install ...
15
votes
3answers
230 views
What criteria should I use to evaluate a Perl “app server” (mod_perl replacement)?
Short version:
What criteria should I use to evaluate possible candidates for a Perl "app server" (mod_perl replacement)?
We are looking for some sort of framework which will allow executing various ...
0
votes
1answer
21 views
How to capture error page screenshot of Apache error page?
I would like to configure Apache to capture screenshot of error page to save into a directory from where a cron script will attach it to email and send to my testing/developer colleague to debug and ...
0
votes
0answers
10 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
24 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
66 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
56 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
64 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
41 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
75 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
49 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
56 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
192 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
174 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
183 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
76 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
69 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
72 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
64 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
43 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
38 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
73 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
62 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
66 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
1answer
194 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
194 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
81 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
158 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
165 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
371 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
176 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
69 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
87 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 ...
1
vote
1answer
89 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
108 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
283 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
87 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
898 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
253 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
469 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
78 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
179 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
102 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 ...

