Advertisement
bougnanof

config.php

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