3 require("../../config.php");
5 # try to find GD on the server? set this
6 # to "0" if the script doesn't work or there is a broken image
7 if ($CFG->gdversion == 1 or $CFG->gdversion == 2) {
13 # language (look in language/ dir for language files)
14 $language = "en"; global $language;
16 include("translate.inc");
18 # display warnings? set to "0" if there are warnings
19 # on the screen. report these to ivan@xpenguin.com so
20 # this option will become unnessessary.
24 # url path:name:width:height
25 # everything must be accurate!
26 # take new image names out of the t()
28 $earthimages = array();
29 $earthimages[0] = "earth_620.jpg:".t("Color").":620:310";
31 # which image out of those is the default?
34 # css dots for netscape 4 users and systems without GD
35 # url path:name:width:height
37 $cssdots[0] = "reddot.gif:Red 7x7:7:7";
38 $cssdots[1] = "yellowdot.gif:Yellow 7x7:7:7";
41 # block user agents "libwww-perl" "lwp-trivial" "LWP::Simple" "PHP/"
44 # log entries? comment the line to disable.
50 # set $use_firewall to "1" if behind a proxy
51 if ($CFG->proxyhost and $CFG->proxyport) {
53 $firewall_host=$CFG->proxyhost;
54 $firewall_port=$CFG->proxyport;
57 $firewall_host="localhost";