Files
ukaiautomation/.recaptcha-config.php

8 lines
430 B
PHP
Raw Normal View History

2025-06-17 19:22:58 +01:00
<?php
// Google reCAPTCHA v3 Configuration
// IMPORTANT: Replace these with your actual keys from https://www.google.com/recaptcha/admin
define('RECAPTCHA_SITE_KEY', '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI'); // Google test site key
define('RECAPTCHA_SECRET_KEY', '6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe'); // Google test secret key
2025-06-17 19:22:58 +01:00
define('RECAPTCHA_THRESHOLD', 0.5); // Score threshold (0.0 - 1.0), higher is more strict
?>