success with Apache::Compress

2001-02-22 Thread Justin
Hi, after looking at mod_gzip, Apache::Gzip, Apache::GzipChain and so on, I decided to try Apache::Compress, with some doubt that it was "worth it" There were a few hiccups, but it worked out great. To test "in production" I created an alias /x to my cgi location, and then added Aloas /y

Re: Rotating Apache logs

2001-02-22 Thread G.W. Haywood
Hi all, On Thu, 22 Feb 2001, Terry Newnham wrote: Is there a command-line use or the rotatelogs by means of which you can rotate the logs on the fly ? Your logs can be piped through a program so you can do anything you like with them, on the fly. For example (from

Re: Rotating Apache logs

2001-02-22 Thread Edwin Pratomo
this is off-topic, coz logrotate should do it. man logrotate. rgds, Edwin Terry Newnham wrote: Hi I've found out how to edit httpd.conf so that it will rotate the error and access logs. But you have to restart apache to read that which I'd rather not do. Is there a command-line use or

RE: Odd Caching Bug

2001-02-22 Thread Stathy Touloumis
So, if I understand correctly, the database handle is getting cached more than you think it should, that's right? I was unsure where the caching was occurring. I think MaxRequestsPerChild doesn't actually cut off a connection that is kept alive (with KeepAlive). Ctrl-N in a browser could

[ANNOUNCE] Apache-Clean 0.01

2001-02-22 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Clean-0.01.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Clean-0.01.tar.gz size: 3509 bytes md5: ff98b3f35d63852d1727b71bd27788e6 Nothing fancy here, just useful... README: NAME Apache::Clean -

Process Running Even after timeout

2001-02-22 Thread Kiran Kumar.M
Hi, I have a program that fetches data from mysql database,since the database is huge the user gets a time-out(this has been taken care now :-)) , but when i see the process list the mysqld process for that request is still running , Dosent apache close the database connection after it

Re: Process Running Even after timeout

2001-02-22 Thread Dave Hodgkinson
"Kiran Kumar.M" [EMAIL PROTECTED] writes: I have a program that fetches data from mysql database,since the = database is huge the user gets a time-out(this has been taken care now = :-)) , but when i see the process list the mysqld process for that = request is still running , Dosent

Re: Rotating Apache logs

2001-02-22 Thread Alexander Farber (EED)
Terry Newnham wrote: I've found out how to edit httpd.conf so that it will rotate the error and access logs. But you have to restart apache to read that which I'd rather not do. Is there a command-line use or the rotatelogs by means of which you can rotate the logs on the fly ? On log

Re: [OT] Re: Rotating Apache logs

2001-02-22 Thread Michael Smith
You may be aware of this, but cronolog is another option: http://www.ford-mason.co.uk/resources/cronolog/ Mike - Original Message - From: "Steve Reppucci" [EMAIL PROTECTED] To: "Terry Newnham" [EMAIL PROTECTED] Cc: "mod_perl list" [EMAIL PROTECTED] Sent: Thursday, February 22, 2001

Apache::ASP Undefined symbol Perl_Tstack_sp_ptr

2001-02-22 Thread CioccarelliA
Hi, I am trying to get Apache ASP to work but haven't had a lot of luck. I have Apache 1.3.17 compiled with mod_ssl, php3 and mod_perl (which is as a module). Everyting is working fineexcept ASP pages. I am trying the demo ones included but each time I try I get the following in the error log.

Re: Apache::ASP Undefined symbol Perl_Tstack_sp_ptr

2001-02-22 Thread Joshua Chamas
CioccarelliA wrote: Hi, I am trying to get Apache ASP to work but haven't had a lot of luck. I have Apache 1.3.17 compiled with mod_ssl, php3 and mod_perl (which is as a module). Everyting is working fineexcept ASP pages. I am trying the demo ones included but each time I try I get the

Re: Apache/mod_perl/Win2K gpfault finally resolved?

2001-02-22 Thread sterling
On Tue, 20 Feb 2001, William A. Rowe, Jr. wrote: Folks, any of you in a position to grab the current Apache tree from CVS and build Apache plus mod_perl, and see if the gpfault is gone, here is the 'unpatch' for John Sterling's quick hack: my 'quick hack' doesn't work anymore anyways

Apache::ASP Troubles

2001-02-22 Thread Boeringa, Michael
I recently installed and confiugured Linux-Mandrake 7.2 on my machine. I was trying to get Apache up and running and found that Mandrake 7.2 runs two versions of Apache 1.3.14 - the regular httpd Daemon (p80) and a httpd-perl Daemon (p8007) that is set up in httpd.conf to proxy all cgi-scripts to

Re: Apache::ASP Troubles

2001-02-22 Thread Joshua Chamas
"Boeringa, Michael" wrote: I recently installed and confiugured Linux-Mandrake 7.2 on my machine. I was trying to get Apache up and running and found that Mandrake 7.2 runs two versions of Apache 1.3.14 - the regular httpd Daemon (p80) and a httpd-perl Daemon (p8007) that is set up in

[ANNOUNCE] Apache::FileMan 0.06c

2001-02-22 Thread George Sanderson
FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. FileMan can provide the same functionality as AutoIndex.pm and can be

(apache question) Working around MaxClients?

2001-02-22 Thread Philip Mak
Hello, I have a high traffic website (looks like 200 GB output per month, something around 10-20 hits per day) hosted on a commercial service. The service does not limit my bandwidth usage, but they limit the number of concurrent Apache process that I can have to 41. This causes the

[OT] RE: (apache question) Working around MaxClients?

2001-02-22 Thread Stathy Touloumis
Why don't you setup apache to do proxying? I have a high traffic website (looks like 200 GB output per month, something around 10-20 hits per day) hosted on a commercial service. The service does not limit my bandwidth usage, but they limit the number of concurrent Apache process

Re: [OT] RE: (apache question) Working around MaxClients?

2001-02-22 Thread Philip Mak
# Doesn't work. Children still get tied up serving requests. #ProxyPass / http://www.animewallpapers.com:8080/ #ProxyPassReverse / http://www.animewallpapers.com:8080/ That doesn't get me around the limit of 41 Apache processes... -Philip Mak ([EMAIL PROTECTED]) On Thu, 22 Feb 2001, Stathy

SSL ,Apache Keep alive

2001-02-22 Thread Sachin Lakhanpal
Hello , i am trying to understand what am i supposed to come up with , so here i have a client application trying to do a SECURE HTTP POST to the apache webserver . The data to be posted is huge running in megs, so what we are doing is we are at the client end splitting this data in

Re: [OT] SSL ,Apache Keep alive

2001-02-22 Thread ___cliff rayman___
this is no longer a mod_perl question but, check out: http://www.modssl.org/docs/2.8/ssl_reference.html#ToC5 - SSLSessionCache i'm am far from an SSL expert, but this should help minimize the SSL authorization overhead. -- ___cliff [EMAIL PROTECTED]http://www.genwax.com/ Sachin Lakhanpal

Re: [OT] (apache question) Working around MaxClients?

2001-02-22 Thread Perrin Harkins
I have a high traffic website (looks like 200 GB output per month, something around 10-20 hits per day) hosted on a commercial service. The service does not limit my bandwidth usage, but they limit the number of concurrent Apache process that I can have to 41. This causes the server

Re: [gsar@ActiveState.com: v5.6.1 trial2 is available]

2001-02-22 Thread Jens-Uwe Mager
On Fri, Feb 16, 2001 at 05:44:34PM +0100, [EMAIL PROTECTED] wrote: On Fri, 16 Feb 2001 [EMAIL PROTECTED] wrote: Hi Jarkko, I'll try to do one or two more builds. I'd really like to try it with Apache's mod_perl and mod_embed, these really didn't work at all with perl-5.6.0, but