Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. <?php
  2. if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
  3. #Please fill this all out.
  4.  
  5. #NOTE: To set up TheHabbos.ORG's API go to wwwroot/mysite/thehabbos_api for IIS, OR, htdocs/thehabbos_api for XAMPP and others.
  6.  
  7. /*
  8. *
  9. * MySQL management
  10. *
  11. */
  12.  
  13. $_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.
  14.  
  15. $_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host
  16.  
  17. $_CONFIG['mysql']['username'] = 'root'; //MySQL username
  18.  
  19. $_CONFIG['mysql']['password'] = 'hei123'; //MySQL password
  20.  
  21. $_CONFIG['mysql']['database'] = 'koko'; //MySQL database
  22.  
  23. $_CONFIG['mysql']['port'] = '3306'; //MySQL's port
  24.  
  25. /*
  26. *
  27. * Hotel management - All URLs do not end with an "/"
  28. *
  29. */
  30.  
  31. $_CONFIG['hotel']['server_ip'] = '35.228.42.92'; //IP of VPS/DEDI/etc
  32.  
  33. $_CONFIG['hotel']['url'] = 'http://35.228.42.92'; //Does not end with a "/"
  34.  
  35. $_CONFIG['hotel']['name'] = 'Habbo'; // Hotel's name
  36.  
  37. $_CONFIG['hotel']['desc'] = 'Best hotel around!'; //Hotel's description
  38.  
  39. $_CONFIG['hotel']['email'] = 'help@myhotel.net'; //Where the help queries from users are emailed to.@Priv skin
  40.  
  41. $_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance
  42.  
  43. $_CONFIG['hotel']['motto'] = 'I <3 ' . $_CONFIG['hotel']['name']; //Default motto users will register with.
  44.  
  45. $_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.
  46.  
  47. $_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with.
  48.  
  49. $_CONFIG['hotel']['figure'] = '-'; //Default figure users will register with.
  50.  
  51. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/527'; //Web_Build
  52.  
  53. $_CONFIG['hotel']['external_vars'] = 'http://35.228.42.92/swf/external_variables.txt'; //URL to your external vars
  54.  
  55. $_CONFIG['hotel']['external_texts'] = 'http://35.228.42.92/swf/external_flash_texts.txt'; //URL to your external texts
  56.  
  57. $_CONFIG['hotel']['product_data'] = 'http://35.228.42.92/swf/productdata.txt'; //URL to your productdata
  58.  
  59. $_CONFIG['hotel']['furni_data'] = 'http://35.228.42.92/swf/furnidata.txt'; //URL to your furnidata
  60.  
  61. $_CONFIG['hotel']['swf_folder'] = 'http://35.228.42.92/swf'; //URL to your SWF folder(does not end with a '/')
  62.  
  63. /*
  64. *
  65. * Templating management - Pick one of our default styles or make yours by following our examples!
  66. *
  67. */
  68.  
  69. #RevCMS has 2 default styles, 'Mango' by dannyy94 and 'Priv' by joopie - Others styles are to come, such as RastaLulz's ProCMS style and Nominal's PhoenixCMS 4.0 style.
  70.  
  71. $_CONFIG['template']['style'] = 'Habbo';
  72.  
  73. /*
  74. *
  75. * Other topsites.. thing
  76. *
  77. */
  78.  
  79. $_CONFIG['thehabbos']['username'] = 'Kryptos';
  80. $_CONFIG['retro_top']['user'] = 'Kryptos';
  81.  
  82. /*
  83. *
  84. * Recaptcha management - Fill the information below if you have one, else leave it like that and don't worry, be happy.
  85. *
  86. */
  87.  
  88. $_CONFIG['recaptcha']['priv_key'] = '6LcZ58USAAAAABSV5px9XZlzvIPaBOGA6rQP2G43';
  89. $_CONFIG['recaptcha']['pub_key'] = '6LcZ58USAAAAAAQ6kquItHl4JuTBWs-5cSKzh6DD';
  90.  
  91.  
  92. /*
  93. *
  94. * Social Networking stuff
  95. *
  96. */
  97.  
  98. $_CONFIG['social']['twitter'] = 'TwitterAccount'; //Hotel's Twitter account
  99.  
  100. $_CONFIG['social']['facebook'] = 'FacebookAccount'; //Hotel's Facebook account
  101.  
  102. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement