You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.1 KiB

  1. <?PHP
  2. // copy to db.live.php and change login credentials
  3. // and or
  4. // copy to db.dev.php and change login credentials for developement
  5. //and set the link to dev or live db at db.inc.php
  6. // The host name of your MySQL installation:
  7. // $hostName = "localhost"; // e.g.: "localhost"
  8. $hostName = "my.sql.server.com";
  9. $databaseName = "literature";
  10. // The name of the MySQL user that's going to be used with your MySQL
  11. // literature database:
  12. // Note: - this user should be a separate MySQL user (different from the
  13. // user that has full administrative privileges like the root user!)
  14. // - if there's no existing MySQL user with the specified name,
  15. // the 'install.php' script will create this user for you
  16. // $username = "litwww"; // e.g.: "litwww"
  17. $username = "refdbuser";
  18. // The password by which the above MySQL user will be granted access to
  19. // your MySQL literature database:
  20. // $password = "%l1t3ratur3?"; // e.g.: "%l1t3ratur3?"
  21. $password = "secretpassword";
  22. ?>