[wp-trac] [WordPress Trac] #11523: wp-config-sample.php inconsistency

WordPress Trac wp-trac at lists.automattic.com
Sun Dec 20 00:45:42 UTC 2009


#11523: wp-config-sample.php inconsistency
--------------------------+-------------------------------------------------
 Reporter:  joshtime      |       Owner:            
     Type:  defect (bug)  |      Status:  new       
 Priority:  normal        |   Milestone:  Unassigned
Component:  Comments      |     Version:            
 Severity:  normal        |    Keywords:            
--------------------------+-------------------------------------------------
 In wp-config-sample, there is a minor inconsistency.

 {{{
 // ** MySQL settings - You can get this info from your web host ** //
 /** The name of the database for WordPress */
 define('DB_NAME', 'putyourdbnamehere');

 /** MySQL database username */
 define('DB_USER', 'usernamehere');

 /** MySQL database password */
 define('DB_PASSWORD', 'yourpasswordhere');
 }}}

 DB_NAME says "put"
 DB_USER says only "here"
 DB_PASSWORD has "your". Password is not personal

 Should be:

 {{{
 // ** MySQL settings - You can get this info from your web host ** //
 /** The name of the database for WordPress */
 define('DB_NAME', 'dbnamehere');

 /** MySQL database username */
 define('DB_USER', 'usernamehere');

 /** MySQL database password */
 define('DB_PASSWORD', 'passwordhere');
 }}}

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/11523>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list