Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?php
  2. // MYSQL Settings
  3. $db_host = 'unknownnetwork.net'; // Hostname or Host IP
  4. $db_user = 'unknownn_richiep'; // Username
  5. $db_pass = '22stanzialer'; // Password
  6. $db_database = 'unknownn_prometheus_policerp'; // Database
  7. $db_port = 3306; // Database port
  8.  
  9. $steam_api = ''; // Your Steam API key. This setting isn't needed, but if filled it will act as a fallback for name grabbing
  10.  
  11. /**
  12. * Language setting
  13. * @var string:
  14. *
  15. * Available options:
  16. *
  17. * en-gb English Great Britain
  18. * swedish-chef Swedish Chef
  19. * norwegian-chef Norwegian Chef
  20. * fr French
  21. * no-bk Norwegian Bokmål
  22. * nl Dutch
  23. * da Danish
  24. */
  25. $lang = 'en-gb'; // To make a new language file, copy the lang/en-gb.php file and rename it to for example "fr.php"
  26.  
  27. /**
  28. * Use cache setting
  29. * @var boolean
  30. * This config option is for those free loaders who dont pay for hosting and have no support or access to change permissions on their site
  31. */
  32. $enable_cache = true;
  33.  
  34. /**
  35. * Enable if you are using an SSL certificate
  36. * @var boolean
  37. */
  38. $using_ssl = false;
  39.  
  40. // Don't touch this. Always have it on false unless you know what you're doing.
  41. // Devmode clears cache, enables timestamp at bottom of the page and turns on error reporting
  42. $devmode = false;
  43. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement