[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello!
I wrote a recursive function, but when running the function appache stalls, 
the error log says:

module mod_php4.c is already running, skipping

Is this a bug, or am I doing something wrong?

Thanxs, Sjef 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread T . Lensselink
If you show some code maybe somebody on the list can help you.

On Thu, 7 Dec 2006 13:41:00 +0100, Sjef [EMAIL PROTECTED] wrote:
 Hello!
 I wrote a recursive function, but when running the function appache
 stalls,
 the error log says:
 
 module mod_php4.c is already running, skipping
 
 Is this a bug, or am I doing something wrong?
 
 Thanxs, Sjef
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread Jochem Maas
Sjef wrote:
 Hello!
 I wrote a recursive function, but when running the function appache stalls, 
 the error log says:
 
 module mod_php4.c is already running, skipping

this error message is from the apache start up routine - you seem to
loading the php4 apache module twice. fix you apache config file.

 
 Is this a bug, or am I doing something wrong?

you are doing something wrong - but it is nothing to do with your
recursive function (at least from what you write I fairly certain that
you can rule it out)

 
 Thanxs, Sjef 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello!
I wrote a recursive function, but when running the function appache stalls, 
the error log says:

module mod_php4.c is already running, skipping

Is this a bug, or am I doing something wrong?

Thanxs, Sjef 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] recursive function problem

2006-12-07 Thread Sjef
Hello!
I wrote a recursive function, but when running the function appache stalls, 
the error log says:

module mod_php4.c is already running, skipping

Is this a bug, or am I doing something wrong?

Thanxs, Sjef 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread Paul Scott

On Thu, 2006-12-07 at 13:41 +0100, Sjef wrote:
 Hello!
 I wrote a recursive function, but when running the function appache stalls, 
 the error log says:

Did you write a recursive function to send this mail to this list
perhaps?

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] recursive function problem

2006-12-07 Thread sjef janssen
No, I'm sure I didn't. My news server is incredibly slow, and I am
(incredibly?) impatient, so I pushed the send button more than once ...
Sorry about that!
Sjef

-Oorspronkelijk bericht-
Van: Paul Scott [mailto:[EMAIL PROTECTED] 
Verzonden: donderdag 7 december 2006 14:50
Aan: Sjef
CC: php-general@lists.php.net
Onderwerp: Re: [PHP] recursive function problem


On Thu, 2006-12-07 at 13:41 +0100, Sjef wrote:
 Hello!
 I wrote a recursive function, but when running the function appache
stalls, 
 the error log says:

Did you write a recursive function to send this mail to this list
perhaps?

--Paul

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2006-12-07 13:41:00 +0100:
 I wrote a recursive function, but when running the function appache stalls, 
 the error log says:
 
 module mod_php4.c is already running, skipping

That has nothing to do with the function call.
 
 Is this a bug, or am I doing something wrong?

The bug is in your code.

-- 
How many Vietnam vets does it take to screw in a light bulb?
You don't know, man.  You don't KNOW.
Cause you weren't THERE. http://bash.org/?255991

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread Chris

Roman Neuhauser wrote:

# [EMAIL PROTECTED] / 2006-12-07 13:41:00 +0100:
I wrote a recursive function, but when running the function appache stalls, 
the error log says:


module mod_php4.c is already running, skipping


That has nothing to do with the function call.
 

Is this a bug, or am I doing something wrong?


The bug is in your code.


Not a bug in the code.

You have two calls to mod_php4.c in your apache config file(s).

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] recursive function problem

2006-12-07 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2006-12-08 10:59:51 +1100:
 Roman Neuhauser wrote:
 # [EMAIL PROTECTED] / 2006-12-07 13:41:00 +0100:
 I wrote a recursive function, but when running the function appache 
 stalls, the error log says:
 
 module mod_php4.c is already running, skipping
 
 That has nothing to do with the function call.
  
 Is this a bug, or am I doing something wrong?
 
 The bug is in your code.
 
 Not a bug in the code.
 
 You have two calls to mod_php4.c in your apache config file(s).

that's completely unrelated to his apache stalling when he calls his
recursive function.

-- 
How many Vietnam vets does it take to screw in a light bulb?
You don't know, man.  You don't KNOW.
Cause you weren't THERE. http://bash.org/?255991

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php