Current Path: > home > > > > transcarter > www > wp-content > > plugins > wordfence > views > dashboard >
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
global-status.php | File | 618 bytes | July 17 2025 21:05:48. | |
option-howgetips.php | File | 10926 bytes | July 17 2025 21:05:48. | |
options-group-alert.php | File | 7193 bytes | July 17 2025 21:05:48. | |
options-group-dashboard.php | File | 4758 bytes | July 17 2025 21:05:48. | |
options-group-email-summary.php | File | 2895 bytes | July 17 2025 21:05:48. | |
options-group-general.php | File | 7473 bytes | July 17 2025 21:05:48. | |
options-group-import.php | File | 8858 bytes | July 17 2025 21:05:48. | |
options-group-license.php | File | 9916 bytes | July 17 2025 21:05:48. | |
options-group-view-customization.php | File | 2763 bytes | July 17 2025 21:05:48. | |
status-payment-expiring.php | File | 3026 bytes | July 17 2025 21:05:48. | |
status-renewing.php | File | 2538 bytes | July 17 2025 21:05:48. |
<?php if (!defined('WORDFENCE_VERSION')) { exit; } /** * Presents the General Options group. * * Expects $stateKey. * * @var string $stateKey The key under which the collapse state is stored. * @var bool $collapseable If defined, specifies whether or not this grouping can be collapsed. Defaults to true. */ if (!isset($collapseable)) { $collapseable = true; } ?> <div class="wf-row"> <div class="wf-col-xs-12"> <div class="wf-block<?php if (!$collapseable) { echo ' wf-always-active'; } else { echo (wfPersistenceController::shared()->isActive($stateKey) ? ' wf-active' : ''); } ?>" data-persistence-key="<?php echo esc_attr($stateKey); ?>"> <div class="wf-block-header"> <div class="wf-block-header-content"> <div class="wf-block-title"> <strong><?php esc_html_e('General Wordfence Options', 'wordfence'); ?></strong> </div> <?php if ($collapseable): ?><div class="wf-block-header-action"><div class="wf-block-header-action-disclosure" role="checkbox" aria-checked="<?php echo (wfPersistenceController::shared()->isActive($stateKey) ? 'true' : 'false'); ?>" tabindex="0"></div></div><?php endif; ?> </div> </div> <div class="wf-block-content"> <ul class="wf-block-list"> <li> <?php $subtitle = esc_html__('Automatically updates Wordfence to the newest version within 24 hours of a new release.', 'wordfence'); if (!wfConfig::get('other_bypassLitespeedNoabort', false) && getenv('noabort') != '1' && stristr($_SERVER['SERVER_SOFTWARE'], 'litespeed') !== false) { $subtitle .= '<br><br>'; $subtitle .= wp_kses(__('<span class="wf-red-dark">Warning:</span> You are running the LiteSpeed web server and Wordfence can\'t determine whether "noabort" is set. Please verify that the environmental variable "noabort" is set for the local site, or the server\'s global External Application Abort is set to "No Abort".', 'wordfence'), array('span'=>array('class'=>array()))); $subtitle .= '<br>'; $subtitle .= '<a href="' . wfSupportController::esc_supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_LITESPEED_WARNING) . '" target="_blank" rel="noopener noreferrer">' . esc_html__('Please read this article in our FAQ to make an important change that will ensure your site stability during an update.', 'wordfence') . '<span class="screen-reader-text"> (' . esc_html__('opens in new tab', 'wordfence') . ')</span></a>'; } echo wfView::create('options/option-toggled', array( 'optionName' => 'autoUpdate', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('autoUpdate') ? 1 : 0, 'title' => __('Update Wordfence automatically when a new version is released?', 'wordfence'), 'subtitleHTML' => $subtitle, 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_AUTOMATIC_UPDATE), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-text', array( 'textOptionName' => 'alertEmails', 'textValue' => implode(',', wfConfig::getAlertEmails()), 'title' => __('Where to email alerts', 'wordfence'), 'placeholder' => __('Separate multiple addresses with commas', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_ALERT_EMAILS), ))->render(); ?> </li> <li> <?php echo wfView::create('dashboard/option-howgetips')->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'enableRemoteIpLookup', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('enableRemoteIpLookup', true) ? 1 : 0, 'title' => __('Look up visitor IP locations via Wordfence servers', 'wordfence'), 'subtitle' => __('If this option is disabled, Wordfence can look up countries for visitor IP addresses using a local database, but cannot look up regions or cities', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_GENERAL_REMOTE_IP_LOOKUP) ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'other_hideWPVersion', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('other_hideWPVersion') ? 1 : 0, 'title' => __('Hide WordPress version', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_HIDE_VERSION), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'disableCodeExecutionUploads', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('disableCodeExecutionUploads') ? 1 : 0, 'title' => __('Disable Code Execution for Uploads directory', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_DISABLE_UPLOADS_EXECUTION), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'liveActivityPauseEnabled', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('liveActivityPauseEnabled') ? 1 : 0, 'title' => __('Pause live updates when window loses focus', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_PAUSE_LIVE_UPDATES), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-text', array( 'textOptionName' => 'actUpdateInterval', 'textValue' => wfConfig::get('actUpdateInterval'), 'title' => __('Update interval in seconds', 'wordfence'), 'subtitle' => __('Setting higher will reduce browser traffic but slow scan starts, live traffic & status updates.', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_UPDATE_INTERVAL), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'other_bypassLitespeedNoabort', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('other_bypassLitespeedNoabort') ? 1 : 0, 'title' => __('Bypass the LiteSpeed "noabort" check', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_BYPASS_LITESPEED_CHECK), ))->render(); ?> </li> <li> <?php echo wfView::create('options/option-toggled', array( 'optionName' => 'deleteTablesOnDeact', 'enabledValue' => 1, 'disabledValue' => 0, 'value' => wfConfig::get('deleteTablesOnDeact') ? 1 : 0, 'title' => __('Delete Wordfence tables and data on deactivation', 'wordfence'), 'subtitle' => __('Note: This does not include Login Security settings and tables. An option to delete those must be selected separately on the Login Security settings page.', 'wordfence'), 'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_DASHBOARD_OPTION_DELETE_DEACTIVATION), ))->render(); ?> </li> </ul> </div> </div> </div> </div> <!-- end general options -->
SILENT KILLER Tool