On Tue, Jul 30, 2019 at 11:07 AM Bill Moo <mookimo...@gmail.com> wrote:
>
> Hello,
>
> I am embarking on my first module and using the Apache provided
> example to dump my module's configuration as my starting point I’m
> having no real success.
>
> I have configured everything as per the sample and compiled and
> configured using:
>
> sudo apxs -i -a -n mod_graphing -c mod_graphing.c
>
> I have to provide the -n mod_graphing parameter as without it I get :
> apxs:Error: Sorry, cannot determine bootstrap symbol name.
>
> The name (mod_graphing) being the same as the module tag. In addition
> to this when I try to restart the server I get a Syntax error on the
> generated mod_graphing.load file as it has appended _module to my
> mod_graphing!
>
> Assuming my interpretation is correct I created a mod_graphing.conf
> file and added to it:
>
> <Location /info>
>         SetHandler configHandler
> </Location>
>
> <Directory /info>
>         sqlConnection "SQL Connection String"
>         sqlUserInfo username password
> </Directory>

Does something cause the /info URL to be mapped to the actual
directory /info?  It looks like it should be a filesystem path in the
latter.

Reply via email to