From: Carsten K. <car...@ma...> - 2002-01-14 00:01:43
|
Yeah the solution you gave of including both also causes the failure. I'm going to check their web site to see if this is a known problem with Apache before we change PhpWiki's .htaccess. Carsten On Sunday, January 13, 2002, at 06:54 pm, Jeff Dairiki wrote: > ...as long as mod_nonexiting_module.c really doesn't exist, it shouldn't > bother Apache at all. > > > If sometimes PHP4 is in mod_php4.c and sometimes in mod_php.c, it seems > the correct solution is: > > <IfModule mod_php4.c> > php_flag register_globals off > php_flag track_vars on > php_flag allow_url_fopen off > </IfModule> > <IfModule mod_php.c> > php_flag register_globals off > php_flag track_vars on > php_flag allow_url_fopen off > </IfModule> > > But, if I understand you correctly, you're saying this causes problems for > you? |