equal
deleted
inserted
replaced
210 * 'driver' => 'sqlite', |
210 * 'driver' => 'sqlite', |
211 * 'database' => '/path/to/databasefilename', |
211 * 'database' => '/path/to/databasefilename', |
212 * ); |
212 * ); |
213 * @endcode |
213 * @endcode |
214 */ |
214 */ |
215 $databases = array ( |
215 $databases = array(); |
216 'default' => |
|
217 array ( |
|
218 'default' => |
|
219 array ( |
|
220 'database' => 'corpusdelaparole', |
|
221 'username' => 'corpus', |
|
222 'password' => 'C0rpusDLP', |
|
223 'host' => 'db', |
|
224 'port' => '', |
|
225 'driver' => 'mysql', |
|
226 'prefix' => '', |
|
227 ), |
|
228 ), |
|
229 ); |
|
230 |
216 |
231 /** |
217 /** |
232 * Access control for update.php script. |
218 * Access control for update.php script. |
233 * |
219 * |
234 * If you are updating your Drupal installation using the update.php script but |
220 * If you are updating your Drupal installation using the update.php script but |
256 * |
242 * |
257 * Example: |
243 * Example: |
258 * $drupal_hash_salt = file_get_contents('/home/example/salt.txt'); |
244 * $drupal_hash_salt = file_get_contents('/home/example/salt.txt'); |
259 * |
245 * |
260 */ |
246 */ |
261 $drupal_hash_salt = '9Sv81aAK6y_Bc8daATnuezri5VuuIIlrtNjrJLK5fmA'; |
247 $drupal_hash_salt = ''; |
262 |
248 |
263 /** |
249 /** |
264 * Base URL (optional). |
250 * Base URL (optional). |
265 * |
251 * |
266 * If Drupal is generating incorrect URLs on your site, which could |
252 * If Drupal is generating incorrect URLs on your site, which could |