Changeset 2745

Show
Ignore:
Timestamp:
08/03/05 00:46:57 (3 years ago)
Author:
matt
Message:

Note character restrictions, fixes #910

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-config-sample.php

    r2370 r2745  
    11<?php 
    22// ** MySQL settings ** // 
    3 define('DB_NAME', 'wordpress');    // The name of the database 
     3define('DB_NAME', 'wordpress');    // The name of the database 
    44define('DB_USER', 'username');     // Your MySQL username 
    55define('DB_PASSWORD', 'password'); // ...and password 
    6 define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value 
     6define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value 
    77 
    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! 
    1010 
    1111// Change this to localize WordPress.  A corresponding MO file for the 
     
    1515define ('WPLANG', ''); 
    1616 
    17 /* Stop editing */ 
     17/* That's all, stop editing! Happy blogging. */ 
    1818 
    1919define('ABSPATH', dirname(__FILE__).'/');