> I am writing a module that runs certain functions depending on the > configuration directives in the conf files. The functions are run > twice when the server is started and again when the server shuts > down.
I think I read something about this in Nick's book, but I don't recall exactly. Anyway in case someone more knowledgeable than I doesn't reply, remember you can of course just set a variable the first time your functions are run and then on future invocations you'll return immediately if the variable is already set. -- Ray B. Morris [EMAIL PROTECTED] On 04/08/2008 01:44:35 PM, Andy Grant wrote: > I am writing a module that runs certain functions depending on the > configuration directives in the conf files. The functions are run > twice > when the server is started and again when the server shuts down. Is > there a way to make the functions run only once? Maybe some variable > > that can be checked stating that the server is reading the conf > files, > > actually starting the server, or shutting down? > > Thanks >
