RE: module crashing after upgrade to 2.6 kernel and glibc 2.3.4

2007-02-27 Thread SSingh
here is backtrace: (gdb) bt #0 0xe410 in __kernel_vsyscall () #1 0xb7d43bbb in pthread_setspecific () from /lib/libpthread.so.0 #2 0x080c92de in ap_graceful_stop_signalled () #3 0x080c9434 in ap_graceful_stop_signalled () #4 0x080c9cbc in ap_mpm_run () #5 0x080686b8 in main ()

RE: module crashing after upgrade to 2.6 kernel and glibc 2.3.4

2007-02-27 Thread SSingh
one more trace: (gdb) bt #0 0xe410 in __kernel_vsyscall () #1 0xb7d43bbb in pthread_setspecific () from /lib/libpthread.so.0 #2 0x080c92de in child_main (child_num_arg=0) at worker.c:1258 #3 0x080c9434 in make_child (s=0x8109270, slot=0) at worker.c:1341 #4 0x080c9cbc in ap_mpm_run

Re: What do you think about Lighttpd?

2007-02-27 Thread Arnold Daniels
Hi, 1. Apache 2.2 can be used event based request handling, though is is still under development. http://httpd.apache.org/docs/2.2/mod/event.html 2. Apache supports fast cgi Best regards, Arnold howard chen wrote: Can anyone give some comments abt in their implementations which are

Re: What do you think about Lighttpd?

2007-02-27 Thread howard chen
Hello, Thanks for your reply first. I understand Apache already support fastcgi, however, phper most likely will prefer mod_php, so fastcgi in Apache is not as popular as in other http servers. Similarly, later Apache 2.x might officially support event based model rather than multi-process

Re: What do you think about Lighttpd?

2007-02-27 Thread Nick Kew
On Tue, 27 Feb 2007 21:37:29 +0800 howard chen [EMAIL PROTECTED] wrote: Hello, Thanks for your reply first. I understand Apache already support fastcgi, however, phper most likely will prefer mod_php, so fastcgi in Apache is not as popular as in other http servers. You have the choice.

Re: What do you think about Lighttpd?

2007-02-27 Thread howard chen
On 2/27/07, Nick Kew [EMAIL PROTECTED] wrote: You have the choice. If more people use mod_php than fastcgi, that's because they're choosing it. yes, this is really interesting. sometimes i really don't understand them... especially php does not recommended threaded MPM in apache2...so

Re: Questions on configuring Apache Server

2007-02-27 Thread Erica Zhang
Hi, Thanks. Well, my idea is want to analyze all requests from client before they arrives to the user applications and also analyze all responsed html after they are created by server applications and before they are arrived at client. To solve this problem, originally, I want to set up two

Re: Questions on configuring Apache Server

2007-02-27 Thread Issac Goldstand
It sounds like you want to write a pair of filters. There are several examples of writing them in C, and a more detailed tutorial with background at the mod_perl website http://perl.apache.org/docs/2.0/user/handlers/filters.html Issac Erica Zhang wrote: Hi, Thanks. Well, my idea is want

Re: Questions on configuring Apache Server

2007-02-27 Thread Issac Goldstand
It sounds like you want to write a pair of filters. There are several examples of writing them in C, and a more detailed tutorial with background at the mod_perl website http://perl.apache.org/docs/2.0/user/handlers/filters.html Erica Zhang wrote: Hi, Thanks. Well, my idea is want to

Re: What do you think about Lighttpd?

2007-02-27 Thread Arnold Daniels
Howerd, PHP does not recommend running php as a module in a threaded environment, because a number of PHP extensions are not thread-safe. Apache2 MPM-prefork will run just fine with php as module. Nick already told you, that Apache allows you to choose. So simply use the fast-cgi/mpm-event

Re: Questions on configuring Apache Server

2007-02-27 Thread Plüm , Rüdiger , VF EITO
Maybe modsecurity (http://www.modsecurity.org/) already does what you need. Otherwise it gives you an impression how to write an appropriate module to do so. Looking at http://apache.webthing.com/ for mod_accessibility and for mod_proxy_html also seems to be good idea to either find out that

RE: hi

2007-02-27 Thread meenakshi.sundaram
Hi, Will this patch be incorporated into apache? http://mail-archives.apache.org/mod_mbox/httpd-dev/200603.mbox/20060321 [EMAIL PROTECTED] (patch provides balancer support to ProxyRemote directive). Thanks, MMS. The information contained in this electronic message and any attachments to

Re: Small patch to ab apr_socket_recv error handling

2007-02-27 Thread Aaron Bannert
Apache shouldn't be prematurely disconnecting sockets in the middle of a response unless there is a serious problem (Eg. the Apache child process is crashing). Could you describe how to reproduce this? As for the patch, could you make this configurable with a command-line option? That way the

Re: 3.0 - Proposed Goals

2007-02-27 Thread Jim Jagielski
Sander Temme wrote: How many Apache 'D' versions do we want to maintain? Popularity of 1.3 is still too high for us to completely ignore, and there is much 2.0 still out there. Any many people taking up 2.2... --

Fwd: [General Wiki] Trivial Update of htaccess by JohnCrown

2007-02-27 Thread Leo Simons
FYI. Removing is possible by visiting http://wiki.apache.org/general/htaccess selecting Login on the top right, logging in (or creating an account), and then deleting the page using the more actions drop down. cheers, - Leo Begin forwarded message: From: Apache Wiki [EMAIL PROTECTED]

Re: Board Report is due on Monday....

2007-02-27 Thread Jim Jagielski
Paul Querna wrote: Events since November: - mod_ftp graduates from incubator httpd tlp - next generation aka 'amsterdamn' discussions started with sandbox creation. - TSU encryption notifications sent for httpd and flood. - httpd 2.2.4 released - no pmc changes or committer changes -

how to say to apache, to not send headers

2007-02-27 Thread bronto
Hi there experts, I have a module written by me, which (less or more) serves content. Everything went well until we ran some JMeter tests, which has discovered that keep-alive requests, to our module, are returning zero-sized OK pages (I mean code 200, with content-length:0). Ethereal

Re: Small patch to ab apr_socket_recv error handling

2007-02-27 Thread Filip Hanik - Dev Lists
hi Aaron, I added in the -r command line options, to not exit out on apr_socket_recv errors. Patch attached Filip Aaron Bannert wrote: Apache shouldn't be prematurely disconnecting sockets in the middle of a response unless there is a serious problem (Eg. the Apache child process is

Re: What do you think about Lighttpd?

2007-02-27 Thread Bill Stoddard
Since Apache 2.0, we've had the MPM architecture, which means you can plug in your choice of processing model. That's also how Apache 2 works cross-platform, rather than being (like Apache 1) a Unix server ported with lots of compromises in performance/etc to other platforms. i was

Re: What do you think about Lighttpd?

2007-02-27 Thread Colm MacCarthaigh
On Tue, Feb 27, 2007 at 12:05:08AM +0800, howard chen wrote: 1. single-threaded, event-based, (powered by epoll) httpd supports epoll() and event-based polling to the extent that the system-call chains for handling a request by Apache httpd and lighttpd are near-identical, it's hard to tell them

[PATCH 38014] - Patch review request

2007-02-27 Thread Basant Kukreja
Hi, I work in the web tier group of Sun Microsystems Inc. I have submitted the patch for bug 38014 (The status '100 Continue' will be sent after the final status code) http://issues.apache.org/bugzilla/show_bug.cgi?id=38014 Can some of the committer kindly review my patch please to see if