Antwort: Need help with --activate-module

2009-01-28 Thread pierre . heim
Hi, I don't know the book but a look to Google says that it seems to refer Apache 1.3.x. If you don't need a static module take a look to the apxs script (http://httpd.apache.org/docs/2.2/de/programs/apxs.html) otherwise check a shipped module as a reference. Note that also the API has changed

Antwort: Re: Antwort: Need help with --activate-module

2009-01-29 Thread pierre . heim
Check also modules/experimental/mod_example.c for a general view on the module behaviour. You also can use it as a template for writing your own module. Pierre Heim Produktentwicklung Mindlab Solutions GmbH Marktplatz 19 D-73728 Esslingen am Neckar / Germany fon +49.711.36550.206 fax

Antwort: apxs

2009-02-05 Thread pierre . heim
Hi Michele, try another order of your library flags (e. g. -lcrypt before -lmysqlclient). This often helps on some platforms... Pierre Pierre Heim Produktentwicklung Mindlab Solutions GmbH Marktplatz 19 D-73728 Esslingen am Neckar / Germany fon +49.711.36550.206 fax +49.711.36550.555

Antwort: using sockets within an apache module

2011-01-23 Thread pierre . heim
Hi Peter! It should no problem in general -- we are using sockets in different modules. But you must take care of thread handling in Apache running as worker because you might get hundreds of connections at the same time when you have a socket per thread (perhaps a problem for your server appl