-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
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
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
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
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
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
"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
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
> 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
> > > 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
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
> -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
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:
>
>
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
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
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
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
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
> 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
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
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:
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
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
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
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
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
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
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
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'.
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
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
31 matches
Mail list logo