Advertisement
Guest User

Untitled

a guest
Feb 4th, 2012
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?php
  2.  
  3. ########################################
  4. # @Author Xenous(Lucas)
  5. # @Regards to Limez,XenoGFX &
  6. # @others who supported me during dev
  7. ########################################
  8.  
  9. if (!defined("XenCMS")) {
  10.  
  11. die('404 Page not found');
  12. }
  13.  
  14. # MySQL Config. #
  15.  
  16. $config['mysql']['hostname'] = 'localhost'; // MySQL Hostname, usually localhost.
  17. $config['mysql']['user'] = 'root'; // MySQL Username, usually root.
  18. $config['mysql']['pass'] = 'tehxenous'; // MySQL Password, whatever you have set this too.
  19. $config['mysql']['database'] = 'phoenix'; // MySQL Database, whatever you named your database.
  20.  
  21. # Site Config. #
  22.  
  23. $config['url']['title'] = 'Hotel'; // Hotel Name.
  24. $config['url']['subtitle'] = 'Best hotel around!'; // Hotel Motto.
  25.  
  26. # Template Config (Coming soon). #
  27.  
  28. ##$config['url']['template'] = 'Barebones'; // Name of the folder your template is in.
  29.  
  30. # User Config. #
  31.  
  32. $config['user']['motto'] = 'I <3 Hotel'; // Motto users will start with.
  33. $config['user']['credits'] = '500000'; // Credits users will start with.
  34. $config['user']['pixels'] = '100000'; // Pixels users start with.
  35. $config['user']['look'] = '-'; // Look users start with.
  36. $config['user']['rank'] = '1'; // Rank users start with.
  37. $config['user']['hashType'] = 'xCrypt';
  38. //// The hash type which can be sha1, md5, pCrypt(sha1+md5), xCrypt(sha1+md5+hash), shaHash(sha1+hash) & md5Hash(md5+hash).
  39. $config['user']['hash'] = '#$@%$#%$#K$N#GINDkgnSDIGSDGJ)#JE(#NGkdnGSING#(GJ%GN&R%YTDGNIDF';
  40.  
  41. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement