Hello: Looks like DSO is not working quite well on HP-UX 11.0. After "make
install" is complete, when I run "/opt/apache2/bin/apachectl start", I get:
$ /opt/apache2/bin/apachectl start
Syntax error on line 299 of /opt/apache2/conf/httpd.conf:
Invalid command 'Order', perhaps mis-spelled or defined by a module not
included in the server configuration
/opt/apache2/bin/apachectl start: httpd could not be started
Upon investigation, I notice that LoadModule directives were not added for
the shared modules. So, I add a bunch of Load Modules statements, and upon
running "apachectl start" again I get:
$ /opt/apache2/bin/apachectl start
Syntax error on line 185 of /opt/apache2/conf/httpd.conf:
Can't locate API module structure `actions_module' in file
/opt/apache2/modules/mod_actions.sl: No Error
/opt/apache2/bin/apachectl start: httpd could not be started
Upon changing the LoadModule to SharedModule, and running the apachectl
start, I get:
$ /opt/apache2/bin/apachectl start
Syntax error on line 185 of /opt/apache2/conf/httpd.conf:
Invalid command 'SharedModule', perhaps mis-spelled or defined by a module
not included in the server configuration
/opt/apache2/bin/apachectl start: httpd could not be started
Statically compiling things were going ok.. Any ideas?
Could not find any documentation on this..
M