Guest User

Untitled

a guest
Dec 1st, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // AJAX Chat config parameters:
  2. $config = array();
  3.  
  4. // Database connection values:
  5. $config['dbConnection'] = array();
  6. // Database hostname:
  7. $config['dbConnection']['host'] = 'localhost';
  8. // Database username:
  9. $config['dbConnection']['user'] = 'qachatuser'; // I renamed as my username
  10. // Database password:
  11. $config['dbConnection']['pass'] = 'password'; // I renamed as my username password
  12. // Database name:
  13. $config['dbConnection']['name'] = 'qachat'; I renamed as my database name
  14. // Database type:
  15. $config['dbConnection']['type'] = null;
  16. // Database link:
  17. $config['dbConnection']['link'] = null; // what should be here?
Add Comment
Please, Sign In to add comment