Advertisement
Guest User

Untitled

a guest
May 17th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?php
  2. // General settings
  3. $AccessKey = "7841014100"; // Use a strong, random value here. This makes it so logs can only be seen by people who should be able to see them
  4. // 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'
  5. $AppDirectory = "hlogs";
  6.  
  7. $title = "Server Logs"; // Title displayed in top left corner of logs
  8. // Database configuration
  9. $dbhost = "sql.mtxserv.fr"; // URL or IP address that your MySQL server is running on
  10. $dbuser = "w_91052"; // Username for your MySQL login
  11. $dbpass = "hapolyne01"; // Passeord for your MySQL login
  12. $dbname = "91052_sql"; // Name of the database you created for Hydrogen logs
  13. $dbport = 3306; // MySQL server port
  14.  
  15. $skin = "blue";
  16. /*
  17. SKINS!
  18.  
  19. Your options are:
  20. - 'blue' Gives it a blue theme
  21. - 'black' Gives it a black theme
  22. - 'purple' You get it...
  23. - 'green'
  24. - 'red'
  25. - 'yellow'
  26. - 'blue-light' (white sidebar)
  27. - 'purple-light'
  28. - 'green-light'
  29. - 'red-light',
  30. - 'yellow-light'
  31. */
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. // Leave anything below this line alone!!
  39. //
  40. //
  41. //
  42. $db = new PDO('mysql:host='.$dbhost.';dbname='.$dbname.';port='.$dbport.'', $dbuser, $dbpass); // Database object
  43. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement