Ticket #19870: 19870.diff
| File 19870.diff, 2.9 KB (added by , 14 years ago) |
|---|
-
wp-config-sample.php
16 16 17 17 // ** MySQL settings - You can get this info from your web host ** // 18 18 /** The name of the database for WordPress */ 19 define( 'DB_NAME', 'database_name_here');19 define( 'DB_NAME', 'database_name_here' ); 20 20 21 21 /** MySQL database username */ 22 define( 'DB_USER', 'username_here');22 define( 'DB_USER', 'username_here' ); 23 23 24 24 /** MySQL database password */ 25 define( 'DB_PASSWORD', 'password_here');25 define( 'DB_PASSWORD', 'password_here' ); 26 26 27 27 /** MySQL hostname */ 28 define( 'DB_HOST', 'localhost');28 define( 'DB_HOST', 'localhost' ); 29 29 30 30 /** Database Charset to use in creating database tables. */ 31 define( 'DB_CHARSET', 'utf8');31 define( 'DB_CHARSET', 'utf8' ); 32 32 33 33 /** The Database Collate type. Don't change this if in doubt. */ 34 define( 'DB_COLLATE', '');34 define( 'DB_COLLATE', '' ); 35 35 36 36 /**#@+ 37 37 * Authentication Unique Keys and Salts. … … 42 42 * 43 43 * @since 2.6.0 44 44 */ 45 define( 'AUTH_KEY', 'put your unique phrase here');46 define( 'SECURE_AUTH_KEY', 'put your unique phrase here');47 define( 'LOGGED_IN_KEY', 'put your unique phrase here');48 define( 'NONCE_KEY', 'put your unique phrase here');49 define( 'AUTH_SALT', 'put your unique phrase here');50 define( 'SECURE_AUTH_SALT', 'put your unique phrase here');51 define( 'LOGGED_IN_SALT', 'put your unique phrase here');52 define( 'NONCE_SALT', 'put your unique phrase here');45 define( 'AUTH_KEY', 'put your unique phrase here' ); 46 define( 'SECURE_AUTH_KEY', 'put your unique phrase here' ); 47 define( 'LOGGED_IN_KEY', 'put your unique phrase here' ); 48 define( 'NONCE_KEY', 'put your unique phrase here' ); 49 define( 'AUTH_SALT', 'put your unique phrase here' ); 50 define( 'SECURE_AUTH_SALT', 'put your unique phrase here' ); 51 define( 'LOGGED_IN_SALT', 'put your unique phrase here' ); 52 define( 'NONCE_SALT', 'put your unique phrase here' ); 53 53 54 54 /**#@-*/ 55 55 … … 69 69 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German 70 70 * language support. 71 71 */ 72 define( 'WPLANG', '');72 define( 'WPLANG', '' ); 73 73 74 74 /** 75 75 * For developers: WordPress debugging mode. … … 78 78 * It is strongly recommended that plugin and theme developers use WP_DEBUG 79 79 * in their development environments. 80 80 */ 81 define( 'WP_DEBUG', false);81 define( 'WP_DEBUG', false ); 82 82 83 83 /* That's all, stop editing! Happy blogging. */ 84 84 85 85 /** Absolute path to the WordPress directory. */ 86 86 if ( !defined('ABSPATH') ) 87 define( 'ABSPATH', dirname(__FILE__) . '/');87 define( 'ABSPATH', dirname(__FILE__) . '/' ); 88 88 89 89 /** Sets up WordPress vars and included files. */ 90 require_once( ABSPATH . 'wp-settings.php');90 require_once( ABSPATH . 'wp-settings.php' );