File not found

Although this PHP script ({$_SERVER['SCRIPT_NAME']}) exists, the file requested for output does not.

"; return; } $type = wfGetType( $fname ); if ( $type ) { header("Content-type: $type"); } else { header('Content-type: application/x-wiki'); } header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s', $stat['mtime'] ) ); header( "Cache-Control: s-maxage=$wgSquidMaxage, must-revalidate, max-age=0" ); readfile( $fname ); exit; } function wfGetType( $filename ) { # There's probably a better way to do this $types = <<