home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 December / PCWorld_2002-12_cd.bin / Software / Vyzkuste / ipatlas / plotconf.inc < prev    next >
Text File  |  2002-07-02  |  1KB  |  51 lines

  1. <?
  2.  
  3. # try to find GD on the server? set this
  4. # to "0" if the script doesn't work or there is a broken image
  5. $trygd = "1";
  6.  
  7. # language (look in language/ dir for language files)
  8. $language = "en"; global $language;
  9.  
  10. include("translate.inc");
  11.  
  12. # display warnings? set to "0" if there are warnings
  13. # on the screen. report these to ivan@xpenguin.com so
  14. # this option will become unnessessary.
  15. $warnings = "1";
  16.  
  17. # earth images
  18. # url path:name:width:height
  19. # everything must be accurate!
  20. # take new image names out of the t()
  21.  
  22. $earthimages = array();
  23. $earthimages[0] = "earth_620.jpg:".t("Color").":620:310";
  24. $earthimages[1] = "earth_620_bw.jpg:".t("Grayscale").":620:310";
  25.  
  26. # which image out of those is the default?
  27. $defaultimage = 0;
  28.  
  29. # css dots for netscape 4 users and systems without GD
  30. # url path:name:width:height
  31. $cssdots = array();
  32. $cssdots[0] = "reddot.gif:Red 7x7:7:7";
  33. $cssdots[1] = "yellowdot.gif:Yellow 7x7:7:7";
  34. $defaultdot = 0;
  35.  
  36. # block user agents "libwww-perl" "lwp-trivial" "LWP::Simple" "PHP/"
  37. $blockbadagents = 1;
  38.  
  39. # log entries? comment the line to disable.
  40. $logging = "yes";
  41.  
  42. # path to the cookie
  43. $cookiepath = "/";
  44.  
  45. # set $use_firewall to "1" if behind a proxy
  46. $use_firewall="";
  47. $firewall_host="localhost";
  48. $firewall_port=3128;
  49.  
  50. ?>
  51.