Changeset 3493360
- Timestamp:
- 03/28/2026 02:07:28 PM (5 days ago)
- Location:
- senthor-io/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
request.php (modified) (1 diff)
-
senthor-io.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
senthor-io/trunk/readme.txt
r3493350 r3493360 6 6 Requires at least: 5.8 7 7 Tested up to: 6.9 8 Stable tag: 1.2. 08 Stable tag: 1.2.1 9 9 Requires PHP: 8.0 10 10 License: GPLv2 or later -
senthor-io/trunk/request.php
r3493350 r3493360 65 65 foreach ($api_response['headers'] as $name => $value) { 66 66 if (strtolower($name) === 'payment-response') { 67 header('P AYMENT-RESPONSE: ' . $value);67 header('Payment-Response: ' . $value); 68 68 break; 69 69 } -
senthor-io/trunk/senthor-io.php
r3493350 r3493360 5 5 Plugin Name: Senthor – Protect Against AI Crawlers 6 6 Description: Detect, block or monetize AI bots. Protect your content and get paid. 7 Version: 1.2. 07 Version: 1.2.1 8 8 Author: Senthor 9 9 License: GPLv2 … … 24 24 }); 25 25 26 add_action("wp", "validate_request", 1); 26 // add_action("wp", "validate_request", 1); 27 add_action('send_headers', 'validate_request', 0); 27 28 28 29 // Redirect user after activation
Note: See TracChangeset
for help on using the changeset viewer.