Re: 1.3.x mod_proxy and HTTP/1.1

2000-09-01 Thread joe
Here's a patch to mod_proxy that enables keepalives on the browser connection. It's not well tested, so please report any problems you find. The patch enables a new directive, ProxyPostMax[KM][B] Setting the ProxyPostMax directive makes mod_proxy store the request's body to a tempfile on

Re: newbie asking for AuthCookieDBI

2000-09-01 Thread Jacob Davies
On Fri, Sep 01, 2000 at 01:45:00PM -0300, Pires Claudio wrote: > I am newbie with mod_perl. I just installed and configured > Apache::AuthCookie succesfully. Now I want to use Apache::AuthCookieDBI > (Apache-AuthCookieDBI-1.18). I just installed all modules it needs and > configured it as do

Re: multilanguage site

2000-09-01 Thread Eric L. Brine
> As far as I can tell there's no way in html to indicate to the browser > that a chunk of content is in some other encoding other than what was > specified in the headers or meta tag. There's no > attribute or anything like that. This seems to make truly multilingual > pages really awkward.

Re: multilanguage site

2000-09-01 Thread Greg Stark
> >> can someone suggest me the best way to build a multilanguage web site > >> (english, french, ..). > >> I'm using Apache + mod_perl + Apache::asp (for applications) I'm really interested in what other people are doing here. We've just released our first cut at i18n and it's going fairly well

Re: Apache::Reload 0.04

2000-09-01 Thread Greg Stark
Stas Bekman <[EMAIL PROTECTED]> writes: > But adds an additional stat() call for each request, which might be not > desired for "some" sites... I know it's quite fast. See: > >http://thingy.kcilink.com/modperlguide/performance/Reducing_the_Number_of_stat_Ca.html > > But, yeah it's cool! In pr

Re: Apache.xs patch for get_client_block

2000-09-01 Thread joe
Doug, The get_client_block part of the patch works just fine - haven't had a chance to confirm the rest of it. Thanks again. -- Joe Schaefer [EMAIL PROTECTED] SunStar Systems, Inc.

Question about suggested AIX patch to perl.

2000-09-01 Thread Paul J. Reder
I am working to update my instructions for getting mod_perl working as a DSO on AIX. I see that there is a recommended patch for dl_aix.xs to get XS working. I am currently testing on AIX 4.3.3, Apache 1.3.13-dev, and IBM's IHS version 1.3.12.2. There does not seem to be a perl file named dl_aix

Problem with Apache::AuthCookieDBI

2000-09-01 Thread Pires Claudio
Hi everybody, it's me again... I have a problem using Apache::AuthCookieDBI... I cannot launch Apache using this module. First I installed Apache::AuthCookie succesfuly in my RedHat 6.2 system, I tried it and it worked fine... Now, I want to implement session management and I want to use Apache::

Announce: Apache::Session 1.53

2000-09-01 Thread Jeffrey W. Baker
Apache::Session 1.53 has been released. Fixed in this release: * Three bugs in the file handling code found by Erik Rantapaa and Bart Shaefer. * A possible security vulnerability involving bogus session IDs like '../../../../../etc/passwd'. Don't worry, I wasn't able to actually think of an e

Re: [OT] Language Question...

2000-09-01 Thread Jeff Jones
I began teaching myself C using the following book: "A Book on C" by Al Kelley, Ira Pohl ISBN# 0201183994 It will turn up if you do a search at amazon. Hope this helps. Jeff Jones On Fri, 1 Sep 2000, David Hajoglou wrote: > I would like to be able to read the internals of mod_p

Re: [OT] Language Question...

2000-09-01 Thread David Hodgkinson
David Hajoglou <[EMAIL PROTECTED]> writes: > I would like to be able to read the internals of mod_perl (the module that > plugs into apache). I would like to understand how it works with apache > and to do this I need c coding skills. So, regardless of my reason for > wanting to learn c (thoug

Re: [OT] Language Question...

2000-09-01 Thread David Hajoglou
I would like to be able to read the internals of mod_perl (the module that plugs into apache). I would like to understand how it works with apache and to do this I need c coding skills. So, regardless of my reason for wanting to learn c (though it does relate), does anybody have any suggestions

Re: [OT] Language Question...

2000-09-01 Thread David Hodgkinson
David Hajoglou <[EMAIL PROTECTED]> writes: > Well, if you must know, mod perl was programmed in c I knew this. So? -- Dave Hodgkinson, http://www.hodgkinson.org Editor-in-chief, The Highway Star http://www.deep-purple.com Apache, mod_perl, MySQL,

Re: [OT] Language Question...

2000-09-01 Thread David Hajoglou
Well, if you must know, mod perl was programmed in c On 1 Sep 2000, David Hodgkinson wrote: > > David Hajoglou <[EMAIL PROTECTED]> writes: > > > I would like to learn about the programming of mod_perl. While I am an ok > > perl programmer, I know very little of c code. Can somebody suggest

Re: [OT] Language Question...

2000-09-01 Thread David Hodgkinson
David Hajoglou <[EMAIL PROTECTED]> writes: > I would like to learn about the programming of mod_perl. While I am an ok > perl programmer, I know very little of c code. Can somebody suggest a (or > several) book that I can start to learn c from? Why do you need C if you've got perl? -- Dave

Re: Random Hangs when loading a embperl page

2000-09-01 Thread Gerald Richter
> >> > >> Basically what happens is that some times a page will hang while > > executing... > > > > Is it a POST request? Is the page invoke by the mod_perl handler or do you > > call it from your own script via Execute? > > POST & GET. This happens by far the most when access via Netscape 4.75 f

Re: Random Hangs when loading a embperl page

2000-09-01 Thread Wim Kerkhoff
On 01-Sep-2000 Gerald Richter wrote: >> >> Basically what happens is that some times a page will hang while > executing... > > Is it a POST request? Is the page invoke by the mod_perl handler or do you > call it from your own script via Execute? POST & GET. This happens by far the most when ac

[OT] Language Question...

2000-09-01 Thread David Hajoglou
I would like to learn about the programming of mod_perl. While I am an ok perl programmer, I know very little of c code. Can somebody suggest a (or several) book that I can start to learn c from? Thanks, David

Re: Random Hangs when loading a embperl page

2000-09-01 Thread Gerald Richter
> > Basically what happens is that some times a page will hang while executing... Is it a POST request? Is the page invoke by the mod_perl handler or do you call it from your own script via Execute? Gerald - Gerald Richterecos elect

Random Hangs when loading a embperl page

2000-09-01 Thread Wim Kerkhoff
I've been expierence this problem for a while now, and users of the site are as well, so I thought it's time to see what is causing this. Basically what happens is that some times a page will hang while executing... The browser is still connected to the server, but has not received the whole page

newbie asking for AuthCookieDBI

2000-09-01 Thread Pires Claudio
Hi, I am newbie with mod_perl. I just installed and configured Apache::AuthCookie succesfully. Now I want to use Apache::AuthCookieDBI (Apache-AuthCookieDBI-1.18). I just installed all modules it needs and configured it as documentation say. But when I restart Apache I get this message:

AuthDBI with Interbase

2000-09-01 Thread Yury Vasiliev
I use AuthDBI with Interbase It works ok, but there are some strange error in log //--- $Apache::DBI::VERSION = '0.87'; $DBI::VERSION = "1.14"; Interbase 6.0 //--- error_log:

ORA tutorials/mod_perl

2000-09-01 Thread Stas Bekman
Tutorial Programs for Perl Programmers O'Reilly University of Perl 2000 Seattle -- Los Angeles -- Atlanta -- New York http://conferences.oreilly.com/uperl2k/ It includes introduction to mod_perl by Nathan Torkington http://www.oreillynet.com/cs/uperl2k/print/e_sess/1039 _

Fast clicks in Apache::Session causing loss

2000-09-01 Thread garyc
Howdy! I'm currently developing a mod_perl application which connects to a Postgres (soon to be Oracle) backend through dbiproxy. I'm using Apache::Session::Postgres, and currently only track one thing... the number of times a particular session has clicked anything. (Mainly as a test) In any c

RE: where "WhatEverLoginScript" points?/ AuthCookie configuration

2000-09-01 Thread Pires Claudio
thanks! it works (WhatEverLoginScript /demo/html/login.pl) is there any more detailed info or tutorial about AuthCookie configuration? where can I find it? Thanks -Mensaje original- De: Bill Moseley [mailto:[EMAIL PROTECTED]] Enviado el: Friday, September 01, 2000 2:14 AM Para: Pires Cla

Re: Apache::Session and performance question

2000-09-01 Thread Greg Cope
Perrin Harkins wrote: > > On Mon, 28 Aug 2000, Chris Brooks wrote: > > I went back through the documentation on Apache::Session, > > Apache::Session::DBIStore, and Apache::DBI, and I haven't found a > > problem in the way we have implemented this. Does anyone else have > > suggestions, or has an

Re: question on code snippet in mod_perl guide

2000-09-01 Thread Stas Bekman
On Thu, 31 Aug 2000, Aaron Johnson wrote: > I don't work on Oracle so I will speak from my experience with MySQL. MySQL > servers time out after the 8 hour standard disconnect for inactivity (this > can be adjusted in your my.conf file). To compensate for this we now run our > own connect check

Re: suexec: disabled?

2000-09-01 Thread Tom Brown
On Thu, 31 Aug 2000, Bakki Kudva wrote: > I recently upgraded to perl5.6 and added php4 to my apache server. I > don't know what I did wrong but I am getting the following errors. > If I do a httpd -l I get... > > suexec: disabled; invalid wrapper /usr/local/apache/bin/suexec your copy of suexe