run:R W Run
DIR
2026-04-15 19:02:17
R W Run
DIR
2026-04-15 19:02:17
R W Run
DIR
2026-04-15 19:02:17
R W Run
1.46 KB
2026-04-15 19:02:17
R W Run
77.74 KB
2026-04-15 19:02:17
R W Run
26 By
2026-04-15 19:02:17
R W Run
1.22 KB
2026-04-15 19:02:17
R W Run
error_log
📄init.php
1<?php
2
3/**
4 * The plugin bootstrap file
5 *
6 * This file is read by WordPress to generate the plugin information in the plugin
7 * admin area. This file also includes all of the dependencies used by the plugin,
8 * registers the activation and deactivation functions, and defines a function
9 * that starts the plugin.
10 *
11 * @since 1.0.0
12 * @package Wpsec
13 *
14 * @wordpress-plugin
15 * Plugin Name: WPSEC - WP Captcha Plugin
16 * Plugin URI: godaddy.com
17 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
18 * Version: 1.0.2
19 * Author: GoDaddy
20 * License: GPL-2.0+
21 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
22 * Text Domain: wpsec-wp-cp
23 * Domain Path: /languages
24 */
25
26// If this file is called directly, abort.
27
28if ( ! defined( 'WPINC' ) ) {
29 die;
30}
31
32/**
33 * Currently plugin version.
34 * Start at version 1.0.0 and use SemVer - https://semver.org
35 * Rename this for your plugin and update it as you release new versions.
36 */
37define("WPSEC_WP_CP_VERSION", "1.0.2");
38
39require_once __DIR__ . '/vendor/autoload.php';
40
41use Wpsec\captcha\core\CaptchaCore;
42
43$core = new CaptchaCore( 'wpsec-wp-cp' );
44