Changes between Initial Version and Version 1 of Ticket #38066
- Timestamp:
- 09/15/2016 10:52:06 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38066
-
Property
Component
changed from
General
toI18N
-
Property
Component
changed from
-
Ticket #38066 – Description
initial v1 1 1 In Polish version 4.6.1-pl_PL in file wp-config-sample.php in MySQL settings section all definitions have additional space after define( 2 2 {{{ 3 3 define( 'DB_NAME', 'nazwa_bazy_danych' ); 4 4 define( 'DB_USER', 'nazwa_uzytkownika' ); … … 7 7 define( 'DB_CHARSET', 'utf8' ); 8 8 define( 'DB_COLLATE', '' ); 9 9 }}} 10 10 During installation this produces wp-config.php with no MySQL settings, because in wp-admin/setup-config.php preg_match pattern have no space: 11 11 {{{ 12 12 if ( ! preg_match( '/^define\(\'([A-Z_]+)\',([ ]+)/', $line, $match ) ) 13 13 }}} 14 14 After deleting this additional spaces installation works normal.