Advertisement
Guest User

Configuration ;)

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