Re: Redhat httpsd with mod_perl

1999-10-20 Thread Randy Harmon
On Wed, Oct 20, 1999 at 10:47:02PM -0700, Adi wrote: > > On Wed, 20 Oct 1999, Remi Fasol wrote: > Does anyone know why the shared memory would decrease so dramatically? Perl code and data both live in the data segment. As it is used, any time it writes information into a new chunk of memory, th

Re: Redhat httpsd with mod_perl

1999-10-20 Thread Adi
> On Wed, 20 Oct 1999, Remi Fasol wrote: > > > > thanks for your suggestions... > > > > as a test, i set MaxRequestsPerChild to 500, but it > > didn't help. > > > > just out of curosity, could it be that i'm using > > mod_perl as a DSO? i've seen alot of warnings against > > that but that's how th

Re: [SITE] the great redesign of 1999

1999-10-20 Thread Stas Bekman
> On Tue, 19 Oct 1999, Stas Bekman wrote: > > [...] > > So, perl.apache.org is just a VH at apache.org. You have almost no ability > > to add components to the system, and of course no root access. Installing > > mod_perl, mysql, modules is absolutely possible technically, but in > > reality it i

Re: your mail

1999-10-20 Thread Stas Bekman
On Wed, 20 Oct 1999, ÂæÎÄÏÈ wrote: > Hi, > > I am a user of mod_perl and Apache::DBI,I use DBD::Oracle, > but now I have trouble with it,I found many same error logs as follow: > > > [Wed Oct 20 19:39:36 1999] null:

whois webjuice.com

1999-10-20 Thread Web Juice Jobs
Fellow mod_perl hackers- We're using mod_perl technology to build the next generation of internet startups. * Interested in working for an internet startup? * Want equity in a number of startups? * Want to work in San Francisco? Web Juice is looking for talented internet engineers interested i

Re: eval'ed Apache::Session tie panics with POPSTACK?

1999-10-20 Thread Peter Haworth
Tobias Hoellrich wrote: > I wanted to trap non-existant session-id's by bracketing the > > tie %{$href}, 'Apache::Session::DBI', $id, > { >DataSource => 'dbi:mysql:sessions', >UserName => 'db_user', >Password => 'db_passwd' > }; > > with an eval { }; block. Once I've done

No Subject

1999-10-20 Thread ÂæÎÄÏÈ
Hi, I am a user of mod_perl and Apache::DBI,I use DBD::Oracle, but now I have trouble with it,I found many same error logs as follow: [Wed Oct 20 19:39:36 1999] null: Rebuild with -DPERL_STACKED_HANDLERS to $r->pus

Re: PerlTransHandler

1999-10-20 Thread Mark Cogan
At 10:03 AM 10/19/99 -0700, William Deegan wrote: >Eric Cholet wrote: >> >> On Tuesday, October 19, 1999 4:13 AM, William Deegan [SMTP:[EMAIL PROTECTED]] wrote: >> > How can I change the environment variables that get passed to a perl >> > script running under Apache::Registry from a PerlTransHan

server internal error

1999-10-20 Thread Fred CHAUSSUMIER
Hello, I installed apache and mod_perl with the rpm provided with the RedHat 5.2. I configured my server and tried to execute a .wpl file with apache. I finally got this message: The server encountered an internal error or misconfiguration and was unable to complete your request. I then look

Re: Server Stats

1999-10-20 Thread austin . plunkett
Hi. I realise this is getting off-topic, so I suppose replies should go direct to me unless they'll interest the list. I work on a site that makes use of mod_perl, Apache and MySQL. We are currently toying around with our server set-up, trying to spread the load across multiple machines. For web-

Proxy Servers & VHosts

1999-10-20 Thread Viren Jain
I have two domains which use heavy amounts of dynamic content, but servers are often stuck returning images to clients (dynamically pulled from a database), and thus it seems proxying would be an effective solutions. However, I have many subdomains configured in my Apache setup,

Re: [SITE] the great redesign of 1999

1999-10-20 Thread Ask Bjoern Hansen
On Tue, 19 Oct 1999, Stas Bekman wrote: [...] > So, perl.apache.org is just a VH at apache.org. You have almost no ability > to add components to the system, and of course no root access. Installing > mod_perl, mysql, modules is absolutely possible technically, but in > reality it isn't, because

RE: Embperl: %http_headers_out

1999-10-20 Thread Gerald Richter
> > I didn't have 1.2b10. That was the problem. You may want to add a note to > %http_headers_out in the docs that it requires 1.2b10. Thanks for > you help. > yes, I add a note. I just forgot it when I wrote the docs Gerald > On 20-Oct-99 Gerald Richter wrote: > >> > >> > >> I'm preparing a

Re: What .htaccess with PerlAuthenHandler + PerlAuthzHandler

1999-10-20 Thread John D Groenveld
Auth happens after URI has been translated, so yes, you can put your handler directives in a .htaccess. John [EMAIL PROTECTED]

RE: Embperl: %http_headers_out

1999-10-20 Thread Jason Bodnar
I didn't have 1.2b10. That was the problem. You may want to add a note to %http_headers_out in the docs that it requires 1.2b10. Thanks for you help. On 20-Oct-99 Gerald Richter wrote: >> >> >> I'm preparing a class on HTML::Embperl for my company. I came across >> %http_headers_out in the Embper

RE: Embperl: %http_headers_out

1999-10-20 Thread Gerald Richter
> > > I'm preparing a class on HTML::Embperl for my company. I came across > %http_headers_out in the Embperl documentation. I've never used it before > thought it would definitely be useful for the beginning Embperl user. So I > created a page that just contains: > > [- $http_headers_out{'Locatio

redirect after POST again?

1999-10-20 Thread Ilya Obshadko
Hello, Weird things: this simple & plain code $req->header_out('Location' => $ENV{SCRIPT_NAME}); $req->status(REDIRECT); $req->send_http_header; in POST script doesn't work with Netscape. It results in 'document contains no data' message. If $req->send_http_header is omitted,

Re: Apache::ASP, catching redirect from a downstream filter

1999-10-20 Thread Dmitry Beransky
Joshua, The new version works. Turns out, I also need to call $r->status before $r->filter_input, as the latter resets the status code back to 200. Thanks. Dmitry >That's because $r->status() wasn't being set by $Response->Redirect(), >just $r->header_out('Location'). In my dev version, I ha

Embperl: %http_headers_out

1999-10-20 Thread Jason Bodnar
I'm preparing a class on HTML::Embperl for my company. I came across %http_headers_out in the Embperl documentation. I've never used it before thought it would definitely be useful for the beginning Embperl user. So I created a page that just contains: [- $http_headers_out{'Location'} = q(http://

Re: Embperl [$ sub $] question

1999-10-20 Thread Jason Bodnar
Right, which is the problem. Well, not necessarily a bug but just a feature that's lacking. On 20-Oct-99 Robert wrote: > It should be [- foo("bar") -] > > - Robert > > Jason Bodnar wrote: > >> Can the new sub meta-command not be used to define functions? >> >> I tried: >> >> [$ sub foo $] >>

Re: eval'ed Apache::Session tie panics with POPSTACK?

1999-10-20 Thread Jeffrey Baker
Tobias Hoellrich wrote: > > I wanted to trap non-existant session-id's by bracketing the > > tie %{$href}, 'Apache::Session::DBI', $id, > { >DataSource => 'dbi:mysql:sessions', >UserName => 'db_user', >Password => 'db_passwd' > }; > > with an eval { }; block. Once I've don

Re: Redhat httpsd with mod_perl

1999-10-20 Thread Matt Sergeant
On Wed, 20 Oct 1999, Remi Fasol wrote: > --- Joshua Chamas <[EMAIL PROTECTED]> wrote: > > On the apache end, I would recommend setting > > MaxRequestsPerChild > > to under 1000, to clean up any memory leaks that > > accumulate > > over time. > > thanks for your suggestions... > > as a test, i se

Re: Redhat httpsd with mod_perl

1999-10-20 Thread Remi Fasol
--- Joshua Chamas <[EMAIL PROTECTED]> wrote: > On the apache end, I would recommend setting > MaxRequestsPerChild > to under 1000, to clean up any memory leaks that > accumulate > over time. thanks for your suggestions... as a test, i set MaxRequestsPerChild to 500, but it didn't help. just out