Advertisement
Guest User

Phoenix connection

a guest
Jul 6th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. <?php
  2. if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
  3. error_reporting(0);
  4. #Please fill this all out.
  5.  
  6. #NOTE: To set up TheHabbos.ORG's API go to wwwroot/mysite/thehabbos_api for IIS, OR, htdocs/thehabbos_api for XAMPP and others.
  7.  
  8. /*
  9. *
  10. * MySQL management
  11. *
  12. */
  13.  
  14. $_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.
  15.  
  16. $_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host
  17.  
  18. $_CONFIG['mysql']['username'] = 'root'; //MySQL username
  19.  
  20. $_CONFIG['mysql']['password'] = 'passwordhere'; //MySQL password
  21.  
  22. $_CONFIG['mysql']['database'] = 'dbhere'; //MySQL database
  23.  
  24. $_CONFIG['mysql']['port'] = '3306'; //MySQL's port
  25.  
  26. /*
  27. *
  28. * Hotel management - All URLs do not end with an "/"
  29. *
  30. */
  31.  
  32. $_CONFIG['hotel']['server_ip'] = '54.88.234.106'; //IP Of VPS, Proxy server, etc.
  33.  
  34. $_CONFIG['hotel']['server_port'] = '30000'; //The port your emulator uses/the port your proxy host have gave you.
  35.  
  36. $_CONFIG['hotel']['url'] = 'http://54.88.234.106'; //Does not end with a "/"
  37.  
  38. $_CONFIG['hotel']['name'] = 'Habiox'; // Hotel's name
  39.  
  40. $_CONFIG['hotel']['desc'] = 'Where the Fun Begins!'; //Hotel's description
  41.  
  42. $_CONFIG['hotel']['owner-1'] = 'Omar'; // Owner 1
  43.  
  44. $_CONFIG['hotel']['owner-2'] = 'Jake'; // Owner 2
  45.  
  46. $_CONFIG['hotel']['footer'] = $_CONFIG['hotel']['name'] . ' ' . 'is powered by RevCMS Edit, and hosted by <a href = "http://rangehosts.net/">RangeHosts</a>.'; // Hotel's name
  47.  
  48. $_CONFIG['hotel']['email'] = 'help@habiox.net'; //Where the help queries from users are emailed to.@Priv skin
  49.  
  50. $_CONFIG['hotel']['in_maint'] = false; //False if hotel is NOT in maintenance. True if hotel IS in maintenance
  51.  
  52. $_CONFIG['hotel']['motto'] = 'I <3 ' . $_CONFIG['hotel']['name']; //Default motto users will register with.
  53.  
  54. $_CONFIG['hotel']['credits'] = 5000; //Default number of credits users will register with.
  55.  
  56. $_CONFIG['hotel']['pixels'] = 10000; //Default number of pixels users will register with.
  57.  
  58. $_CONFIG['hotel']['figure'] = 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62'; //Default figure users will register with.
  59.  
  60. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/527'; //Web_Build
  61.  
  62. $_CONFIG['hotel']['external_vars'] = 'http://54.88.234.106/r63/external_variables.txt'; //URL to your external vars
  63.  
  64. $_CONFIG['hotel']['external_texts'] = 'http://54.88.234.106/r63/external_flash_texts.txt'; //URL to your external texts
  65.  
  66. $_CONFIG['hotel']['product_data'] = 'http://54.88.234.106/r63/productdata.txt'; //URL to your productdata
  67.  
  68. $_CONFIG['hotel']['furni_data'] = 'http://54.88.234.106/r63/furnidata.txt'; //URL to your furnidata
  69.  
  70. $_CONFIG['hotel']['swf_folder'] = 'http://54.88.234.106/r63'; //URL to your SWF folder(does not end with a '/')
  71.  
  72. /*
  73. *
  74. * Templating management - Pick one of our default styles or make yours by following our examples!
  75. *
  76. */
  77.  
  78. #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.
  79.  
  80. $_CONFIG['template']['style'] = 'Habbo';
  81.  
  82. /*
  83. *
  84. * Other topsites.. thing
  85. *
  86. */
  87.  
  88. $_CONFIG['thehabbos']['username'] = 'Kryptos';
  89. $_CONFIG['retro_top']['user'] = 'Kryptos';
  90.  
  91. /*
  92. *
  93. * Social Networking stuff
  94. *
  95. */
  96. // Twitter
  97. $_CONFIG['hotel']['twitter'] = 'Habiox'; //Twitter Username
  98. $_CONFIG['hotel']['twitterwidget_id'] = '345163210678206465'; //Twiter Widget ID
  99.  
  100. //Facebook
  101. $_CONFIG['hotel']['facebook'] = 'Habiox'; //Facebook Username
  102.  
  103. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement