Guest User

Untitled

a guest
Nov 10th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. class JConfig {
  3. //some configs here that don't have to do with database
  4. public $dbtype = 'mysqli'; // also tried mysql
  5. public $host = 'localhost'; // also tried 127.0.0.1
  6. public $user = 'root';
  7. public $password = 'root';
  8. public $db = 'ignis';
  9. public $dbprefix = 'igns_';
  10. public $live_site = '';
  11. public $secret = 'hfBFMHHorwBkFbfw';
  12. //more config not relevant for database
  13. }
Add Comment
Please, Sign In to add comment