Files
ukaiautomation/.recaptcha-config.php

18 lines
882 B
PHP
Raw Normal View History

2025-06-17 19:22:58 +01:00
<?php
// Google reCAPTCHA v3 Configuration
// IMPORTANT: These are test keys. For production, replace with actual keys from https://www.google.com/recaptcha/admin
// To get production keys:
// 1. Go to https://www.google.com/recaptcha/admin
// 2. Register your site domain
// 3. Choose reCAPTCHA v3
// 4. Replace the keys below with your actual keys
// WARNING: Currently using Google's test keys - forms are NOT protected!
define('RECAPTCHA_SITE_KEY', '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI'); // TODO: Replace with production site key
define('RECAPTCHA_SECRET_KEY', '6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe'); // TODO: Replace with production 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
// Set to true when production keys are configured
define('RECAPTCHA_ENABLED', false); // Currently disabled - using test keys
2025-06-17 19:22:58 +01:00
?>