Advertisement
Guest User

Untitled

a guest
Apr 20th, 2010
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.32 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The base configurations of the WordPress.
  4.  *
  5.  **************************************************************************
  6.  * Do not try to create this file manually. Read the README.txt and run the
  7.  * web installer.
  8.  **************************************************************************
  9.  *
  10.  * This file has the following configurations: MySQL settings, Table Prefix,
  11.  * Secret Keys, WordPress Language, and ABSPATH.
  12.  *
  13.  * This file is used by the wp-config.php creation script during the
  14.  * installation.
  15.  *
  16.  * @package WordPress
  17.  */
  18.  
  19. /*manually inserted for bbpress integration*/
  20. define( 'COOKIEHASH', 'blankedout' );
  21. define( 'COOKIE_DOMAIN', '.zice.ro' );
  22. define( 'SITECOOKIEPATH', '/' );
  23. define( 'COOKIEPATH', '/' );
  24.  
  25. // ** MySQL settings - You can get this info from your web host ** //
  26. /** The name of the database for WordPress */
  27. define('DB_NAME', 'blankedout');
  28.  
  29. /** MySQL database username */
  30. define('DB_USER', 'blankedout');
  31.  
  32. /** MySQL database password */
  33. define('DB_PASSWORD', 'blankedout');
  34.  
  35. /** MySQL hostname */
  36. define('DB_HOST', 'localhost');
  37.  
  38. /** Database Charset to use in creating database tables. */
  39. define('DB_CHARSET', 'utf8');
  40.  
  41. /** The Database Collate type. Don't change this if in doubt. */
  42. define('DB_COLLATE', '');
  43. define('VHOST', 'yes');
  44. $base = '/';
  45. define('DOMAIN_CURRENT_SITE', 'zice.ro' );
  46. define('PATH_CURRENT_SITE', '/' );
  47. define('BLOGID_CURRENT_SITE', '1' );
  48.  
  49. /** disable Revisions */
  50. define('WP_POST_REVISIONS',false);
  51.  
  52. /** extend the Autosave timing */
  53. define('AUTOSAVE_INTERVAL',300);
  54.  
  55. /**#@+
  56.  * Authentication Unique Keys.
  57.  *
  58.  * Change these to different unique phrases!
  59.  * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
  60.  *
  61.  * @since 2.6.0
  62.  */
  63. define('LOGGED_IN_KEY', 'blankedout');
  64. define('LOGGED_IN_SALT', 'blankedout');
  65. define('AUTH_KEY', 'blankedout');
  66. define('SECURE_AUTH_KEY', 'blankedout');
  67. define('SECURE_AUTH_SALT', 'blankedout');
  68. define( 'NONCE_KEY', 'blankedout' );
  69. define( 'AUTH_SALT', 'blankedout' );
  70. /**#@-*/
  71.  
  72. /**
  73.  * WordPress Database Table prefix.
  74.  *
  75.  * You can have multiple installations in one database if you give each a unique
  76.  * prefix. Only numbers, letters, and underscores please!
  77.  */
  78. $table_prefix  = 'blankedout';
  79.  
  80. /**
  81.  * WordPress Localized Language, defaults to English.
  82.  *
  83.  * Change this to localize WordPress.  A corresponding MO file for the chosen
  84.  * language must be installed to wp-content/languages. For example, install
  85.  * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
  86.  * language support.
  87.  */
  88. define ('WPLANG', 'ro_RO');
  89.  
  90. // double check $base
  91. if( $base == 'BASE' )
  92.     die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
  93.  
  94. // uncomment this to enable wp-content/sunrise.php support
  95. define( 'SUNRISE', 'on' );
  96.  
  97. //inserted to use gmails smtp servers for sending ALL emails in conjunction with the wp-mail-smt plugin
  98. define('WPMS_ON', true);
  99. define('WPMS_MAIL_FROM', 'suport@zice.ro');
  100. define('WPMS_MAIL_FROM_NAME', 'zice.ro');
  101. define('WPMS_MAILER', 'smtp'); // Possible values 'smtp', 'mail', or 'sendmail'
  102. define('WPMS_SMTP_HOST', 'smtp.gmail.com'); // The SMTP mail host
  103. define('WPMS_SMTP_PORT', 465); // The SMTP server port number
  104. define('WPMS_SSL', 'ssl'); // Possible values '', 'ssl', 'tls' - note TLS is not STARTTLS
  105. define('WPMS_SMTP_AUTH', true); // True turns on SMTP authentication, false turns it off
  106. define('WPMS_SMTP_USER', 'blankedout'); // SMTP authentication username, only used if WPMS_SMTP_AUTH is true
  107. define('WPMS_SMTP_PASS', 'blankedout'); // SMTP authentication password, only used if WPMS_SMTP_AUTH is true
  108.  
  109. // uncomment to move wp-content/blogs.dir to another relative path
  110. // remember to change WP_CONTENT too.
  111. // define( "UPLOADBLOGSDIR", "fileserver" );
  112.  
  113. // If VHOST is 'yes' uncomment and set this to a URL to redirect if a blog does not exist or is a 404 on the main blog. (Useful if signup is disabled)
  114. // For example, the browser will redirect to http://examples.com/ for the following: define( 'NOBLOGREDIRECT', 'http://example.com/' );
  115. // define( 'NOBLOGREDIRECT', '' );
  116. // On a directory based install you can use the 404 handler.
  117.  
  118. // Location of mu-plugins
  119. // define( 'WPMU_PLUGIN_DIR', '' );
  120. // define( 'WPMU_PLUGIN_URL', '' );
  121. // define( 'MUPLUGINDIR', 'wp-content/mu-plugins' );
  122.  
  123. // Uncomment to disable the site admin bar
  124. // define( 'NOADMINBAR', 1 );
  125.  
  126. define( "WP_USE_MULTIPLE_DB", false );
  127.  
  128. define(”ENABLE_CACHE” ,true); //added manually for object cache, unnecessary?
  129. define('WP_CACHE', true); //Added by WP-Cache Manager
  130. //-WP Tuner Plugin by MrPete------------
  131. //--------------------------------------
  132. $wpTunerStart = microtime();                    // get start time as early as we can
  133. if ( function_exists( 'getrusage' ) ) { $wpTunerStartCPU = getrusage(); }
  134. @include_once(dirname(__FILE__).'/wp-content/plugins/wptuner/wptunertop.php'); // fire up WPTuner
  135. //--------------------------------------
  136. //-END WP Tuner Plugin------------------
  137. /* That's all, stop editing! Happy blogging. */
  138.  
  139. /** WordPress absolute path to the Wordpress directory. */
  140. if ( !defined('ABSPATH') )
  141.     define('ABSPATH', dirname(__FILE__) . '/');
  142.  
  143. /** Sets up WordPress vars and included files. */
  144. require_once(ABSPATH . 'wp-settings.php');
  145. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement