Advertisement
Guest User

Untitled

a guest
Mar 21st, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. <?php
  2. /*======================================================================*\
  3. || #################################################################### ||
  4. || # vBulletin 5 Presentation Configuration # ||
  5. || # ---------------------------------------------------------------- # ||
  6. || # All PHP code in this file is ©2000-2012 vBulletin Solutions Inc. # ||
  7. || # This file may not be redistributed in whole or significant part. # ||
  8. || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
  9. || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
  10. || #################################################################### ||
  11. \*======================================================================*/
  12.  
  13. /*-------------------------------------------------------*\
  14. | ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |
  15. +---------------------------------------------------------+
  16. | When making changes to the file, the edit should always |
  17. | be to the right of the = sign between the single quotes |
  18. | Default: $config['admincpdir'] = 'admincp'; |
  19. | Example: $config['admincpdir'] = 'myadmin'; GOOD! |
  20. | Example: $config['myadmin'] = 'admincp'; BAD! |
  21. \*-------------------------------------------------------*/
  22.  
  23.  
  24. // ****** Base URLs ******
  25. // The following settings all deal with the url of your forum.
  26. // If set incorrectly your site/software will not function correctly.
  27. // These urls should NOT include a trailing slash
  28. // This is the url and web path of your root vBulletin directory
  29. $config['baseurl'] = 'http://198.211.123.144';
  30.  
  31.  
  32. // This will only be used if you wish to require https logins
  33. // You will not need to change this setting most of the time.
  34. $config['baseurl_login'] = $config['baseurl'];
  35.  
  36. // If you do wish to use https for login, uncomment this line
  37. // Then fill in your https url.
  38. //$config['baseurl_login'] = 'https://www.yourdomain.com/folder';
  39.  
  40.  
  41. // ****** System Paths ******
  42.  
  43. // This setting allows you to change the name of the admin folder
  44. $config['admincpdir'] = 'admincp';
  45.  
  46. // ****** Cookie Settings ******
  47. // These are cookie related settings.
  48. // This Setting allows you to change the cookie prefix
  49. $config['cookie_prefix'] = 'bb';
  50.  
  51.  
  52. // ****** Special Settings ******
  53. // These settings are only used in some circumstances
  54. // Please do not edit if you are not sure what they do.
  55.  
  56. // You can ignore this setting for right now.
  57. $config['cookie_enabled'] = true;
  58.  
  59. $config['report_all_php_errors'] = false;
  60. $config['no_template_notices'] = true;
  61.  
  62. // This setting should never be used on a live site
  63. $config['no_js_bundles'] = false;
  64.  
  65. // This setting enables debug mode, it should NEVER be used on a live site
  66. $config['debug'] = false;
  67.  
  68. // Assumes default location of core.
  69. // These are the system paths and folders for your vBulletin files
  70. // This setting is for where your vbulletin core folder is
  71. $config['core_path'] = realpath(dirname(__FILE__)) . '/core';
  72.  
  73. // This is the url and web based path to your core directory
  74. $config['baseurl_core'] = $config['baseurl'] . '/core';
  75.  
  76.  
  77. /*======================================================================*\
  78. || ####################################################################
  79. || # Downloaded:
  80. || # CVS: $RCSfile$ -
  81. || ####################################################################
  82. \*======================================================================*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement