--- "William A. Rowe, Jr." wrote: > Is your cmd array listed in your module data > section? > yes. Everything worked fine in apache 2.2. The structure looked like this:
static const command_rec mod_my_cmds[] = {
AP_INIT_TAKEx("MyName", my_func, NULL, RSRC_CONF, "my
comments",
...,
{NULL}
};
module AP_MODULE_DECLARE_DATA my_module = {
STANDARD20_MODULE_STUFF,
...
mod_my_cmds,
register_hooks
};
my_func is declared and defined somewhere. But
appears never called.
