Index: branches/new-installer/phase3/includes/installer/Installer.i18n.php |
— | — | @@ -206,8 +206,12 @@ |
207 | 207 | 'config-sqlite-name-help' => 'Choose a name that identifies your wiki. |
208 | 208 | Do not use spaces or hyphens. |
209 | 209 | This will be used for the SQLite data file name.', |
210 | | - 'config-sqlite-parent-unwritable' => 'Cannot create the data directory "$1", because the parent directory "$2" is not writable by the webserver. |
211 | | -Create this directory yourself, make it writable, and try again.', |
| 210 | + 'config-sqlite-parent-unwritable' => 'Cannot create the data directory "$1" automatically, because the parent directory "$2" is not writable by the webserver. |
| 211 | + |
| 212 | +To make the directory on a Unix/Linux system: |
| 213 | +<pre>cd $2 |
| 214 | +mkdir $3 |
| 215 | +chmod a+w $3</pre>', |
212 | 216 | 'config-sqlite-mkdir-error' => 'Error creating the data directory "$1". |
213 | 217 | Check the location and try again.', |
214 | 218 | 'config-sqlite-dir-unwritable' => 'Unable to write to the directory "$1". |
— | — | @@ -573,8 +577,6 @@ |
574 | 578 | 'config-sqlite-name-help' => 'Kies een naam die uw wiki identificeert. |
575 | 579 | Gebruik geen spaties of koppeltekens. |
576 | 580 | Deze naam wordt gebruikt voor het gegevensbestands van SQLite.', |
577 | | - 'config-sqlite-parent-unwritable' => 'Het was niet mogelijk de gegevensmap "$1" aan te maken omdat in de bovenliggende map "$2" niet geschreven kan worden door de webserver. |
578 | | -Maak deze map aan, zorg dat de webserver erin kan schrijven en probeer het opnieuw.', |
579 | 581 | 'config-sqlite-mkdir-error' => 'Er is een fout opgetreden bij het aanmaken van de gegevensmap "$1". |
580 | 582 | Controleer de locatie en probeer het opnieuw.', |
581 | 583 | 'config-sqlite-dir-unwritable' => 'Het was niet mogelijk in de map "$1" te schrijven. |
Index: branches/new-installer/phase3/includes/installer/SqliteInstaller.php |
— | — | @@ -46,7 +46,7 @@ |
47 | 47 | $this->setVar( 'wgSQLiteDataDir', $dir ); |
48 | 48 | if ( !is_dir( $dir ) ) { |
49 | 49 | if ( !is_writable( dirname( $dir ) ) ) { |
50 | | - return Status::newFatal( 'config-sqlite-parent-unwritable', $dir, dirname( $dir ) ); |
| 50 | + return Status::newFatal( 'config-sqlite-parent-unwritable', $dir, dirname( $dir ), basename( $dir ) ); |
51 | 51 | } |
52 | 52 | wfSuppressWarnings(); |
53 | 53 | $ok = wfMkdirParents( $dir, 0700 ); |