Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php
  2.  
  3. // This file contains all variables needed by other php scripts
  4.  
  5. $LogRelativePath = 'logs/';
  6.  
  7. // ----------------------------------------------------------------------------------------
  8. // Variables for nel database access
  9. // ----------------------------------------------------------------------------------------
  10.  
  11. // where we can find the mysql database
  12. $DBHost = "localhost";
  13. $DBUserName = "shard";
  14. $DBPassword = "";
  15. $DBName = "nel";
  16.  
  17. $RingDBUserName = "shard";
  18. $RingDBName = "ring_open";
  19. $RingDBPassword = "";
  20.  
  21. // If true, the server will add automatically unknown user in the database
  22. // (in nel.user, nel.permission, ring.ring_user and ring.characters
  23. $AcceptUnknownUser = true;
  24. // if true, the login service automaticaly create a ring user and a editor character if needed
  25. $AutoCreateRingInfo = true;
  26.  
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement