root/usr/local/www/preload.php @ 746ca58a
1 | a9e1725f | Scott Ullrich | <?php
|
---|---|---|---|
2 | |||
3 | /* make sure we are coming from 127.0.0.1 */
|
||
4 | f7b01c1d | Scott Ullrich | $ip = $HTTP_SERVER_VARS['REMOTE_ADDR']; |
5 | a9e1725f | Scott Ullrich | if($ip <> "127.0.0.1") |
6 | exit; |
||
7 | |||
8 | /* preload */
|
||
9 | require("config.inc"); |
||
10 | require("functions.inc"); |
||
11 | c8b0a897 | Scott Ullrich | |
12 | a9e1725f | Scott Ullrich | ?>
|