mod_perl

2001-04-24 Thread Joel Divekar
Hi There What is mod_perl ? I have Apache Server installed on my system. Please can anybody mail me windows installable and its tutorials and other docs directly. Thanks Regards Joel -- QuantumLink Communications, Bombay, India

mod_perl

2001-07-05 Thread Joel Divekar
Hi All Today I installed Indigo Perl on my system and when I tried the sample code which came along with the installation to test mod_perl it gave an error as "Page not found" I checked the following before posting a) I found that the file exists b) path in the html page is also

mod_perl

2002-04-25 Thread Beau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am following instructions found at http://take23.org/intro/index.xml/3 on how to install mod perl with apache already installed. The instructions are % tar xzvf mod_perl-x.xx.tar.gz % cd mod_perl-x.xx % perl Makefile.PL \ USE_APXS=1

mod_perl

2001-10-24 Thread Etienne Marcotte
I read often about that mod_perl that makes perl run a lot faster and etc. I tought until now that it was "by default" mod_perl when it's with the apache distribution, but Brett stated: "and CGI::Carp has some problems when run under mod_perl" Does that mean a script has

Re: mod_perl

2001-04-24 Thread Mo Holkar / UKG
Hi all, This is a very dim question, but hey, this is a beginners' list so I hope you'll forgive me. I want to be able to pass variable data arguments to my perl script from an outside application by calling a command line that's something along the lines of: perl myscript.pl "data1" "data

Re: mod_perl

2001-04-24 Thread Russell
Hi there, On Tue, Apr 24, 2001 at 04:05:38PM +0530, Joel Divekar wrote: > What is mod_perl ? I have Apache Server installed on my system. Please can > anybody mail me windows installable and its tutorials and other docs directly. Basically, mod_perl is a Perl interpretter embedded in

Re: mod_perl

2001-04-24 Thread Gary Stainburn
Hi Mo, The command line arguments are passed to your perl script in the array @ARGV, so in your example "data1" would be held in the 1st element of @ARGV which is $ARGV[0]. check out 'man perlvar' for more info. Gary On Tuesday 24 April 2001 11:53 am, Mo Holkar / UKG wrote: > Hi all, > > Thi

Re: mod_perl

2001-04-24 Thread Matt Cauthorn
Check out http://www.activestate.com/ for information on a mod_perl windows environment. Be warned that Apache is still considered somewhat experimental with Windows! ~Matt __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great

Re: mod_perl

2001-07-05 Thread Francisco Ho
At 01:20 PM 07/05/2001 +0530, you wrote: >Hi All > >Today I installed Indigo Perl on my system and when I tried the sample >code which came along with the installation to test mod_perl it gave an >error as "Page not found" > >I checked the following before po

mod_perl error

2004-01-13 Thread Kyle Sexton
I'm getting an error with a mod_perl script I'm working on that says this: error: [Tue Jan 13 10:59:17 2004] [error] 25297: ModPerl::Registry: Image::Imlib2 load error: No loader for file format at find.pl line 19. The script runs fine when it is at the command line, but when I ru

mod_perl issues

2002-04-04 Thread Adrian C
Hi everybody, 1) Could anyone share their experience in installing mod_perl on Windows (2000 or any for that matter). I read some stories about bad support for multithreading on winxxx as opposed to Linux etc so I wonder if it's worth considering installation on winxxx, but on the other h

RE: mod_perl

2002-04-25 Thread Wayne Dyck
Robert: > To make matters worse, rpm -q perl tells me I'm running perl-5.6.0-12, > quite a wais from the claim of 5.006. From the command line perl -v > gives me, "This is perl, v5.6.0 built for i386-linux" Did you by any chance install perl-5.6.0 from CPAN? I have had something like this happe

Re: mod_perl

2002-04-26 Thread Jonathan E. Paton
us versions are 5.005_xx, subsequently you can consider the version 5.005_03 I have on most of my boxes to be version 5.5.3 If I recall correctly, 5.6.0 had some serious security issues (or was it major bugs?) that makes it totally unsuitable. You really will have to upgrade if you want a safe and

Re: mod_perl

