Projet

Général

Profil

Paste
Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / recaptcha @ 87dbc3bf

Nom Taille Révision Âge Auteur Commentaire
  recaptcha-php-1.11 f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
LICENSE.txt 17,7 ko f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
README.txt 3,13 ko f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha.admin.inc 3,29 ko f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha.info 440 octets f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha.install 372 octets f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha.js 281 octets f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha.module 9,72 ko f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha_mailhide.info 322 octets f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7
recaptcha_mailhide.module 5,05 ko f7a2490e environ 10 ans Assos Assos git mv htmltest drupal7

Dernières révisions

# Date Auteur Commentaire
f7a2490e 13/02/2014 15:56 Assos Assos

git mv htmltest drupal7

Voir les révisions

README


reCAPTCHA for Drupal

The reCAPTCHA module uses the reCAPTCHA web service to
improve the CAPTCHA system and protect email addresses. For
more information on what reCAPTCHA is, please visit:
https://www.google.com/recaptcha

DEPENDENCIES

CONFIGURATION

  1. Enable reCAPTCHA and CAPTCHA modules in:
    admin/modules

  2. You'll now find a reCAPTCHA tab in the CAPTCHA
    administration page available at:
    admin/config/people/captcha/recaptcha

  3. Register for a public and private reCAPTCHA key at:
    https://www.google.com/recaptcha/whyrecaptcha

  4. Input the keys into the reCAPTCHA settings. The rest of
    the settings should be fine as their defaults.

  5. Visit the Captcha administration page and set where you
    want the reCAPTCHA form to be presented:
    admin/config/people/captcha

MAILHIDE INPUT FORMAT

The reCAPTCHA module also comes with an input format to
protect email addresses. This, of course, is optional to
use and is only there if you want it. The following is how
you use that input filter:

  1. Enable the reCAPTCHA Mailhide module:
    admin/modules

  2. Head over to your text format settings:
    admin/config/content/formats

  3. Edit your default input format and add the reCAPTCHA
    Mailhide filter.

  4. Click on the Configure tab and put in a public and
    private Mailhide key obtained from:
    https://www.google.com/recaptcha/mailhide/apikey

  5. Use the Rearrange tab to rearrange the weight of the
    filter depending on what filters already exist. Make
    sure it is before the URL Filter.

Note: You will require the installation of the mcrypt
PHP module in your web server for Mailhide to work:
http://php.net/manual/en/ref.mcrypt.php

MULTI-DOMAIN SUPPORT

Since reCAPTCHA uses API keys that are unique to each
domain, if you're using a multi-domain system using the
same database, the reCAPTCHA module won't work when
querying the reCAPTCHA web service. If you put the
following into your sites/mysite/settings.php file for
each domain, it will override the API key values and make
it so multi-domain systems are capable.

$conf = array(
'recaptcha_public_key' => 'my other public key',
'recaptcha_private_key' => 'my other private key',
);

CUSTOM RECAPTCHA THEME

You can create a custom reCAPTCHA theme widget by setting
the theme of the reCAPTCHA form to "custom" in the
reCAPTCHA administration page. This will output a custom
form that is themeable through the theme function:
theme_recaptcha_custom_widget().

If you don't implement this function, it is still quite
easily customizable through manipulating the CSS.

For more information on this, visit:
https://developers.google.com/recaptcha/docs/customization

THANK YOU

Formats disponibles : Atom