Advertisement
Porygon

RevCMS 1.9.9.9 Configuration

Jan 25th, 2012
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.13 KB | None | 0 0
  1. <?php
  2. #//*-/ RevCMS 1.9.9.9 Configuration
  3.  
  4. // Prohibits the file from being accessed directly.
  5. if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file directly.'); }
  6.  
  7.  
  8. // MySQL connection type, either normal or persisent.
  9. $_CONFIG['mysql']['connection_type'] = 'pconnect';
  10.  
  11. // MySQL host, generally localhost unless it is on a different server.
  12. $_CONFIG['mysql']['hostname'] = 'localhost';
  13.  
  14. // MySQL username.
  15. $_CONFIG['mysql']['username'] = 'root';
  16.  
  17. // MySQL password.
  18. $_CONFIG['mysql']['password'] = 'toor';
  19.  
  20. // MySQL database.
  21. $_CONFIG['mysql']['database'] = 'phxdb';
  22.  
  23. // MySQL connection port, generally 3306.
  24. $_CONFIG['mysql']['port'] = '3306';
  25.  
  26.  
  27. // Hotel IP/host, if running locally leave this as localhost.
  28. $_CONFIG['hotel']['server_ip'] = 'localhost';
  29.  
  30. // Hotel name.
  31. $_CONFIG['hotel']['name'] = 'Habbo';
  32.  
  33. // Hotel description, slogan, motto, etc.
  34. $_CONFIG['hotel']['desc'] = 'Make friends, join the fun, get noticed!';
  35.  
  36. // If you are using the Priv skin, this is the address help queries are sent to.
  37. $_CONFIG['hotel']['email'] = 'help@habbo.com';
  38.  
  39. // If false, the hotel is not in maintenance. If true, the hotel is in maintenance.
  40. $_CONFIG['hotel']['in_maint'] = false;
  41.  
  42. // The default motto.
  43. $_CONFIG['hotel']['motto'] = 'I am new here!';
  44.  
  45. // Starting credits amount.
  46. $_CONFIG['hotel']['credits'] = 7500;
  47.  
  48. // Starting pixels amount.
  49. $_CONFIG['hotel']['pixels'] = 5000;
  50.  
  51. // Default figure users will register with.
  52. $_CONFIG['hotel']['figure'] = '-';
  53.  
  54.  
  55. // Hotel web_build. It should be fine the way it is.
  56. $_CONFIG['hotel']['web_build'] = '63_1dc60c6d6ea6e089c6893ab4e0541ee0/814';
  57.  
  58. // Hotel external variables.
  59. $_CONFIG['hotel']['external_vars'] = 'http://localhost/r63/external_vars.txt';
  60.  
  61. // Hotel external texts.
  62. $_CONFIG['hotel']['external_texts'] = 'http://localhost/r63/external_flash_texts.txt';
  63.  
  64. // Hotel product data.
  65. $_CONFIG['hotel']['product_data'] = 'http://localhost/r63/productdata.txt';
  66.  
  67. // Hotel furni data.
  68. $_CONFIG['hotel']['furni_data'] = 'http://localhost/r63/furnidata.txt';
  69.  
  70. // Hotel SWF folder.
  71. $_CONFIG['hotel']['swf_folder'] = 'http://localhost/r63';
  72.  
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement