Re: PHP Extension Deinitializing on Startup

2007-04-20 Thread Saju Pillai
On 20/04/07, Joe Lewis [EMAIL PROTECTED] wrote: Michael B Allen wrote: Hi Saju, Actually I'm not sure this is my problem. I have tested my PHP extension on numerous platforms and I have only ever seen the PHP extension initialization / deinitialization routines run once for each restart.

RFE -- external overload procedure

2007-04-20 Thread Juerg Umhang
hello please consider this posting as a request for enhancement httpd knows about his overload situation. [error] server reached MaxClients setting, consider raising the MaxClients setting this overload is easily created by an external attacker. in case of an attack you have to react. best

Re: RFE -- external overload procedure

2007-04-20 Thread Jeff Trawick
On 4/20/07, Juerg Umhang [EMAIL PROTECTED] wrote: hello please consider this posting as a request for enhancement httpd knows about his overload situation. [error] server reached MaxClients setting, consider raising the MaxClients setting this overload is easily created by an external

Re: multiple c file problem with apxs.

2007-04-20 Thread Saju Pillai
Show us the compiler error. Maybe this is just a coding issue ? -srp On 19/04/07, Jason [EMAIL PROTECTED] wrote: Ok, Im getting a error with a module im trying to compile using apxs. What we have is two source files and a header. File number one compiles fine, but once we try to run a

Re: PHP Extension Deinitializing on Startup

2007-04-20 Thread Saju Pillai
The apache config cycle will load - unload - load your module on startup. Infact your module gets reloaded in for every restart -srp On 20/04/07, Michael B Allen [EMAIL PROTECTED] wrote: I'm trying to track down a strange problem. I have a PHP extension that is being deinitialized immediately

Re: PHP Extension Deinitializing on Startup

2007-04-20 Thread Michael B Allen
Hi Saju, Actually I'm not sure this is my problem. I have tested my PHP extension on numerous platforms and I have only ever seen the PHP extension initialization / deinitialization routines run once for each restart. Is the load - unload - load behavior you describe something new that Apache

Re: PHP Extension Deinitializing on Startup

2007-04-20 Thread Joe Lewis
Michael B Allen wrote: Hi Saju, Actually I'm not sure this is my problem. I have tested my PHP extension on numerous platforms and I have only ever seen the PHP extension initialization / deinitialization routines run once for each restart. Is the load - unload - load behavior you describe

Re: Store data accessible by all process and threads.

2007-04-20 Thread Saju Pillai
This question seems more suitable for the modules list. Read Only data ? You may consider setting it up in post_config - alloc from config pool. Your data will get copied into all children. Read-Write data ? shm is ok. Any standard IPC should work. -srp On 20/04/07, moh bad [EMAIL PROTECTED]