captchafox/captchafox-typo3

CaptchaFox Typo3

Maintainers

Package info

github.com/CaptchaFox/captchafox-typo3

Type:typo3-cms-extension

pkg:composer/captchafox/captchafox-typo3

Statistics

Installs: 21

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

12.0.1 2025-08-03 18:02 UTC

This package is auto-updated.

Last update: 2026-03-20 12:02:43 UTC


README

CaptchaFox offers CAPTCHA protection for TYPO3 forms. This extension integrates the CaptchaFox service into the TYPO3 form framework. After installation a new form element and validator become available inside the form editor, allowing editors to easily protect forms against bots.

Compatibility

Extension version Supported TYPO3 versions
10.x TYPO3 v10 and v11
12.x TYPO3 v12 and v13

Installation

Install via Composer and choose the appropriate version for your TYPO3 installation:

composer require captchafox/captchafox-typo3:^12   # TYPO3 12 or 13
# or
composer require captchafox/captchafox-typo3:^10   # TYPO3 10 or 11

Activate the extension in the Extension Manager or via the TYPO3 CLI.

Configuration

The extension can be configured through the Extension Manager. Important options defined in ext_conf_template.txt include your site key, secret key and language:

site_key = sk_11111111000000001111111100000000
secret_key = ok_11111111000000001111111100000000
lang = de

Additional options like robotMode and enforceCaptcha control whether the CAPTCHA should be shown during automated testing or development environments.

Usage

After installation you can add the "CaptchaFox" element to a form using the form editor. Internally the partial Resources/Private/Partials/CaptchaFox.html renders the widget and inserts the required scripts:

<div class="captchafox"
     data-sitekey="{configuration.site_key}"
     data-mode="{element.renderingOptions.displayMode}"
     data-lang="{configuration.lang}"
     data-callback="cfVerifyAndSubmit"></div>

Validation is handled by the service in Classes/Services/CaptchaService.php, which sends the user response to the configured verification server.

License

This extension is released under the GPL-2.0-or-later license.