1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
# Turn off the captcha administration links
$conf['captcha_administration_mode'] = 0;
$conf['captcha_allow_on_admin_pages'] = 0;
$conf['captcha_default_challenge'] = 'recaptcha/reCAPTCHA';
$conf['captcha_log_wrong_responses'] = 1;
# reCaptcha is supposed to use a secure connection, and the theme
# is supposed to be clean
$conf['recaptcha_secure_connection'] = 1;
$conf['recaptcha_theme'] = 'clean';
/*
* Disable caching for now, as it has been bothering development
*
$conf['cache_inc'] = './sites/all/modules/cache/cache.inc';
$conf['session_inc'] = './sites/all/modules/cache/session.inc';
$conf['cache_settings'] = array(
'engines' => array(
'db' => array(
'engine' => 'database',
'server' => array(),
'shared' => TRUE,
'prefix' => '',
),
'apc' => array(
'engine' => 'apc',
'server' => array(),
'shared' => TRUE,
'prefix' => '',
),
),
'schemas' => array(
'db' => array(
// Engines:
'db',
),
'apc' => array(
// Engines:
'apc',
),
),
'bins' => array(
// Bin name => Schema name.
'default' => 'db',
'cache' => 'apc',
'cache_form' => 'apc',
'cache_page' => 'apc',
'cache_filter' => 'apc',
),
);
*/
?>
|