2002-04-26 Thread Beau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 26 April 2002 01:21 am, Jonathan E. Paton wrote: > Okay, here is the problem: > > version 5.6.0 = version 5.006 Jonathan, Thanks for this. More than a little arcane, exactly the kind of thing I can imagine taking years to discover on my o

more mod_perl

2002-04-26 Thread Beau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Good news: reinstalling perl from CPAN source went off without a hitch. So, back to the take23.org instructions for setting up mod_perl with an existing apache, I'm still getting: Unable to determine server version, aborting. Please sp

Re: mod_perl

2001-10-24 Thread Brett W. McCoy
On Wed, 24 Oct 2001, Etienne Marcotte wrote: > I read often about that mod_perl that makes perl run a lot faster and > etc. I tought until now that it was "by default" mod_perl when it's > with the apache distribution, but Brett stated: "and CGI::Carp has > some

RE: mod_perl

2001-10-24 Thread Bob Showalter
> -Original Message- > From: Etienne Marcotte [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 24, 2001 12:13 PM > To: [EMAIL PROTECTED] > Subject: mod_perl > > > I read often about that mod_perl that makes perl run a lot faster and > etc. mod_pe

Re: mod_perl

2001-10-24 Thread Brett W. McCoy
On Wed, 24 Oct 2001, Brett W. McCoy wrote: > See http://perl/apache.org for more information, if you are interested. Oops, that should be http://perl.apache.org -- Brett http://www.chapelperilous.net/

Re: mod_perl

2001-10-24 Thread Etienne Marcotte
Ok, thanks for the infos. Do I need to type use mod_perl; in scripts? And is scipting in strict enough as of "good" scripting is involved? Etienne "Brett W. McCoy" wrote: > On Wed, 24 Oct 2001, Etienne Marcotte wrote: > > > I read often about that mod_perl that

Re: mod_perl

2001-10-24 Thread Brett W. McCoy
On Wed, 24 Oct 2001, Etienne Marcotte wrote: > Do I need to type use mod_perl; in scripts? No, it's handled through the Apache server configuration, although there are Apache::* modules that can be used for extra functionality. > And is scipting in strict enough as of "go

RE: mod_perl

2001-10-24 Thread Bob Showalter
> -Original Message- > From: Etienne Marcotte [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 24, 2001 1:39 PM > To: Brett W. McCoy > Cc: [EMAIL PROTECTED] > Subject: Re: mod_perl > > > Ok, thanks for the infos. > > Do I need to type use mod_perl;

Re: mod_perl

2001-10-24 Thread Etienne Marcotte
I found an interesting website (if any other user is interested) http://take23.org/whatis_mod_perl.xml I will finish my project using normal perl with the DB and if speed is too slow I'll try mod_perl Etienne Bob Showalter wrote: > > -Original Message- > > From:

Mod_perl insight

2001-12-10 Thread Ian Zapczynski
Hello all, I'm a UNIX administrator with prior experience with Perl CGI on Windows NT. It looks as if I may be taking on some new Perl work which will make use of mod_perl with Apache. All I know so far about mod_perl is that the perl scripts run as part of the Apache process inste

Mod_Perl Target Headers

2004-11-04 Thread James Taylor
I posted this to the mod_perl list originally, but noone ever answers my questions on there. Guess my noob questions don't belong on that list: Again, this is for mod_perl Should be a pretty simple question, looking for an option in header_out to target a frame. For example... snip..

APACHE with MOD_PERL

2001-05-23 Thread perl . mail
Hello, I will install apache_1.3.20.tar.gz and mod_perl-1.25.tar.gz on the HP-UX OS. I have installed all perl modules e.g libwww-perl-5.48.tar.gz URI MIME-Base64 HTML-Parser libnet Digest::MD5 HTML::Tagset Finally I am doing following: $gzip -d apache_x.xx.tar.gz $tar xfv apache_x.xx.tar

mod_perl and inheritance

2002-07-09 Thread PURMONEN, Joni
Hello all, I just moved my perfectly functioning script from normal CGI area to mod_perl area and the whole thing stopped working. This is the first time when I am using multiple classes and inheritance in mod_perl and it seems like the inheritance is the culprit. I tried to search the web for

Re: Mod_perl insight

2001-12-10 Thread Etienne Marcotte
> NT. It looks as if I may be taking on some new Perl work which will > make use of mod_perl with Apache. All I know so far about mod_perl is > that the perl scripts run as part of the Apache process instead of > forking a new Perl process each time a script is called (at least I hope

Apache mod_perl concept

2008-10-24 Thread howa
Hello, As described in the mod_perl documents, Apache can share variable (i.e. data) if they are declared during Apache start up. So if I have a shared variable during startup, storing the DBI handler, I assume all the process is sharing this same handler? So if one Apache is doing query, is

PERL VS MOD_PERL

2007-07-04 Thread Dinesh kumar
Hi all, can any one tell me what is the difference between perl and mod_perl in detail ?? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

mod_perl for n00bs

2012-06-03 Thread Mark Haney
What is the best book/tutorial/site/documentation out there to get someone up to speed on mod_perl? I've looked around including the apache site and I've put together bits and pieces, but I certainly don't think I'm getting the whole story. Best practices and so on. Money

Re: Mod_Perl Target Headers

2004-11-04 Thread Chasecreek Systemhouse
On Thu, 04 Nov 2004 20:54:35 -0800, James Taylor <[EMAIL PROTECTED]> wrote: > $r->header_out('Location' => 'http://www.somesite.com/login_expired.html'); Use a client-site anchor to get the client to pull the frame via a normal target. Only the

RE: Mod_Perl Target Headers

2004-11-05 Thread Thomas Bätzler
James Taylor <[EMAIL PROTECTED]> asked: > Should be a pretty simple question, looking for an option in > header_out to target a frame. [...] > Was hoping I could do something like: > $r->header_out('Target'=>'_top'); > > but that doesn't seem to work. Any suggestions? The destination window for

Mod_Perl Pass Associative Arrays

2004-12-10 Thread James Taylor
Hi everyone, wondering if anyone knew how to pass an associative array via POST to mod_perl. Something like: then it posts to say.. example.pl my $r=Apache->request; my $req=Apache::Request->new(shift); my %stuff=$req->param('search'); That for example doesn't wor

Re: APACHE with MOD_PERL

2001-05-23 Thread Matt Cauthorn
I strongly recommend that you let mod_perl do the apache build for you. Just make sure it can find the src directory under apache. Here's a script that I use. Hasn't failed me yet, although YMMV as I'm doing this on Solaris and Linux, not HP-UX. Don't see why it would be sig

RE: mod_perl and inheritance

2002-07-09 Thread Bob Showalter
> -Original Message- > From: PURMONEN, Joni [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 09, 2002 9:21 AM > To: '[EMAIL PROTECTED]' > Subject: mod_perl and inheritance > > > Hello all, > > I just moved my perfectly functioning script from no

RE: mod_perl and inheritance

2002-07-09 Thread PURMONEN, Joni
> Need to see the script and the error messages. Is Apache::Registry the handler? Yes it is. The error messages just complain about not being able to locate a given method, which should be inherited (and is inherited if I move the script to CGI area). the script runs to couple thousand lines,

RE: mod_perl and inheritance

2002-07-09 Thread Bob Showalter
> -Original Message- > From: PURMONEN, Joni [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 09, 2002 9:55 AM > To: '[EMAIL PROTECTED]' > Subject: RE: mod_perl and inheritance > > > > Need to see the script and the error messages. Is > Apache

RE: mod_perl and inheritance

2002-07-15 Thread PURMONEN, Joni
ONEN, Joni'; '[EMAIL PROTECTED]' Subject: RE: mod_perl and inheritance > -Original Message- > From: PURMONEN, Joni [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 09, 2002 9:55 AM > To: '[EMAIL PROTECTED]' > Subject: RE: mod_perl and inheritance > >

errors during "mod_perl" install

2004-06-09 Thread James D. Parra
Hello, Had the following error attempting to install "mod_perl". Any ideas on how to fix this? Thank you in advance. ~James ** A test compilation with your Makefile configuration ** failed. The below error output from the compilation ** test will give you an idea what is failing.

IPC::Open2 and mod_perl

2008-08-03 Thread Ryan
ommand line script, but it seems to mess up the arguments under mod_perl: prince: -: error: could not load input file prince: error: no input documents to process Is there something special I need to do since it's under the mod_perl environment? -- To unsubscribe, e-mail: [EMAIL PROTE

Re: Apache mod_perl concept

2008-10-24 Thread Jeff Pang
2008/10/23 howa <[EMAIL PROTECTED]>: > Hello, > > As described in the mod_perl documents, Apache can share variable > (i.e. data) if they are declared during Apache start up. > > So if I have a shared variable during startup, storing the DBI > handler, I assume all the p

DBI under SOAP/mod_perl

2010-07-18 Thread Dermot
uot; The problem arise when I create an instance under a SOAP::Lite package. The package is running under mod_perl's Registry. In the HTTPD logs I see: DBD::SQLite::db prepare failed: not an error at /etc/perl/Foo.pm line 190. Use of uninitialized value in concatenation (.) or string at

Re: PERL VS MOD_PERL

2007-07-04 Thread Jeff Pang
There are some difference details between them.If you really want to know it,you may first need to see what's mod_perl and how it works.Take a look at: mod_perl official documents: http://perl.apache.org/docs/index.html Why mod_perl by Stas Bekman: http://www.perl.com/pub/a/2002/

Re: PERL VS MOD_PERL

2007-07-04 Thread Chas Owens
On 7/5/07, Dinesh kumar <[EMAIL PROTECTED]> wrote: Hi all, can any one tell me what is the difference between perl and mod_perl in detail ?? Four letters (mod_). Seriously, mod_perl is a Perl interpreter built into Apache to enable some efficiency hacks. -- To unsubscribe,

Re: mod_perl for n00bs

2012-06-03 Thread Chris Nehren
On Sun, Jun 03, 2012 at 17:35:05 -0400 , Mark Haney wrote: > What is the best book/tutorial/site/documentation out there to get > someone up to speed on mod_perl? I've looked around including the > apache site and I've put together bits and pieces, but I certainly > don&#

Re: mod_perl for n00bs

2012-06-03 Thread pangj
book/tutorial/site/documentation out there to get someone up to speed on mod_perl? I've looked around including the apache site and I've put together bits and pieces, but I certainly don't think I'm getting the whole story. Best practices and so on. Money isn't an

Re: mod_perl for n00bs

2012-06-04 Thread Mark Haney
I've read and been told is that mod_perl is a better fit than using CGI.pm like I've been doing. -- Mark Haney Software Developer/Consultant AB Emblem ma...@abemblem.com Linux marius.homelinux 3.3.7-1.fc16.x86_64 GNU/Linux -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For

Re: mod_perl for n00bs

2012-06-04 Thread Chris Nehren
le, etc., which all use Plack/PSGI. These can all be deployed > >on any web server. > > > > Well, from all I've read and been told is that mod_perl is a better > fit than using CGI.pm like I've been doing. Erg. CGI.pm is a terrible idea--runtime string eval and all

Re: mod_perl for n00bs

2012-06-04 Thread Mark Haney
On 06/04/2012 09:57 AM, Chris Nehren wrote: Erg. CGI.pm is a terrible idea--runtime string eval and all that silliness. Please investigate one of the lighter Plack/PSGI frameworks like Dancer and Web::Simple. Really, mod_perl is the wrong tool for the job here. It's for writing Apache mo

Re: mod_perl for n00bs

2012-06-04 Thread Chris Nehren
Dancer and Web::Simple. Really, mod_perl is the wrong tool for the > >job here. It's for writing Apache modules with Perl. This means things > >like altering request flow, authentication, and the like--not Web apps. > > > > Okay, you've talked me into it. What's

Re: mod_perl for n00bs

2012-06-04 Thread Bill Stephenson
On Jun 4, 2012, at 8:57 AM, Chris Nehren wrote: >> >> Well, from all I've read and been told is that mod_perl is a better >> fit than using CGI.pm like I've been doing. > > Erg. CGI.pm is a terrible idea--runtime string eval and all that > silliness. We

Re: mod_perl for n00bs

2012-06-04 Thread pangj
I want to understand why Mark thinks he needs mod_perl. If it's just because he wants to speed up his app (soup up the engine) there might be things he can do that don't require rewriting a lot of code, or spending a lot of time learning a lot of new ways of doing things. Me seco

Re: mod_perl for n00bs

2012-06-05 Thread Mark Haney
On 06/04/2012 09:25 PM, pangj wrote: I want to understand why Mark thinks he needs mod_perl. If it's just because he wants to speed up his app (soup up the engine) there might be things he can do that don't require rewriting a lot of code, or spending a lot of time learning a lot o

Re: mod_perl for n00bs

2012-06-05 Thread 'lesleyb'
On Tue, Jun 05, 2012 at 08:37:33AM -0400, Mark Haney wrote: > On 06/04/2012 09:25 PM, pangj wrote: > > > >>I want to understand why Mark thinks he needs mod_perl. If it's just > >>because he wants to speed up his app (soup up the engine) there might > >&

Re: mod_perl for n00bs

2012-06-05 Thread Bill Stephenson
On Jun 5, 2012, at 7:37 AM, Mark Haney wrote: > > Honestly, it's really not even that complicated. I've been hearing that > using CGI.pm is 'outdated', 'uncool', whatever you want to call it. And > generally speaking the statement after that is ab

Re: Mod_Perl Pass Associative Arrays

2004-12-11 Thread James Taylor
Chris Devers wrote: On Fri, 10 Dec 2004, James Taylor wrote: Hi everyone, wondering if anyone knew how to pass an associative array via POST to mod_perl. Something like: HTML forms don't really provide for complex data structures, so any solution is going to have to be cobbled togethe

Re: Mod_Perl Pass Associative Arrays

2004-12-13 Thread Jenda Krynicky
From: James Taylor <[EMAIL PROTECTED]> > Chris Devers wrote: > > On Fri, 10 Dec 2004, James Taylor wrote: > > > > > >>Hi everyone, wondering if anyone knew how to pass an associative > >>array via POST to mod_perl. Something like: > > > &

Re: Mod_Perl Pass Associative Arrays

2004-12-10 Thread Chris Devers
On Fri, 10 Dec 2004, James Taylor wrote: > Hi everyone, wondering if anyone knew how to pass an associative array > via POST to mod_perl. Something like: HTML forms don't really provide for complex data structures, so any solution is going to have to be cobbled together. I thin

RE: errors during "mod_perl" install

2004-06-09 Thread James D. Parra
Hello, Got past the initial errors by running configure in the ../apache.x.x/src directory. However I have a new error when httpd in the source directory won't start.(below) How can I force the install? make[1]: Leaving directory `/root/.cpan/build/mod_perl-1.29/Util' /usr/src/apa

Mod_Perl in Win2k/Apache-- Beginner

2002-04-04 Thread RArul
Could somebody posit to any resource, on writing a simple Database Accessing Webpage written in MOD_PERL? I am just whetting my feet on mod_perl and I just installed Apache 1.3 on W2K and have got mod_perl binary installed too. Thanks, Rex

Is ggoing to mod_perl easy?

2001-10-30 Thread Etienne Marcotte
I am now doing my website not using mod_perl. I am however using strict everywhere. If I see that the performances aren't satisfying (on a mySQL database), would it be hard to go to mod_perl? Or it's really better to develop right from the start in mod_perl? I have an hard

Re: IPC::Open2 and mod_perl

2008-08-03 Thread Jeff Pang
LD_IN, '/usr/local/bin/prince -'); > > I've also tried this: > > use IPC::Open2; > my $pid = open2(*CHLD_OUT, *CHLD_IN, '/usr/local/bin/prince', ' - ' ); > > It works from a normal command line script, but it seems to mess up the > arguments

Re: DBI under SOAP/mod_perl

2010-07-18 Thread Octavian Rasnita
Does the $dsn contain the full path to the database? -- Octavian - Original Message - From: "Dermot" To: "Perl Beginners" Sent: Friday, July 16, 2010 7:29 PM Subject: DBI under SOAP/mod_perl Hello All, (This is perl, v5.8.8). Sorry if this is a bit s

Re: DBI under SOAP/mod_perl

2010-07-20 Thread Dermot
Hi Octavian, On 19 July 2010 06:07, Octavian Rasnita wrote: > Does the $dsn contain the full path to the database? Yes. The dsn line is declared like this: DBI SQLite3 ### my $dsn = 'dbi:SQLite:dbname=/var/db/MyApp/myapp.db'; It's outside the constructor which I am not sure is good prac

problems with CGI and mod_perl

2006-06-06 Thread sfantar
Hello everyone I have started since today learning how to write cgi in Perl with this doc : http://users.easystreet.com/ovid/cgi_course/lessons/lesson_one.html I am running ubuntu on my pc and I installed the package mod_perl made by ubuntu a few days ago and I was able to run Perl scripts

Trying mod_perl for the first time

2005-01-26 Thread Edward Wijaya
Dear all, I am trying my mod_perl in my Apache webserver for the first time (under Mdk-Linux). I have created a simple "print hello world" script with the name 'hello.pl' and I stored it under 'var/www/cgi-bin/' but whenever I try to open the script with http://

Looking for easy sessions using mod_perl

2005-02-18 Thread Boysenberry Payne
I'm moving from PHP to mod_perl. What a jump... Normally in php it's as simple as: session_start(); Then depending on your settings the session is kept in a cookie or in the url. I've looked into Apache::Session a bit, also Session (which is a wrapper for Apache:Session.) I se

RE: Is ggoing to mod_perl easy?

2001-10-30 Thread John Edwards
You could try fastcgi. What webserver are you using?? www.fastcgi.com -Original Message- From: Etienne Marcotte [mailto:[EMAIL PROTECTED]] Sent: 30 October 2001 13:20 To: [EMAIL PROTECTED] Subject: Is ggoing to mod_perl easy? I am now doing my website not using mod_perl. I am however

RE: Is ggoing to mod_perl easy?

2001-10-30 Thread Sidharth Malhotra
Porting to mod_perl is not exceptionally difficult. Once you have your Apache/mp server up you can still run your scripts as regular cgi, and "port" them to mod_perl one by one. When you "port" a script to mod_perl, you simply need to put it into a directory where script

RE: Is ggoing to mod_perl easy?

2001-10-30 Thread Bob Showalter
> -Original Message- > From: Etienne Marcotte [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001 8:20 AM > To: [EMAIL PROTECTED] > Subject: Is ggoing to mod_perl easy? > > > I am now doing my website not using mod_perl. I am however > using strict

Re: problems with CGI and mod_perl

2006-06-06 Thread Mr. Shawn H. Corey
On Tue, 2006-06-06 at 19:17 +0200, sfantar wrote: > Hello everyone > > I have started since today learning how to write cgi in Perl with this > doc : http://users.easystreet.com/ovid/cgi_course/lessons/lesson_one.html > > I am running ubuntu on my pc and I installed the pac

Re: problems with CGI and mod_perl

2006-06-06 Thread sfantar
sfantar a écrit : Hello everyone I have started since today learning how to write cgi in Perl with this doc : http://users.easystreet.com/ovid/cgi_course/lessons/lesson_one.html I am running ubuntu on my pc and I installed the package mod_perl made by ubuntu a few days ago and I was able

Re: Problems with CGI and mod_perl

2006-06-11 Thread sfantar
J. Alejandro Ceballos Z. -JOAL- a écrit : I am running ubuntu on my pc and I installed the package mod_perl ... Did you installed directly (perl Makefile.PL and so on...) or used the cpan command (mihost# sudo cpan ) ? I found out my solution at last. It was a misunderstood. Thank

Suggest a mod_perl book for apache2

2006-02-11 Thread Brian
Hi all. Can someone suggest a good book for learning mod_perl with apache2. After a little reading I get the impression the two implementations of mod_perl are very different. In searching amazon it seems just about every book is written for mod_perl on apache1.3. Thanks, Brian -- To

Re: Trying mod_perl for the first time

2005-01-26 Thread Alfred Vahau
red, Edward Wijaya wrote: Dear all, I am trying my mod_perl in my Apache webserver for the first time (under Mdk-Linux). I have created a simple "print hello world" script with the name 'hello.pl' and I stored it under 'var/www/cgi-bin/' but whenever I try to open the

Re: Looking for easy sessions using mod_perl

2005-02-18 Thread Perrin Harkins
On Fri, 2005-02-18 at 12:43 -0600, Boysenberry Payne wrote: > Normally in php it's as simple as: > session_start(); It's that easy with mod_perl too if you use Apache::SessionManager. Save yourself some trouble and just use that. http://search.cpan.org/search?query=Apache-Ses

mod_perl: access full request, log it, etc

2009-08-23 Thread Dan
Hi all. I'm setting up a mod_perl & soap server, and a friend is writing a java client. As I commented to him, it's a bit like the blind leading the blind at this point :) His request is causing mod_perl to complain about not being able to serialize the request, with an error in X

move applications from traditional CGI to mod_perl

2005-09-23 Thread Jeff Pan
hi,everyone, I want to move my web applications which written by traditional CGI to mod_perl.Is there any risk or difficulty here? The applications are something about webmail.Which module under mod_perl is suited for me? Any advise or reference to me should be appreciated.TKS. -- Jeff Pan

Re: Suggest a mod_perl book for apache2

2006-02-11 Thread Todd W
"Brian" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all. Can someone suggest a good book for learning mod_perl with > apache2. After a little reading I get the impression the two > implementations of mod_perl are very different. In searching amazon &g

Re: Template toolkit issue [SOLVED] - mod_perl hosting

2012-05-06 Thread Michael Rasmussen
On Sun, May 06, 2012 at 04:04:49AM +0100, 'lesleyb' wrote: > +1 on that. AFAIK, being able to use mod_perl still implies having control of > Apache and it's config. I haven't yet heard of a hosting company providing > mod_perl out there though I'd like to kno

Re: Template toolkit issue [SOLVED] - mod_perl hosting

2012-05-07 Thread Lesley
On Sun, May 06, 2012 at 05:14:08AM -0700, Michael Rasmussen wrote: > On Sun, May 06, 2012 at 04:04:49AM +0100, 'lesleyb' wrote: > > +1 on that. AFAIK, being able to use mod_perl still implies having control > > of > > Apache and it's config. I haven't

Why a program ran with mod_perl runs slower?

2004-12-24 Thread Octavian Rasnita
Hi all, I have tried testing mod_perl with the following script: my $begin = (times)[0]; print "Content-type: text/html\n\n"; sub fib { $_[0] < 2 ? return $_[0] : return fib($_[0] - 1) + fib($_[0] - 2); } $f = fib(29); my $end = (times)[0]; print($end - $begin); -- Well, if I ru

Mod_Perl -- A very basic question to get started

2002-04-12 Thread RArul
Hello Friends, I have all the web-development done in ASP for W2K with IIS Web-Servers and am a newbie to mod_perl. I have a very basic question on this Perl technology. Here it is: What is the primodial or **chief use** of mod_perl with apache? --Is it to run CGI

mod_perl with existing apache (with apologies for parroting...)

2002-04-30 Thread Beau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dear all, I'm trying to install mod_perl (and, ultimately, embperl) following instructions at http://take23.org/intro/index.xml/3. I've upgraded my perl dist to v5.6.1 fo i686-linux. Apache's (1.3.20) already running, tweaked for

Re: mod_perl: access full request, log it, etc

2009-08-23 Thread Bruce Ferrell
Dan wrote: > Hi all. > > I'm setting up a mod_perl & soap server, and a friend is writing a java > client. As I commented to him, it's a bit like the blind leading the > blind at this point :) > > His request is causing mod_perl to complain about not being ab

Re: Why a program ran with mod_perl runs slower?

2004-12-24 Thread Alfred Vahau
Hi, Have you posted on the modperl list? modperl@perl.apache.org Alfred, Hi all, I have tried testing mod_perl with the following script: my $begin = (times)[0]; print "Content-type: text/html\n\n"; sub fib { $_[0] < 2 ? return $_[0] : return fib($_[0] - 1) + fib($_[0] - 2);

Re: Why a program ran with mod_perl runs slower?

2004-12-28 Thread Robert
"Octavian Rasnita" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > > I have tried testing mod_perl with the following script: > > my $begin = (times)[0]; > print "Content-type: text/html\n\n"; > > sub fib { > $_[0] <

RE: Mod_Perl -- A very basic question to get started

2002-04-12 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 12, 2002 10:28 AM > To: [EMAIL PROTECTED] > Subject: Mod_Perl -- A very basic question to get started > > > > Hello Friends, > > I have all the web-develop

Re: Mod_Perl -- A very basic question to get started

2002-04-13 Thread Matt C.
To me, this is a surprisingly tough question to answer. I'd say that the primary use of mod_perl is to speed up your pages via Apache::Registry, Apache::PerlRun or your own handlers. However, it's much more than that. 2 keys for me both personally and professionally are: 1) It allows

Re: mod_perl with existing apache (with apologies for parroting...)

2002-05-01 Thread Matt C.
Ultimately you really should build mod_perl as a static module inside of Apache. Try rebuilding it statically with all your other dso stuff, which is well documented in the mod_perl INSTALL docs. That will make your life much easier. Matt --- Robert Beau Link <[EMAIL PROTECTED]>

input validation and persistency module for (mod_perl) web apps?

2005-10-27 Thread John Doe
input b) differentiate between persistent parameter values and "volatile" ones (the latter meaning a value only used along one request/answer) My idea is to have these points solved at one place in an (mod_perl) app, and then using something analogue to Apache::Request without the

Buildiing mod_perl on 64 bit perl on Solaris 10

2013-05-28 Thread Dariusz Dolecki
Hi, I am getting the following error: Manifying ../blib/man3/Apache::Reload.3 "modperl_perl.c", line 272: undefined symbol: PL_rehash_seed "modperl_perl.c", line 273: undefined symbol: PL_rehash_seed_set cc: acomp failed for modperl_perl.c make[1]: *** [modperl_perl.lo] Error 2 I tried with bot

changing permissions in order to write a file in Mod_perl

2005-04-29 Thread angie ahl
I'm sending this question to the beginners perl list and the mod_perl list as I'm not sure where it belongs. In short: I'm trying to work out how to create a directory/file under a specific user. This is running on MP2 on Apache2 with suexec enabled. The vhost has:

nice low cost ISP with support for mod_perl, any suggestions

2005-09-05 Thread Adriano Ferreira
I am on the verge of trying to deploy a small web application for small business. I would like to see it working preferably under mod_perl. Does anyone has suggestions about possible providers with a good compromise between service quality and cost? As it is directed to small business, it won&#

Re: input validation and persistency module for (mod_perl) web apps?

2005-10-29 Thread John Doe
many thanks to all who answered. joe -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: input validation and persistency module for (mod_perl) web apps?

2005-11-03 Thread Marcello
John Doe ha scritto: Dear list members Maybe the perl-module-authors would be the more appropriate list for my question(s), but here are people confronted with the same tasks to solve when programming web applications, so... Some of the tasks always to be solved in an interactive webapp: a)

Re: input validation and persistency module for (mod_perl) web apps?

2005-11-05 Thread John Doe
Marcello am Donnerstag, 3. November 2005 15.57: > John Doe ha scritto: > > Dear list members > > [...] > > Some of the tasks always to be solved in an interactive webapp: > > > > a) validate/sanitize user input Hi Marcello, Thanks much for your answer to my unclear question. > Data::FormValidato

Re: Buildiing mod_perl on 64 bit perl on Solaris 10

2013-05-28 Thread Alex Mestiashvili
On 05/28/2013 02:33 PM, Dariusz Dolecki wrote: > Hi, > > I am getting the following error: > > Manifying ../blib/man3/Apache::Reload.3 > "modperl_perl.c", line 272: undefined symbol: PL_rehash_seed > "modperl_perl.c", line 273: undefined symbol: PL_rehash_seed_set > cc: acomp failed for modperl_p

Re: nice low cost ISP with support for mod_perl, any suggestions

2005-09-06 Thread Wiggins d'Anconia
Adriano Ferreira wrote: > I am on the verge of trying to deploy a small web application for > small business. I would like to see it working preferably under > mod_perl. Does anyone has suggestions about possible providers with a > good compromise between service quality and co

Re: [Clarification] input validation and persistency module for (mod_perl) web apps?

2005-10-28 Thread John Doe
along one request/answer) > > My idea is to have these points solved at one place in an (mod_perl) app, > and then using something analogue to Apache::Request without the necessity > of caring about a) and b) any more. >No parameter value should be accessible without being defined a

  1   2   >