Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #27974, comment 29


Ignore:
Timestamp:
03/08/2016 09:38:59 AM (10 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27974, comment 29

    initial v1  
    66
    77Hello Sergey Biryukov, can you help me, I have the same problem, i can not log in
    8 
    9 <?php
    10 /**
    11  * The base configurations of the WordPress.
    12  *
    13  * This file has the following configurations: MySQL settings, Table Prefix,
    14  * Secret Keys, WordPress Language, and ABSPATH. You can find more information by
    15  * visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
    16  * wp-config.php} Codex page. You can get the MySQL settings from your web host.
    17  *
    18  * This file is used by the wp-config.php creation script during the
    19  * installation. You don't have to use the web site, you can just copy this file
    20  * to "wp-config.php" and fill in the values.
    21  *
    22  * @package WordPress
    23  */
    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', 'knip');
    28 
    29 /** MySQL database username */
    30 define('DB_USER', 'knip');
    31 
    32 /** MySQL database password */
    33 define('DB_PASSWORD', 'knip');
    34 
    35 /** MySQL hostname */
    36 define('DB_HOST', 'knip');
    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 
    44 /**#@+
    45  * Authentication Unique Keys.
    46  *
    47  * Change these to different unique phrases!
    48  * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
    49  *
    50  * @since 2.6.0
    51  */
    52 define('AUTH_KEY',         '5i5kRvLf3fa!ZDtWg6ByCG(1*p27zQTw^^EFyI#3ud4%9yu@BQBPrfYV@lkJsuka');
    53 define('SECURE_AUTH_KEY',  'iZG%qa#(BnSto%BRHqDn&Pxj6Xnai!XyyPsXSw(PZa1xMhc4R#y2C9FhW!%tXKRH');
    54 define('LOGGED_IN_KEY',    'A*xIeFzKw7p7H1amC&W5w)4rPlsM#)W7DV%1MyIJ6nc@j^za^oC3DGMQoMS17UXr');
    55 define('NONCE_KEY',        'gwHv#&SIsGP(wYnBrAgDRYh*om0Md6ajpilA92Rv2BW^woo7v^Dy6XA^E6fpNLbY');
    56 define('AUTH_SALT',        'KC!@71%Ch)XIP0w66cDLB!5uXuzZW2mRZub8lyblbYJ*BMLIWmLMBc2f)G@PV&d4');
    57 define('SECURE_AUTH_SALT', 'xxG^!TKxa9bWQTENO7Ud9gzSTn!z*&7G&I&yyL0BLtSZCl7c7r4Z7H2RbtfgWcu0');
    58 define('LOGGED_IN_SALT',   '2&Tn)vNhHYqwY*Yc(GA&V0VwFh%&h8gM(h(v!J*bQ60eRIm^!B#fUL@aPgW*cC3q');
    59 define('NONCE_SALT',       '2IxZ2Bkd0FNfwFTq#JYDMB^%vhYl(wij*(3k!wm3RKEZG2evaYPfsmD9M9ZqIoU#');
    60 /**#@-*/
    61 
    62 /**
    63  * WordPress Database Table prefix.
    64  *
    65  * You can have multiple installations in one database if you give each a unique
    66  * prefix. Only numbers, letters, and underscores please!
    67  */
    68 $table_prefix  = 'wp_';
    69 
    70 /**
    71  * WordPress Localized Language, defaults to English.
    72  *
    73  * Change this to localize WordPress.  A corresponding MO file for the chosen
    74  * language must be installed to wp-content/languages. For example, install
    75  * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
    76  * language support.
    77  */
    78 define ('WPLANG', 'nl_NL');
    79 
    80 define( 'WP_ALLOW_MULTISITE', true );
    81 
    82 define ('FS_METHOD', 'direct');
    83 
    84 define('WP_DEBUG', true);
    85 define('WP_SITEURL', 'http://love4water.de/wordpress');
    86 define('WP_HOME', 'http://love4water.de');
    87 
    88 /* That's all, stop editing! Happy blogging. */
    89 
    90 /** WordPress absolute path to the WordPress directory. */
    91 if ( !defined('ABSPATH') )
    92     define('ABSPATH', dirname(__FILE__) . '/');
    93 
    94 /** Sets up WordPress vars and included files. */
    95 require_once(ABSPATH . 'wp-settings.php');
    96 
    97 //--- disable auto upgrade
    98 define( 'AUTOMATIC_UPDATER_DISABLED', true );
    99 
    100 
    101 
    102 ?>
    103 }