Apache+mod_perl+JServ

2001-06-20 Thread Константин Михайлов
Hi mod_perlers ! I'm not sure, may be my question is off topic. If it is did you point me in the right list if possible ? Currently we are developing entirely mod_perl end user application using Embperl template system. Our customer has about 50-100 workstations and Sun Enterprise 250 w/ 512 MB

Re: Apache+mod_perl+JServ

2001-06-20 Thread Ged Haywood
Hi there, On Wed, 20 Jun 2001, [koi8-r] ëÏÎÓÔÁÎÔÉÎ íÉÈÁÊÌÏ× wrote: > I'm not sure, may be my question is off topic. Only parts of it! There's an Embperl List too, check out the mod_perl home page for the URL. > Currently we are developing entirely mod_perl end user application using > Embperl

Re: Unable to build apache + mod_perl on AIX

2001-06-20 Thread Jens-Uwe Mager
On Tue, Jun 19, 2001 at 10:02:55PM -0500, Steven Lembark wrote: > apache_1.3.20 mod_perl-1.25 > AIX kbs80 3 4 000C30CD4C00 unknown > > Problem: regardless of what arg's I've tried or all-in-one, one-step I > keep getting > xlC as the compier and CFLAGS which include "-qlonglong -q32 -maxmem'.

Re: Apache+mod_perl+JServ

2001-06-20 Thread Mithun Bhattacharya
Hello list members, I was looking at various options to monitor applications running on my server and was wondering what is the usual practice in such situations. I am looking at data collection in the lines of sysstat. It collects data of various resources in real time and saves it in a binary

Re: Apache+mod_perl+JServ

2001-06-20 Thread Vasily S. Petrushin
On Wed, 20 Jun 2001, ëÏÎÓÔÁÎÔÉÎ íÉÈÁÊÌÏ× wrote: > Date: Wed, 20 Jun 2001 14:51:49 +0500 > From: ëÏÎÓÔÁÎÔÉÎ íÉÈÁÊÌÏ× <[EMAIL PROTECTED]> > To: modperl <[EMAIL PROTECTED]> > Subject: Apache+mod_perl+JServ > > Hi mod_perlers ! > > I'm not sure, may be my question is off topic. If it is did you poi

Long application.Session timeouted.

2001-06-20 Thread Landin Nikolay
Hi, all I have a problem. I am using Apache::ASP module. When I try to do a long process - the client page write "Page not found" after some period. How can I to tell client, that server application is still working? May be - I must just change some Session variables? I tried to change $Sessi

InstallProblem mod_perl125 on Win2000 and Apache1.3.20

2001-06-20 Thread Michael Heinen
Hy I have a problem to install mod_perl1.25 for Apache 1.3.20 on Win2000. ActivePerl-5.6.1.626 I have installed on my system and Apache is running in C:\Apache. mod_perl-1.25.tar.gz is extracted to C:\temp\perl. Now I try to generate the makefile with following line. perl Makefile.PL APACH

Re: Advanced daemon allocation

2001-06-20 Thread Keith G. Murphy
Stas Bekman wrote: > > On Tue, 19 Jun 2001, Keith G. Murphy wrote: > > > Matthew Byng-Maddick wrote: > > > > > > On Mon, Jun 18, 2001 at 10:41:50AM -0500, Keith G. Murphy wrote: > > > > This is only true if you're serving images off the mod_perl server which > > > is crazy unless you're generat

Curious About Require

2001-06-20 Thread Purcell, Scott
Hello, I have a question about require when using mod-perl. I produced four simple .pl files. main.pl, one.pl two.pl three.pl >From the main.pl you can link to either one two or three.pl. Pretty simple. The problem begins when I put a require in "one.pl, two.pl, and three.pl". If in each of thos

RFC: new module: Apache::FakeEnv

2001-06-20 Thread Thomas Klausner
Hi! I am currently working on a module that generates a Fake Apache Request Object like Apache::FakeRequest does, but that also parses the Apache Configuration and enables the user to access values set with PerlSetVar (i.e. fake $r->dir_config). This Request Object can than be used in mod_per

Re: Curious About Require

2001-06-20 Thread Mark Doyle
Greetings, require will only happen once per perl process and since mod_perl is essentially a single perl process, the file is only require'd for the first request. You can get around this by deleting the file from the %INC hash which keeps track of which files you have loaded. Something like:

Newbie: Please help me in installing mod_perl

2001-06-20 Thread VIDYASAGAR R NALLU
Hi, I'm completely new to mod_perl. So please don't scold me too hard if i'm asking silly question. Basically i installed and configured Apache web server, working fine with out any problem. Now i would like to install mod_perl. According to documentation using ppm i installed ppd file of mod_per

Re: Curious About Require

2001-06-20 Thread Perrin Harkins
> I have a question about require when using mod-perl. The full story is at http://theoryx5.uwinnipeg.ca/guide/porting/Name_collisions_with_Modules_and. html It sounds like you're having trouble because your .pl files are not real modules but rather subs that get added into the current package s

Re: Curious About Require

2001-06-20 Thread Stas Bekman
On Wed, 20 Jun 2001, Purcell, Scott wrote: > Hello, > I have a question about require when using mod-perl. I produced four simple > .pl files. > main.pl, one.pl two.pl three.pl > > >From the main.pl you can link to either one two or three.pl. Pretty simple. > > The problem begins when I put a req

Re: Curious About Require

2001-06-20 Thread Stas Bekman
On Wed, 20 Jun 2001, Mark Doyle wrote: > Greetings, > > require will only happen once per perl process and since mod_perl > is essentially a single perl process, the file is only require'd > for the first request. You can get around this by deleting the file from > the %INC > hash which keeps tra

Re: Curious About Require

2001-06-20 Thread Stas Bekman
On Thu, 21 Jun 2001, Stas Bekman wrote: > On Wed, 20 Jun 2001, Mark Doyle wrote: > > > Greetings, > > > > require will only happen once per perl process and since mod_perl > > is essentially a single perl process, the file is only require'd > > for the first request. You can get around this by de

ModPerl package Q

2001-06-20 Thread Purcell, Scott
Hello, Well, this is the last time I am going to bring this up. I am on Apache NT, and I have the following .pm file that I believe I localized everything in order to create a socket. The code below does work. But it never makes a new socket. As you can see I print out the IO::Socket::GLOB and it

Re: Newbie: Please help me in installing mod_perl

2001-06-20 Thread Robin Berjon
On Wednesday 20 June 2001 17:49, VIDYASAGAR R NALLU wrote: > According to documentation using ppm i installed ppd file of > mod_perl. Successfully copied "mod_perl.so" into the modules directory of > Apache webserver. > > When i started the server i'm ended up with the following error message: > >

RE: new module: Apache::FakeEnv

2001-06-20 Thread Geoffrey Young
> -Original Message- > From: Thomas Klausner [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 20, 2001 11:27 AM > To: modperl > Subject: RFC: new module: Apache::FakeEnv > > > Hi! > > I am currently working on a module that generates a Fake Apache > Request Object like Apache::Fake

Re: RFC: new module: Apache::FakeEnv

2001-06-20 Thread darren chamberlain
Thomas Klausner ([EMAIL PROTECTED]) said something to this effect on 06/20/2001: > Hi! > > I am currently working on a module that generates a Fake Apache > Request Object like Apache::FakeRequest does, but that also > parses the Apache Configuration and enables the user to access > values set

Re: Curious About Require

2001-06-20 Thread Perrin Harkins
> > > BEGIN { > > > delete $INC{'/foo/bar/query.pl'} if exists $INC{'/foo/bar/query.pl'}; > > > require '/foo/bar/query.pl'; > > > } > > > > Mark, your suggestion doesn't work because of BEGIN. > > Ooops, gotta go to sleep. Your suggestion, Mark, will work :) but only in > Registry/PerlR

Re: ModPerl package Q

2001-06-20 Thread Perrin Harkins
> Well, this is the last time I am going to bring this up. I am on Apache NT, > and I have the following .pm file that I believe I localized everything in > order to create a socket. The code below does work. But it never makes a > new socket. As you can see I print out the IO::Socket::GLOB and i

Re: Curious About Require

2001-06-20 Thread Mark Doyle
Greetings, On Wednesday, June 20, 2001, at 12:45 PM, Stas Bekman wrote: > Ooops, gotta go to sleep. Your suggestion, Mark, will work :) but only > in > Registry/PerlRun which executes BEGIN on every request. > > Sorry about my previous post :( > > But if you delete and reload the file on every

Re: ModPerl package Q

2001-06-20 Thread Joshua Chamas
"Purcell, Scott" wrote: > > Hello, > Well, this is the last time I am going to bring this up. I am on Apache NT, > and I have the following .pm file that I believe I localized everything in > order to create a socket. The code below does work. But it never makes a > new socket. As you can see I

Re: Curious About Require

2001-06-20 Thread Perrin Harkins
I hate to belabor this point, but I don't want people to get the wrong idea: > > BEGIN { do '/foo/bar/query.pl'; } > > Sorry, I guess I should have been more explicit. I don't want to > require in the file on every request, but rather only allow the > same file to be require'd multiple times (to

Re: Requests using If-Modified-Since cause response Set-Cookie to be discarded

2001-06-20 Thread Nenad Steric
Hi, Thanks for your answer, saved me days of probably fruitless fidling around with modperl. Your solution solved my problems (see "Sending Cookies on Page-Reload") the question remains if this violates some RFC's (or breaks some browsers), and if there is some other way - like faking that the

Re: InstallProblem mod_perl125 on Win2000 and Apache1.3.20

2001-06-20 Thread Randy Kobes
On Wed, 20 Jun 2001, Michael Heinen wrote: > Hy > > I have a problem to install mod_perl1.25 for Apache 1.3.20 on Win2000. > > ActivePerl-5.6.1.626 I have installed on my system and Apache is running in > C:\Apache. > > mod_perl-1.25.tar.gz is extracted to C:\temp\perl. > > > Now I try to generat

Socket On NT Resolved

2001-06-20 Thread Purcell, Scott
Hello, Well after two weeks of posting that socket issue up on this site, one member came forward with the following info: Set in httpd.conf ThreadsPerChild 1 This problem should go away. Its a bug I ran into for the first time a few years back, and seems to have to do with any network sockets

Sudden mod_perl weirdness

2001-06-20 Thread Isaac Horton
I could really use some help. I checked in all the faq's and common problem sections to no avail. So hear is my problem, bearing in mind that I do not have my own server. I rent space, so all my problems are via the .htaccess file. Basically everything was fine and then poof I get internal server

RE: Sudden mod_perl weirdness

2001-06-20 Thread Geoffrey Young
-Original Message- From: Isaac Horton To: mod_perl Sent: 6/20/01 6:44 PM Subject: Sudden mod_perl weirdness >I could really use some help. I checked in all the faq's and common >problem >sections to no avail. So hear is my problem, bearing in mind that I do >not >have my own server. I re

Re: Long application.Session timeouted.

2001-06-20 Thread Joshua Chamas
Landin Nikolay wrote: > > Hi, all > I have a problem. > I am using Apache::ASP module. There is a new Apache::ASP mailing list. You can subscribe to it at [EMAIL PROTECTED] > When I try to do a long process - the client page write "Page not found" > after some period. > > How can I to tell cl