Changeset 2745 for trunk/wp-config-sample.php
- Timestamp:
- 08/03/2005 12:46:57 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-config-sample.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config-sample.php
r2370 r2745 1 1 <?php 2 2 // ** MySQL settings ** // 3 define('DB_NAME', 'wordpress'); // The name of the database3 define('DB_NAME', 'wordpress'); // The name of the database 4 4 define('DB_USER', 'username'); // Your MySQL username 5 5 define('DB_PASSWORD', 'password'); // ...and password 6 define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value6 define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value 7 7 8 // Change the prefix if you want to have multiple blogs in a single database.9 $table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'8 // You can have multiple installations in one database if you give each a unique prefix 9 $table_prefix = 'wp_'; // Only numbers, letters, and underscores please! 10 10 11 11 // Change this to localize WordPress. A corresponding MO file for the … … 15 15 define ('WPLANG', ''); 16 16 17 /* Stop editing*/17 /* That's all, stop editing! Happy blogging. */ 18 18 19 19 define('ABSPATH', dirname(__FILE__).'/');
Note: See TracChangeset
for help on using the changeset viewer.