Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

including custom modules

Status
Not open for further replies.

maindros

IS-IT--Management
Feb 27, 2001
6
0
0
US
One of our engineers developed a module that we include in the server as follows:

LoadModule test_module /tmp/mod_test.so
AddModule mod_test.c
<IfModule mod_test.c>
<Location />
AddHandler test-handler .html
</Location>
</IfModule>

Although the module is doing NOTHING the html handler above is breaking ssi includes on the server. Any ideas why ?


Thanks
 
looks like AddHandler is doint the damage. Any ideas how we should load the module ?

&quot;AddHandler maps the filename extensions extension to the handler handler-name. This mapping is added to any already in force, overriding any mappings that already exist for the same extension&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top