Advertisement
Guest User

config.php

a guest
Apr 9th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <?php
  2. // General settings $AccessKey = "123456789"; // Use a strong, random value here. This makes it so logs can only be seen by people who should be able to see them
  3. // The name of the folder you installed hydrogen in. Do not put a slash before or after the folder Name. Examples: 'logs', 'hlogs', 'darkrp/logs'
  4. $AppDirectory = "hlogsweb"; $title = "Server Logs"; // Title displayed in top left corner of logs
  5. // Database configuration $dbhost = "localhost"; // URL or IP address that your MySQL server is running on $dbuser = "kapparpc_hydrogn"; // Username for your MySQL login $dbpass = "KappaRP01"; // Passeord for your MySQL login $dbname = "kapparpc_hydrogen"; // Name of the database you created for Hydrogen logs $dbport = 3306; // MySQL server port
  6.  
  7. $skin = "red";
  8. /*
  9. SKINS!
  10.  
  11. Your options are:
  12. - 'blue' Gives it a blue theme
  13. - 'black' Gives it a black theme
  14. - 'purple' You get it...
  15. - 'green'
  16. - 'red'
  17. - 'yellow'
  18. - 'blue-light' (white sidebar)
  19. - 'purple-light'
  20. - 'green-light'
  21. - 'red-light',
  22. - 'yellow-light'
  23. */
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. // Leave anything below this line alone!! // // // $db = new PDO('mysql:host='.$dbhost.';dbname='.$dbname.';port='.$dbport.'', $dbuser, $dbpass); // Database object
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement