Index: trunk/phase3/includes/Setup.php |
— | — | @@ -168,7 +168,15 @@ |
169 | 169 | } |
170 | 170 | wfDebug( "\n" ); |
171 | 171 | } elseif( isset( $_SERVER['REQUEST_URI'] ) ) { |
| 172 | + wfDebug( "\n\nStart request\n" ); |
172 | 173 | wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" ); |
| 174 | + foreach ( $_SERVER as $name => $value ) { |
| 175 | + if ( substr( $name, 0, 5 ) == 'HTTP_' ) { |
| 176 | + $name = substr( $name, 5 ); |
| 177 | + wfDebug( "$name: $value\n" ); |
| 178 | + } |
| 179 | + } |
| 180 | + wfDebug( "\n" ); |
173 | 181 | } |
174 | 182 | |
175 | 183 | if( $wgRCFilterByAge ) { |