INSTALL 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. ------------------------------------------------------------------------------
  2. SETUP: How to install Krumo ?
  3. ------------------------------------------------------------------------------
  4. In order to use Krumo you have to put it on your (development) server, and
  5. include it in your script. You can put it somewhere in the INCLUDE_PATH, or
  6. specify the full path to the "class.krumo.php" file.
  7. You have to modify the "krumo.ini" file too. It is the configuration file for
  8. Krumo. The first option is choosing a skin:
  9. [skin]
  10. selected = "orange"
  11. The value for this setting has to be the name of one of the sub-folders from the
  12. "Krumo/skins/" folder. If the value provided for the skin results in not finding
  13. the skin, the `default` skin will be used instead.
  14. The second option is used to set the correct web path to the folder where Krumo
  15. is installed. This is used in order to make the images from Krumo's CSS skins
  16. web-accessible.
  17. [css]
  18. url = "http://www.example.com/Krumo/"
  19. So far those two are the only configuration options.
  20. All the CSS files ("skin.css") from the "Krumo/skins/" sub-folders must have the
  21. proper permissions in order to be readable from Krumo. Same applies for
  22. "krumo.ini" and "krumo.js" files.