Warning: set_time_limit() has been disabled for security reasons in /home/clients/1cf40b6e42225d1cefb5c94f9bec37da/web/wp-content/plugins/mage-eventpress/woocommerce-event-press.php on line 26 Server IP : 128.65.195.198 / Your IP : 216.73.216.57 Web Server : Apache System : Linux h2web174 4.9.0-0.bpo.12-amd64 #1 SMP Debian 4.9.210-1+deb9u1~deb8u1~bpo8+1 (2026-07-14) x86_64 User : uid131604 ( 131604) PHP Version : 7.4.33 Disable Function : set_time_limit,passthru,exec,system,popen,shell_exec,proc_open,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/clients/1cf40b6e42225d1cefb5c94f9bec37da/web/wp-content/plugins/honeypot/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
/*
Plugin Name: WP Armour - Honeypot Anti Spam
Plugin URI: http://wordpress.org/plugins/honeypot/
Description: Add honeypot anti spam protection.
Author: Dnesscarkey
Version: 2.1.3
Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
*/
include 'includes/wpa_config.php';
include 'includes/wpa_functions.php';
include 'includes/wpa_dashboard_widget.php';
include 'includes/views/wpa_notice.php';
add_action( 'init', function(){
if( !is_admin() ){ // ONLY BLOCK SPAM IF IT IS NOT ADMIN PANEL
include 'includes/integration/wpa_bbpress.php';
include 'includes/integration/wpa_wpcomment.php';
include 'includes/integration/wpa_wpregistration.php';
include 'includes/integration/wpa_contactform7.php';
include 'includes/integration/wpa_gravityforms.php';
include 'includes/integration/wpa_formidable.php';
include 'includes/integration/wpa_calderaforms.php';
include 'includes/integration/wpa_toolsetform.php';
include 'includes/integration/wpa_diviform.php';
}
include 'includes/integration/wpa_fluentform.php';
include 'includes/integration/wpa_elementor.php';
include 'includes/integration/wpa_diviengineform.php';
include 'includes/integration/wpa_wplogin.php';
include 'includes/integration/wpa_wpforms.php';
});
add_action('wp_enqueue_scripts','wpa_load_scripts');
add_action('login_enqueue_scripts','wpa_load_scripts');
add_action('admin_menu', 'wpa_plugin_menu');
add_action('wpa_handle_spammers','wpa_save_stats',10,2);
register_activation_hook( __FILE__, 'wpa_plugin_activation' );
function wpa_plugin_activation(){
add_option('wpa_installed_date',date('Ymd'));
add_option('wpa_field_name',wpa_unqiue_field_name());
add_option('wpa_error_message',' Spamming or your Javascript is disabled !!');
add_option('wpa_disable_test_widget','no');
add_option('wpa_stats','{"total":{"today":{"date":"'.date('Ymd').'","count":0},"week":{"date":"'.date('Ymd').'","count":0},"month":{"date":"'.date('Ymd').'","count":0},"all_time":0}}');
}