Re: Documentation for Apache::exit()?

2002-09-26 Thread Lupe Christoph
On Wednesday, 2002-09-25 at 10:41:19 -0400, valerian wrote: BTW, anyone know if Perl 6 will free unused memory? From what I understand, right now it just allocates as needed, but never gives any back to the OS when it's done... (ie, when some function ends) Even if Parrot (the perl 6

When does mod_ssl register input/output filter

2002-09-26 Thread Hideki Noma
While constructing process connection handler employing bucket-brigade feature of Apache 2, I encountered some problem. I am trying to handle protocols other than HTTP and most of them starts communication from sending server hello message. When SSL handshake takes too long, communication fails.

Reverse Proxy Setup

2002-09-26 Thread Scott Alexander
Hi, I have two experimental servers frontend and mod_perl. mod_perl is apache with mod_perl frontend is apache lightweight My config only passes *.pl thru to mod_perl When a user uploads a file they use a mod_perl script on mod_perl and the file is saved on mod_perl. But I want the file to

[mp2] Build problems on HPUX11.00 with HP ANSI C (aCC)

2002-09-26 Thread paul . barker
Hi All I've spent the last two days reading various docs and posts trying to resolve this problem. If this is a known issue or has been answered previously please accept my apologies and by all means point me in the direction of the correct documentation / newsgroup / mailing list archive. I

[OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Jim Morrison [Mailinglists]
Sorry.. This is completely off topic.. but I have a question you guys might help me with.. I'm writing then next part of a big modperl project I'm doing.. This bit could be loosely called a mailing-list-server.. The listserver is going to handle out-going (only'ish) opt-in mailing lists. The

RE: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Joe Breeden
Look at MIME::Lite on CPAN -Original Message- From: Jim Morrison [Mailinglists] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 8:44 AM To: [EMAIL PROTECTED] Subject: [OT] - Mailing List Servers/mods .. etc Sorry.. This is completely off topic.. but I have a

Re: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Robert Landrum
I did just this. Unfortunatly, sendmail proved to be too slow, both in command line piping (i.e. open(PROG,| sendmail );), and via socket connection to port 25 to be a viable solution for the volume of mail we sent. Last I checked, the code I wrote interfaced with Lyris, which was

Re: Reverse Proxy Setup

2002-09-26 Thread Igor Sysoev
On Thu, 26 Sep 2002, Scott Alexander wrote: I have two experimental servers frontend and mod_perl. mod_perl is apache with mod_perl frontend is apache lightweight My config only passes *.pl thru to mod_perl When a user uploads a file they use a mod_perl script on mod_perl and the

Re: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Erich L. Markert
It's been a while since I last used it, but I used a perl app called bulkmail. Worked like a champ on a UNIX/sendmail system. Robert Landrum wrote: I did just this. Unfortunatly, sendmail proved to be too slow, both in command line piping (i.e. open(PROG,| sendmail );), and via socket

Re: Reverse Proxy Setup

2002-09-26 Thread siberian
Make proxy and mod_perl have the same document root. Use mod_rewrite on the lightweight proxy to serve certain directories from itself rather then passing them back to modperl (have it server images while you are at it) Upload files to the directory specified above. Result : File is uploaded

Re: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Rob Nagler
Jim Morrison [Mailinglists] writes: I'm wondering if there is any point in looking for a piece of third party software/module etc, that will handle the sending of the mail or should I work directly with sendmail? (Is sendmail the best mailserver for this kind of thing?) sendmail has its

Re: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Brian Reichert
On Thu, Sep 26, 2002 at 02:44:12PM +0100, Jim Morrison [Mailinglists] wrote: Sorry.. This is completely off topic.. but I have a question you guys might help me with.. I'm writing then next part of a big modperl project I'm doing.. This bit could be loosely called a

Re: Documentation for Apache::exit()?

2002-09-26 Thread Francisco Corella
Hi Kyle, There are a few performance penalties when using Apache::Registry: * Scripts are compiled at first request instead of server start unless you use something like Apache::RegistryLoader. So, the first request per child will be a little bit slower and you don't get to share memory

Re: Documentation for Apache::exit()?

2002-09-26 Thread Francisco Corella
Hi Ged, Thanks for replying. I hope you had a good time in my old country :-) You probably saw the reports on the news about roads being washed away by the rain in Sevilla. I went on a motor-cycle. Camping. Mmm... Doesn't sound like the perfect vacation. I'm glad you made it back :-)

Re: BUG:Apache::Cookie v1.0

2002-09-26 Thread Michael Robinton
* Michael McLagan [EMAIL PROTECTED] [2002-09-21 11:45]: There is a bug in Apache::Cookie. It doesn't handle a cookie with zero bytes in it! This is because Apache::Cookie is implemented in C, and C uses NULL as the end of string terminator. No quite accurate. C has no concept of a

Re: modules and pragmas - part II

2002-09-26 Thread Rick Myers
On Sep 24, 2002 at 23:14:02 +0200, [EMAIL PROTECTED] wrote: At the first request each instance prints out the no_xhtml-header, but at the second call the no_xhtml-pragma is forgotten and the xhtml-header is printed out. Is this a problem in the CGI-module or is there a deeper reason for

error compiling mod_perl-1.99_05 with Apache 2.0.42

2002-09-26 Thread Yue Luo
Hi, I have installed Apache 2.0.42. When I run the configuration script: perl Makefile.PL MP_AP_PREFIX=$HOME/httpd/prefork MP_INST_APACHE2=1 I got error: Unable to determine server version. I believe the bug is in /mod_perl-1.99_05/lib/Apache/Build.pm Line 746: next unless

Help with Install

2002-09-26 Thread Jim Kipp
Hi I am totally new to modperl, in fact i have not even installed it yet. i want to install Mod perl 2.0 with Apache 2.0.42. I am not sure i understand the perl preReqs in the install docs. I have perl 5.6.1 without thread support. Am I good to go or do I need to build perl again. Also is what

Re: Help with Install

2002-09-26 Thread Lester Vecsey
- Original Message - From: Jim Kipp [EMAIL PROTECTED] . Also is what is mpm and is 'mpm=prefork' necessary in the apache build config? Any other tips from anyone with a similar setup is appreciated. prefork is the way it comes stock, what you probably want is mpm=worker for the