settings.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <?php
  2. // $Id: default.settings.php,v 1.51 2010/10/11 23:49:48 dries Exp $
  3. /**
  4. * @file
  5. * Drupal site-specific configuration file.
  6. *
  7. * IMPORTANT NOTE:
  8. * This file may have been set to read-only by the Drupal installation
  9. * program. If you make changes to this file, be sure to protect it again
  10. * after making your modifications. Failure to remove write permissions
  11. * to this file is a security risk.
  12. *
  13. * The configuration file to be loaded is based upon the rules below.
  14. *
  15. * The configuration directory will be discovered by stripping the
  16. * website's hostname from left to right and pathname from right to
  17. * left. The first configuration file found will be used and any
  18. * others will be ignored. If no other configuration file is found
  19. * then the default configuration file at 'sites/default' will be used.
  20. *
  21. * For example, for a fictitious site installed at
  22. * http://www.drupal.org/mysite/test/, the 'settings.php'
  23. * is searched in the following directories:
  24. *
  25. * 1. sites/www.drupal.org.mysite.test
  26. * 2. sites/drupal.org.mysite.test
  27. * 3. sites/org.mysite.test
  28. *
  29. * 4. sites/www.drupal.org.mysite
  30. * 5. sites/drupal.org.mysite
  31. * 6. sites/org.mysite
  32. *
  33. * 7. sites/www.drupal.org
  34. * 8. sites/drupal.org
  35. * 9. sites/org
  36. *
  37. * 10. sites/default
  38. *
  39. * If you are installing on a non-standard port number, prefix the
  40. * hostname with that number. For example,
  41. * http://www.drupal.org:8080/mysite/test/ could be loaded from
  42. * sites/8080.www.drupal.org.mysite.test/.
  43. */
  44. /**
  45. * Database settings:
  46. *
  47. * The $databases array specifies the database connection or
  48. * connections that Drupal may use. Drupal is able to connect
  49. * to multiple databases, including multiple types of databases,
  50. * during the same request.
  51. *
  52. * Each database connection is specified as an array of settings,
  53. * similar to the following:
  54. * @code
  55. * array(
  56. * 'driver' => 'mysql',
  57. * 'database' => 'databasename',
  58. * 'username' => 'username',
  59. * 'password' => 'password',
  60. * 'host' => 'localhost',
  61. * 'port' => 3306,
  62. * 'prefix' => 'myprefix_',
  63. * 'collation' => 'utf8_general_ci',
  64. * );
  65. * @endcode
  66. *
  67. * The "driver" property indicates what Drupal database driver the
  68. * connection should use. This is usually the same as the name of the
  69. * database type, such as mysql or sqlite, but not always. The other
  70. * properties will vary depending on the driver. For SQLite, you must
  71. * specify a database file name in a directory that is writable by the
  72. * webserver. For most other drivers, you must specify a
  73. * username, password, host, and database name.
  74. *
  75. * Some database engines support transactions. In order to enable
  76. * transaction support for a given database, set the 'transactions' key
  77. * to TRUE. To disable it, set it to FALSE. Note that the default value
  78. * varies by driver. For MySQL, the default is FALSE since MyISAM tables
  79. * do not support transactions.
  80. *
  81. * For each database, you may optionally specify multiple "target" databases.
  82. * A target database allows Drupal to try to send certain queries to a
  83. * different database if it can but fall back to the default connection if not.
  84. * That is useful for master/slave replication, as Drupal may try to connect
  85. * to a slave server when appropriate and if one is not available will simply
  86. * fall back to the single master server.
  87. *
  88. * The general format for the $databases array is as follows:
  89. * @code
  90. * $databases['default']['default'] = $info_array;
  91. * $databases['default']['slave'][] = $info_array;
  92. * $databases['default']['slave'][] = $info_array;
  93. * $databases['extra']['default'] = $info_array;
  94. * @endcode
  95. *
  96. * In the above example, $info_array is an array of settings described above.
  97. * The first line sets a "default" database that has one master database
  98. * (the second level default). The second and third lines create an array
  99. * of potential slave databases. Drupal will select one at random for a given
  100. * request as needed. The fourth line creates a new database with a name of
  101. * "extra".
  102. *
  103. * For a single database configuration, the following is sufficient:
  104. * @code
  105. * $databases['default']['default'] = array(
  106. * 'driver' => 'mysql',
  107. * 'database' => 'databasename',
  108. * 'username' => 'username',
  109. * 'password' => 'password',
  110. * 'host' => 'localhost',
  111. * 'prefix' => 'main_',
  112. * 'collation' => 'utf8_general_ci',
  113. * );
  114. * @endcode
  115. *
  116. * You can optionally set prefixes for some or all database table names
  117. * by using the 'prefix' setting. If a prefix is specified, the table
  118. * name will be prepended with its value. Be sure to use valid database
  119. * characters only, usually alphanumeric and underscore. If no prefixes
  120. * are desired, leave it as an empty string ''.
  121. *
  122. * To have all database names prefixed, set 'prefix' as a string:
  123. * @code
  124. * 'prefix' => 'main_',
  125. * @endcode
  126. * To provide prefixes for specific tables, set 'prefix' as an array.
  127. * The array's keys are the table names and the values are the prefixes.
  128. * The 'default' element is mandatory and holds the prefix for any tables
  129. * not specified elsewhere in the array. Example:
  130. * @code
  131. * 'prefix' => array(
  132. * 'default' => 'main_',
  133. * 'users' => 'shared_',
  134. * 'sessions' => 'shared_',
  135. * 'role' => 'shared_',
  136. * 'authmap' => 'shared_',
  137. * ),
  138. * @endcode
  139. * You can also use a reference to a schema/database as a prefix. This maybe
  140. * useful if your Drupal installation exists in a schema that is not the default
  141. * or you want to access several databases from the same code base at the same
  142. * time.
  143. * Example:
  144. * @code
  145. * 'prefix' => array(
  146. * 'default' => 'main.',
  147. * 'users' => 'shared.',
  148. * 'sessions' => 'shared.',
  149. * 'role' => 'shared.',
  150. * 'authmap' => 'shared.',
  151. * );
  152. * @endcode
  153. * NOTE: MySQL and SQLite's definition of a schema is a database.
  154. *
  155. * Database configuration format:
  156. * @code
  157. * $databases['default']['default'] = array(
  158. * 'driver' => 'mysql',
  159. * 'database' => 'databasename',
  160. * 'username' => 'username',
  161. * 'password' => 'password',
  162. * 'host' => 'localhost',
  163. * 'prefix' => '',
  164. * );
  165. * $databases['default']['default'] = array(
  166. * 'driver' => 'pgsql',
  167. * 'database' => 'databasename',
  168. * 'username' => 'username',
  169. * 'password' => 'password',
  170. * 'host' => 'localhost',
  171. * 'prefix' => '',
  172. * );
  173. * $databases['default']['default'] = array(
  174. * 'driver' => 'sqlite',
  175. * 'database' => '/path/to/databasefilename',
  176. * );
  177. * @endcode
  178. */
  179. $databases['default']['default'] = array(
  180. 'driver' => 'mysql',
  181. 'database' => 'materio_base_d7',
  182. 'username' => 'root',
  183. 'password' => 'materio',
  184. 'host' => 'mysql',
  185. 'prefix' => '',
  186. 'collation' => 'utf8_general_ci',
  187. );
  188. /**
  189. * Access control for update.php script.
  190. *
  191. * If you are updating your Drupal installation using the update.php script but
  192. * are not logged in using either an account with the "Administer software
  193. * updates" permission or the site maintenance account (the account that was
  194. * created during installation), you will need to modify the access check
  195. * statement below. Change the FALSE to a TRUE to disable the access check.
  196. * After finishing the upgrade, be sure to open this file again and change the
  197. * TRUE back to a FALSE!
  198. */
  199. $update_free_access = FALSE;
  200. /**
  201. * Salt for one-time login links and cancel links, form tokens, etc.
  202. *
  203. * This variable will be set to a random value by the installer. All one-time
  204. * login links will be invalidated if the value is changed. Note that this
  205. * variable must have the same value on every web server. If this variable is
  206. * empty, a hash of the serialized database credentials will be used as a
  207. * fallback salt.
  208. *
  209. * For enhanced security, you may set this variable to a value using the
  210. * contents of a file outside your docroot that is never saved together
  211. * with any backups of your Drupal files and database.
  212. *
  213. * Example:
  214. * $drupal_hash_salt = file_get_contents('/home/example/salt.txt');
  215. *
  216. */
  217. $drupal_hash_salt = '';
  218. /**
  219. * Base URL (optional).
  220. *
  221. * If Drupal is generating incorrect URLs on your site, which could
  222. * be in HTML headers (links to CSS and JS files) or visible links on pages
  223. * (such as in menus), uncomment the Base URL statement below (remove the
  224. * leading hash sign) and fill in the absolute URL to your Drupal installation.
  225. *
  226. * You might also want to force users to use a given domain.
  227. * See the .htaccess file for more information.
  228. *
  229. * Examples:
  230. * $base_url = 'http://www.example.com';
  231. * $base_url = 'http://www.example.com:8888';
  232. * $base_url = 'http://www.example.com/drupal';
  233. * $base_url = 'https://www.example.com:8888/drupal';
  234. *
  235. * It is not allowed to have a trailing slash; Drupal will add it
  236. * for you.
  237. */
  238. // $base_url = 'http://dev.materio.com'; // NO trailing slash!
  239. /**
  240. * PHP settings:
  241. *
  242. * To see what PHP settings are possible, including whether they can be set at
  243. * runtime (by using ini_set()), read the PHP documentation:
  244. * http://www.php.net/manual/en/ini.list.php
  245. * See drupal_initialize_variables() in includes/bootstrap.inc for required
  246. * runtime settings and the .htaccess file for non-runtime settings. Settings
  247. * defined there should not be duplicated here so as to avoid conflict issues.
  248. */
  249. /**
  250. * Some distributions of Linux (most notably Debian) ship their PHP
  251. * installations with garbage collection (gc) disabled. Since Drupal depends on
  252. * PHP's garbage collection for clearing sessions, ensure that garbage
  253. * collection occurs by using the most common settings.
  254. */
  255. ini_set('session.gc_probability', 1);
  256. ini_set('session.gc_divisor', 100);
  257. /**
  258. * Set session lifetime (in seconds), i.e. the time from the user's last visit
  259. * to the active session may be deleted by the session garbage collector. When
  260. * a session is deleted, authenticated users are logged out, and the contents
  261. * of the user's $_SESSION variable is discarded.
  262. */
  263. ini_set('session.gc_maxlifetime', 200000);
  264. /**
  265. * Set session cookie lifetime (in seconds), i.e. the time from the session is
  266. * created to the cookie expires, i.e. when the browser is expected to discard
  267. * the cookie. The value 0 means "until the browser is closed".
  268. */
  269. ini_set('session.cookie_lifetime', 2000000);
  270. /**
  271. * If you encounter a situation where users post a large amount of text, and
  272. * the result is stripped out upon viewing but can still be edited, Drupal's
  273. * output filter may not have sufficient memory to process it. If you
  274. * experience this issue, you may wish to uncomment the following two lines
  275. * and increase the limits of these variables. For more information, see
  276. * http://php.net/manual/en/pcre.configuration.php.
  277. */
  278. # ini_set('pcre.backtrack_limit', 200000);
  279. # ini_set('pcre.recursion_limit', 200000);
  280. /**
  281. * Drupal automatically generates a unique session cookie name for each site
  282. * based on on its full domain name. If you have multiple domains pointing at
  283. * the same Drupal site, you can either redirect them all to a single domain
  284. * (see comment in .htaccess), or uncomment the line below and specify their
  285. * shared base domain. Doing so assures that users remain logged in as they
  286. * cross between your various domains.
  287. */
  288. $cookie_domain = 'dev.materio.com';
  289. /**
  290. * Variable overrides:
  291. *
  292. * To override specific entries in the 'variable' table for this site,
  293. * set them here. You usually don't need to use this feature. This is
  294. * useful in a configuration file for a vhost or directory, rather than
  295. * the default settings.php. Any configuration setting from the 'variable'
  296. * table can be given a new value. Note that any values you provide in
  297. * these variable overrides will not be modifiable from the Drupal
  298. * administration interface.
  299. *
  300. * The following overrides are examples:
  301. * - site_name: Defines the site's name.
  302. * - theme_default: Defines the default theme for this site.
  303. * - anonymous: Defines the human-readable name of anonymous users.
  304. * Remove the leading hash signs to enable.
  305. */
  306. $conf['site_name'] = "materiO'";
  307. # $conf['theme_default'] = 'garland';
  308. # $conf['anonymous'] = 'Visitor';
  309. /**
  310. * A custom theme can be set for the offline page. This applies when the site
  311. * is explicitly set to maintenance mode through the administration page or when
  312. * the database is inactive due to an error. It can be set through the
  313. * 'maintenance_theme' key. The template file should also be copied into the
  314. * theme. It is located inside 'modules/system/maintenance-page.tpl.php'.
  315. * Note: This setting does not apply to installation and update pages.
  316. */
  317. # $conf['maintenance_theme'] = 'bartik';
  318. /**
  319. * Enable this setting to determine the correct IP address of the remote
  320. * client by examining information stored in the X-Forwarded-For headers.
  321. * X-Forwarded-For headers are a standard mechanism for identifying client
  322. * systems connecting through a reverse proxy server, such as Squid or
  323. * Pound. Reverse proxy servers are often used to enhance the performance
  324. * of heavily visited sites and may also provide other site caching,
  325. * security or encryption benefits. If this Drupal installation operates
  326. * behind a reverse proxy, this setting should be enabled so that correct
  327. * IP address information is captured in Drupal's session management,
  328. * logging, statistics and access management systems; if you are unsure
  329. * about this setting, do not have a reverse proxy, or Drupal operates in
  330. * a shared hosting environment, this setting should remain commented out.
  331. */
  332. # $conf['reverse_proxy'] = TRUE;
  333. /**
  334. * Set this value if your proxy server sends the client IP in a header other
  335. * than X-Forwarded-For.
  336. *
  337. * The "X-Forwarded-For" header is a comma+space separated list of IP addresses,
  338. * only the last one (the left-most) will be used.
  339. */
  340. # $conf['reverse_proxy_header'] = 'HTTP_X_CLUSTER_CLIENT_IP';
  341. /**
  342. * reverse_proxy accepts an array of IP addresses.
  343. *
  344. * Each element of this array is the IP address of any of your reverse
  345. * proxies. Filling this array Drupal will trust the information stored
  346. * in the X-Forwarded-For headers only if Remote IP address is one of
  347. * these, that is the request reaches the web server from one of your
  348. * reverse proxies. Otherwise, the client could directly connect to
  349. * your web server spoofing the X-Forwarded-For headers.
  350. */
  351. # $conf['reverse_proxy_addresses'] = array('a.b.c.d', ...);
  352. /**
  353. * Page caching:
  354. *
  355. * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
  356. * views. This tells a HTTP proxy that it may return a page from its local
  357. * cache without contacting the web server, if the user sends the same Cookie
  358. * header as the user who originally requested the cached page. Without "Vary:
  359. * Cookie", authenticated users would also be served the anonymous page from
  360. * the cache. If the site has mostly anonymous users except a few known
  361. * editors/administrators, the Vary header can be omitted. This allows for
  362. * better caching in HTTP proxies (including reverse proxies), i.e. even if
  363. * clients send different cookies, they still get content served from the cache
  364. * if aggressive caching is enabled and the minimum cache time is non-zero.
  365. * However, authenticated users should access the site directly (i.e. not use an
  366. * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
  367. * getting cached pages from the proxy.
  368. */
  369. # $conf['omit_vary_cookie'] = TRUE;
  370. /**
  371. * CSS/JS aggregated file gzip compression:
  372. *
  373. * By default, when CSS or JS aggregation and clean URLs are enabled Drupal will
  374. * store a gzip compressed (.gz) copy of the aggregated files. If this file is
  375. * available then rewrite rules in the default .htaccess file will serve these
  376. * files to browsers that accept gzip encoded content. This allows pages to load
  377. * faster for these users and has minimal impact on server load. If you are
  378. * using a webserver other than Apache httpd, or a caching reverse proxy that is
  379. * configured to cache and compress these files itself you may want to uncomment
  380. * one or both of the below lines, which will prevent gzip files being stored.
  381. */
  382. # $conf['css_gzip_compression'] = FALSE;
  383. # $conf['js_gzip_compression'] = FALSE;
  384. /**
  385. * String overrides:
  386. *
  387. * To override specific strings on your site with or without enabling locale
  388. * module, add an entry to this list. This functionality allows you to change
  389. * a small number of your site's default English language interface strings.
  390. *
  391. * Remove the leading hash signs to enable.
  392. */
  393. # $conf['locale_custom_strings_en'][''] = array(
  394. # 'forum' => 'Discussion board',
  395. # '@count min' => '@count minutes',
  396. # );
  397. /**
  398. *
  399. * IP blocking:
  400. *
  401. * To bypass database queries for denied IP addresses, use this setting.
  402. * Drupal queries the {blocked_ips} table by default on every page request
  403. * for both authenticated and anonymous users. This allows the system to
  404. * block IP addresses from within the administrative interface and before any
  405. * modules are loaded. However on high traffic websites you may want to avoid
  406. * this query, allowing you to bypass database access altogether for anonymous
  407. * users under certain caching configurations.
  408. *
  409. * If using this setting, you will need to add back any IP addresses which
  410. * you may have blocked via the administrative interface. Each element of this
  411. * array represents a blocked IP address. Uncommenting the array and leaving it
  412. * empty will have the effect of disabling IP blocking on your site.
  413. *
  414. * Remove the leading hash signs to enable.
  415. */
  416. # $conf['blocked_ips'] = array(
  417. # 'a.b.c.d',
  418. # );
  419. /**
  420. * Authorized file system operations:
  421. *
  422. * The Update manager module included with Drupal provides a mechanism for
  423. * site administrators to securely install missing updates for the site
  424. * directly through the web user interface by providing either SSH or FTP
  425. * credentials. This allows the site to update the new files as the user who
  426. * owns all the Drupal files, instead of as the user the webserver is running
  427. * as. However, some sites might wish to disable this functionality, and only
  428. * update the code directly via SSH or FTP themselves. This setting completely
  429. * disables all functionality related to these authorized file operations.
  430. *
  431. * Remove the leading hash signs to disable.
  432. */
  433. # $conf['allow_authorize_operations'] = FALSE;
  434. // $conf['cache'] = 0;
  435. $conf['preprocess_js'] = 0;
  436. $conf['preprocess_css'] = 0;
  437. $conf['session_limit_max'] = 10;
  438. $conf['maillog_send'] = 0;
  439. $conf['enforce_limit'] = 'no';
  440. $conf['search_api_solr_overrides'] = array(
  441. 'materio_solr3_en' => array(
  442. 'name' => t('Materio EN Solr Server (Overridden)'),
  443. 'options' => array(
  444. 'host' => 'solr',
  445. 'port' => 8983,
  446. 'path' => '/solr/materio_base_en',
  447. ),
  448. ),
  449. 'materio_solr3_fr' => array(
  450. 'name' => t('Materio FR Solr Server (Overridden)'),
  451. 'options' => array(
  452. 'host' => 'solr',
  453. 'port' => 8983,
  454. 'path' => '/solr/materio_base_fr',
  455. ),
  456. ),
  457. );