Mod include is not including recursively - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T17:33:28Z http://stackoverflow.com/feeds/question/608552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/608552/mod-include-is-not-including-recursively 0 Mod include is not including recursively jacob 2009-03-03T22:44:06Z 2009-08-26T10:12:21Z <p>Hello!</p> <p>So I have a django application that generates html that have server side includes in them. So in my apache config I added to the Directory directive <code>SetOutputFilter INCLUDES</code> my problem is mod include will process the include in the generated page but it if the include contain includes those do not get processed. Anyone know how to get around this?</p> <p>This is the gistof it.</p> <pre><code>&lt;Directory "/dir"&gt; Options +Includes SetHandler python-program SetOutputFilter INCLUDES PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE urr.settings PythonOption django.root /urr PythonInterpreter urr PythonDebug On PythonPath "'/dir' + sys.path" &lt;/Directory&gt; </code></pre>