settings.example.inc 794 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Settings file for QuoteEngine
  3. // Copy this file to settings.inc and edit the below
  4. // There's a setting at the end you MUST change before the script will run
  5. define("MYSQL_HOST", "localhost");
  6. define("MYSQL_USER", "username");
  7. define("MYSQL_PASS", "password");
  8. define("MYSQL_DB", "quotes");
  9. // The channel you want to show by default
  10. // Use "__all" to not filter
  11. // Omit the leading # for the channel name!
  12. define("DEFAULT_CHAN", "__all");
  13. // The person to say is hosting the page
  14. // Your name or your bot's name probably
  15. define("QUOTES_HOST", "YourName");
  16. // The stylesheet to use
  17. // styles.css or ocean.css
  18. // Or your own, if you're super-clever
  19. define("QUOTES_CSS", "styles.css");
  20. // Change 'false' to 'true' below!
  21. define("SETTINGS_EDITED", false);
  22. ?>