BulletProof Security - Version 4.2

Version Description

Download this release

Release Info

Developer AITpro
Plugin Icon 128x128 BulletProof Security
Version 4.2
Comparing to
See all releases

Code changes from version 4.1 to 4.2

admin/core/core-forms.php CHANGED
@@ -688,6 +688,14 @@ if ( isset( $_POST['bpsResetDismissSubmit'] ) && current_user_can('manage_option
688
  echo $text;
689
  }
690
 
 
 
 
 
 
 
 
 
691
  echo '<div class="bps-message-button" style="width:90px;margin-bottom:9px;"><a href="'.admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-7' ).'">'.__('Refresh Status', 'bulletproof-security').'</a></div>';
692
  echo '</p></div>';
693
  }
688
  echo $text;
689
  }
690
 
691
+ if ( ! delete_user_meta($user_id, 'bpsPro_ignore_mu_wp_automatic_updates_notice') ) {
692
+ $text = __('The BPS wp-config.php file WP Automatic Update constants detected Notice is NOT set. Nothing to reset.', 'bulletproof-security').'<br>';
693
+ echo $text;
694
+ } else {
695
+ $text = '<span style="color:#008000;">'.__('Success! The BPS wp-config.php file WP Automatic Update constants detected Notice is reset.', 'bulletproof-security').'</span><br>';
696
+ echo $text;
697
+ }
698
+
699
  echo '<div class="bps-message-button" style="width:90px;margin-bottom:9px;"><a href="'.admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-7' ).'">'.__('Refresh Status', 'bulletproof-security').'</a></div>';
700
  echo '</p></div>';
701
  }
admin/core/core.php CHANGED
@@ -231,7 +231,19 @@ global $bps_version;
231
  $check_string = @file_get_contents($filename);
232
  }
233
 
234
- if ( @$_POST['Submit-RBM-Activate'] != true && @$_POST['Submit-RBM-Deactivate'] != true ) {
 
 
 
 
 
 
 
 
 
 
 
 
235
 
236
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
237
  $text = '<h3><strong>'.__('RBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -248,7 +260,7 @@ global $bps_version;
248
  }
249
  }
250
 
251
- if ( @$_POST['Submit-RBM-Activate'] == true || @$_POST['Submit-RBM-Deactivate'] == true ) {
252
 
253
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
254
  $text = '<h3><strong>'.__('RBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -346,7 +358,19 @@ global $bps_version;
346
  $check_string = @file_get_contents($filename);
347
  }
348
 
349
- if ( @$_POST['Submit-WBM-Activate'] != true && @$_POST['Submit-WBM-Deactivate'] != true ) {
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' || $BPS_wpadmin_Options['bps_wpadmin_restriction'] == 'disabled' || $GDMW_options['bps_gdmw_hosting'] == 'yes' ) {
352
  $text = '<h3><strong>'.__('WBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -360,7 +384,7 @@ global $bps_version;
360
  }
361
  }
362
 
363
- if ( @$_POST['Submit-WBM-Activate'] == true || @$_POST['Submit-WBM-Deactivate'] == true ) {
364
 
365
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' || $BPS_wpadmin_Options['bps_wpadmin_restriction'] == 'disabled' || $GDMW_options['bps_gdmw_hosting'] == 'yes' ) {
366
  $text = '<h3><strong>'.__('WBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -420,7 +444,19 @@ function bpsPro_hpf_status() {
420
 
421
  $hpf_options = get_option('bulletproof_security_options_hpf_cron');
422
 
423
- if ( @$_POST['Submit-Hidden-Plugins'] != true && @$_POST['Hidden-Plugins-Ignore-Submit'] != true ) {
 
 
 
 
 
 
 
 
 
 
 
 
424
 
425
  if ( $hpf_options['bps_hidden_plugins_cron'] == 'On' ) {
426
  $text = '<h3><strong>'.__('HPF Status: ', 'bulletproof-security').'<span class="core-status-activated">'.__('HPF Cron On', 'bulletproof-security').'</span></strong></h3>';
@@ -431,7 +467,7 @@ function bpsPro_hpf_status() {
431
  }
432
  }
433
 
434
- if ( @$_POST['Submit-Hidden-Plugins'] == true || @$_POST['Hidden-Plugins-Ignore-Submit'] == true ) {
435
 
436
  if ( $hpf_options['bps_hidden_plugins_cron'] == 'On' ) {
437
  $text = '<h3><strong>'.__('HPF Status: ', 'bulletproof-security').'<span class="core-status-activated">'.__('HPF Cron On', 'bulletproof-security').'</span></strong></h3>';
@@ -533,7 +569,19 @@ function bpsPro_mbm_status() {
533
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
534
  $filename = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/.htaccess';
535
 
536
- if ( @$_POST['Submit-MBM-Activate'] != true && @$_POST['Submit-MBM-Deactivate'] != true ) {
 
 
 
 
 
 
 
 
 
 
 
 
537
 
538
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
539
  $text = '<h3><strong>'.__('MBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -547,7 +595,7 @@ function bpsPro_mbm_status() {
547
  }
548
  }
549
 
550
- if ( @$_POST['Submit-MBM-Activate'] == true || @$_POST['Submit-MBM-Deactivate'] == true ) {
551
 
552
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
553
  $text = '<h3><strong>'.__('MBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -609,7 +657,19 @@ function bpsPro_bbm_status() {
609
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
610
  $filename = WP_CONTENT_DIR . '/bps-backup/.htaccess';
611
 
612
- if ( @$_POST['Submit-BBM-Activate'] != true && @$_POST['Submit-BBM-Deactivate'] != true ) {
 
 
 
 
 
 
 
 
 
 
 
 
613
 
614
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
615
  $text = '<h3><strong>'.__('BBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -623,7 +683,7 @@ function bpsPro_bbm_status() {
623
  }
624
  }
625
 
626
- if ( @$_POST['Submit-BBM-Activate'] == true || @$_POST['Submit-BBM-Deactivate'] == true ) {
627
 
628
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
629
  $text = '<h3><strong>'.__('BBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
@@ -736,7 +796,13 @@ echo bps_wpadmin_htaccess_file_check();
736
 
737
  function bpsPro_secure_htaccess_write_check() {
738
 
739
- if ( @$_POST['submit1'] != true ) {
 
 
 
 
 
 
740
 
741
  $secure_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/secure.htaccess';
742
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
@@ -820,7 +886,13 @@ bpsPro_secure_htaccess_write_check();
820
 
821
  function bpsPro_default_htaccess_write_check() {
822
 
823
- if ( @$_POST['submit2'] != true ) {
 
 
 
 
 
 
824
 
825
  $default_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/default.htaccess';
826
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
@@ -919,7 +991,13 @@ bpsPro_default_htaccess_write_check();
919
 
920
  function bpsPro_wpadmin_secure_htaccess_write_check() {
921
 
922
- if ( @$_POST['submit4'] != true ) {
 
 
 
 
 
 
923
 
924
  $wpadmin_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/wpadmin-secure.htaccess';
925
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
@@ -1012,7 +1090,13 @@ bpsPro_wpadmin_secure_htaccess_write_check();
1012
 
1013
  function bpsPro_root_htaccess_write_check() {
1014
 
1015
- if ( @$_POST['submit7'] != true ) {
 
 
 
 
 
 
1016
 
1017
  $root_htaccess_file = ABSPATH . '.htaccess';
1018
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
@@ -1096,7 +1180,13 @@ bpsPro_root_htaccess_write_check();
1096
 
1097
  function bpsPro_wpadmin_htaccess_write_check() {
1098
 
1099
- if ( @$_POST['submit8'] != true ) {
 
 
 
 
 
 
1100
 
1101
  $current_wpadmin_htaccess_file = ABSPATH . 'wp-admin/.htaccess';
1102
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
@@ -1306,7 +1396,9 @@ $scrollto6 = isset($_REQUEST['scrollto6']) ? (int) $_REQUEST['scrollto6'] : 0;
1306
 
1307
  <div id="bps-edittabs-1" class="bps-edittabs-page-class">
1308
  <form name="template1" id="template1" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1309
- <?php wp_nonce_field('bulletproof_security_save_settings_1'); ?>
 
 
1310
  <div>
1311
  <textarea id="crypt21" class="bps-text-area-600x700" name="newcontent1" id="newcontent1" tabindex="1"><?php echo bps_get_secure_htaccess(); ?></textarea>
1312
  <input type="hidden" name="action" value="update" />
@@ -1376,7 +1468,9 @@ function bpsSecureFileDecrypt() {
1376
 
1377
  <div id="bps-edittabs-2" class="bps-edittabs-page-class">
1378
  <form name="template2" id="template2" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1379
- <?php wp_nonce_field('bulletproof_security_save_settings_2'); ?>
 
 
1380
  <div>
1381
  <textarea id="crypt22" class="bps-text-area-600x700" name="newcontent2" id="newcontent2" tabindex="2"><?php echo bps_get_default_htaccess(); ?></textarea>
1382
  <input type="hidden" name="action" value="update" />
@@ -1446,7 +1540,9 @@ function bpsDefaultFileDecrypt() {
1446
 
1447
  <div id="bps-edittabs-4" class="bps-edittabs-page-class">
1448
  <form name="template4" id="template4" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1449
- <?php wp_nonce_field('bulletproof_security_save_settings_4'); ?>
 
 
1450
  <div>
1451
  <textarea id="crypt23" class="bps-text-area-600x700" name="newcontent4" id="newcontent4" tabindex="4"><?php echo bps_get_wpadmin_htaccess(); ?></textarea>
1452
  <input type="hidden" name="action" value="update" />
@@ -1530,7 +1626,10 @@ $sapi_type = php_sapi_name();
1530
 
1531
  <div id="bps-edittabs-5" class="bps-edittabs-page-class">
1532
  <form name="template5" id="template5" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1533
- <?php wp_nonce_field('bulletproof_security_save_settings_5'); ?>
 
 
 
1534
  <div>
1535
  <textarea id="crypt26" class="bps-text-area-600x700" name="newcontent5" id="newcontent5" tabindex="5"><?php echo bps_get_root_htaccess(); ?></textarea>
1536
  <input type="hidden" name="action" value="update" />
@@ -1538,7 +1637,7 @@ $sapi_type = php_sapi_name();
1538
  <input type="hidden" name="scrollto5" id="scrollto5" value="<?php echo esc_html( $scrollto5 ); ?>" />
1539
  <p class="submit">
1540
 
1541
- <?php if ( @bpsStatusRHE($perms) == '0404' ) { ?>
1542
  <input type="submit" name="submit5" value="<?php esc_attr_e('Update File', 'bulletproof-security') ?>" class="button bps-button" onClick="return confirm('<?php $text = __('YOUR ROOT HTACCESS FILE IS LOCKED.', 'bulletproof-security').'\n\n'.__('YOUR FILE EDITS|CHANGES CANNOT BE SAVED.', 'bulletproof-security').'\n\n'.__('Click Cancel, copy the file editing changes you made to save them and then click the Unlock .htaccess File button to unlock your Root .htaccess file. After your Root .htaccess file is unlocked paste your file editing changes back into your Root .htaccess file and click this Update File button again to save your file edits/changes.', 'bulletproof-security'); echo $text; ?>')" />
1543
  <?php } else { ?>
1544
 
@@ -1606,7 +1705,9 @@ function bpsRootFileDecrypt() {
1606
 
1607
  <div id="bps-edittabs-6" class="bps-edittabs-page-class">
1608
  <form name="template6" id="template6" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1609
- <?php wp_nonce_field('bulletproof_security_save_settings_6'); ?>
 
 
1610
  <div>
1611
  <textarea id="crypt27" class="bps-text-area-600x700" name="newcontent6" id="newcontent6" tabindex="6"><?php echo bps_get_current_wpadmin_htaccess_file(); ?></textarea>
1612
  <input type="hidden" name="action" value="update" />
231
  $check_string = @file_get_contents($filename);
232
  }
233
 
234
+ if ( isset ( $_POST['Submit-RBM-Activate'] ) ) {
235
+ $_POST['Submit-RBM-Activate'] = true;
236
+ } else {
237
+ $_POST['Submit-RBM-Activate'] = null;
238
+ }
239
+
240
+ if ( isset ( $_POST['Submit-RBM-Deactivate'] ) ) {
241
+ $_POST['Submit-RBM-Deactivate'] = true;
242
+ } else {
243
+ $_POST['Submit-RBM-Deactivate'] = null;
244
+ }
245
+
246
+ if ( $_POST['Submit-RBM-Activate'] != true && $_POST['Submit-RBM-Deactivate'] != true ) {
247
 
248
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
249
  $text = '<h3><strong>'.__('RBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
260
  }
261
  }
262
 
263
+ if ( $_POST['Submit-RBM-Activate'] == true || $_POST['Submit-RBM-Deactivate'] == true ) {
264
 
265
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
266
  $text = '<h3><strong>'.__('RBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
358
  $check_string = @file_get_contents($filename);
359
  }
360
 
361
+ if ( isset ( $_POST['Submit-WBM-Activate'] ) ) {
362
+ $_POST['Submit-WBM-Activate'] = true;
363
+ } else {
364
+ $_POST['Submit-WBM-Activate'] = null;
365
+ }
366
+
367
+ if ( isset ( $_POST['Submit-WBM-Deactivate'] ) ) {
368
+ $_POST['Submit-WBM-Deactivate'] = true;
369
+ } else {
370
+ $_POST['Submit-WBM-Deactivate'] = null;
371
+ }
372
+
373
+ if ( $_POST['Submit-WBM-Activate'] != true && $_POST['Submit-WBM-Deactivate'] != true ) {
374
 
375
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' || $BPS_wpadmin_Options['bps_wpadmin_restriction'] == 'disabled' || $GDMW_options['bps_gdmw_hosting'] == 'yes' ) {
376
  $text = '<h3><strong>'.__('WBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
384
  }
385
  }
386
 
387
+ if ( $_POST['Submit-WBM-Activate'] == true || $_POST['Submit-WBM-Deactivate'] == true ) {
388
 
389
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' || $BPS_wpadmin_Options['bps_wpadmin_restriction'] == 'disabled' || $GDMW_options['bps_gdmw_hosting'] == 'yes' ) {
390
  $text = '<h3><strong>'.__('WBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
444
 
445
  $hpf_options = get_option('bulletproof_security_options_hpf_cron');
446
 
447
+ if ( isset ( $_POST['Submit-Hidden-Plugins'] ) ) {
448
+ $_POST['Submit-Hidden-Plugins'] = true;
449
+ } else {
450
+ $_POST['Submit-Hidden-Plugins'] = null;
451
+ }
452
+
453
+ if ( isset ( $_POST['Hidden-Plugins-Ignore-Submit'] ) ) {
454
+ $_POST['Hidden-Plugins-Ignore-Submit'] = true;
455
+ } else {
456
+ $_POST['Hidden-Plugins-Ignore-Submit'] = null;
457
+ }
458
+
459
+ if ( $_POST['Submit-Hidden-Plugins'] != true && $_POST['Hidden-Plugins-Ignore-Submit'] != true ) {
460
 
461
  if ( $hpf_options['bps_hidden_plugins_cron'] == 'On' ) {
462
  $text = '<h3><strong>'.__('HPF Status: ', 'bulletproof-security').'<span class="core-status-activated">'.__('HPF Cron On', 'bulletproof-security').'</span></strong></h3>';
467
  }
468
  }
469
 
470
+ if ( $_POST['Submit-Hidden-Plugins'] == true || $_POST['Hidden-Plugins-Ignore-Submit'] == true ) {
471
 
472
  if ( $hpf_options['bps_hidden_plugins_cron'] == 'On' ) {
473
  $text = '<h3><strong>'.__('HPF Status: ', 'bulletproof-security').'<span class="core-status-activated">'.__('HPF Cron On', 'bulletproof-security').'</span></strong></h3>';
569
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
570
  $filename = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/.htaccess';
571
 
572
+ if ( isset ( $_POST['Submit-MBM-Activate'] ) ) {
573
+ $_POST['Submit-MBM-Activate'] = true;
574
+ } else {
575
+ $_POST['Submit-MBM-Activate'] = null;
576
+ }
577
+
578
+ if ( isset ( $_POST['Submit-MBM-Deactivate'] ) ) {
579
+ $_POST['Submit-MBM-Deactivate'] = true;
580
+ } else {
581
+ $_POST['Submit-MBM-Deactivate'] = null;
582
+ }
583
+
584
+ if ( $_POST['Submit-MBM-Activate'] != true && $_POST['Submit-MBM-Deactivate'] != true ) {
585
 
586
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
587
  $text = '<h3><strong>'.__('MBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
595
  }
596
  }
597
 
598
+ if ( $_POST['Submit-MBM-Activate'] == true || $_POST['Submit-MBM-Deactivate'] == true ) {
599
 
600
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
601
  $text = '<h3><strong>'.__('MBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
657
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
658
  $filename = WP_CONTENT_DIR . '/bps-backup/.htaccess';
659
 
660
+ if ( isset ( $_POST['Submit-BBM-Activate'] ) ) {
661
+ $_POST['Submit-BBM-Activate'] = true;
662
+ } else {
663
+ $_POST['Submit-BBM-Activate'] = null;
664
+ }
665
+
666
+ if ( isset ( $_POST['Submit-BBM-Deactivate'] ) ) {
667
+ $_POST['Submit-BBM-Deactivate'] = true;
668
+ } else {
669
+ $_POST['Submit-BBM-Deactivate'] = null;
670
+ }
671
+
672
+ if ( $_POST['Submit-BBM-Activate'] != true && $_POST['Submit-BBM-Deactivate'] != true ) {
673
 
674
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
675
  $text = '<h3><strong>'.__('BBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
683
  }
684
  }
685
 
686
+ if ( $_POST['Submit-BBM-Activate'] == true || $_POST['Submit-BBM-Deactivate'] == true ) {
687
 
688
  if ( ! file_exists($filename) && $HFiles_options['bps_htaccess_files'] == 'disabled' ) {
689
  $text = '<h3><strong>'.__('BBM Status: ', 'bulletproof-security').'<span class="core-status-disabled">'.__('Disabled', 'bulletproof-security').'</span></strong></h3>';
796
 
797
  function bpsPro_secure_htaccess_write_check() {
798
 
799
+ if ( isset ( $_POST['submit1'] ) ) {
800
+ $_POST['submit1'] = true;
801
+ } else {
802
+ $_POST['submit1'] = null;
803
+ }
804
+
805
+ if ( $_POST['submit1'] != true ) {
806
 
807
  $secure_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/secure.htaccess';
808
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
886
 
887
  function bpsPro_default_htaccess_write_check() {
888
 
889
+ if ( isset ( $_POST['submit2'] ) ) {
890
+ $_POST['submit2'] = true;
891
+ } else {
892
+ $_POST['submit2'] = null;
893
+ }
894
+
895
+ if ( $_POST['submit2'] != true ) {
896
 
897
  $default_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/default.htaccess';
898
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
991
 
992
  function bpsPro_wpadmin_secure_htaccess_write_check() {
993
 
994
+ if ( isset ( $_POST['submit4'] ) ) {
995
+ $_POST['submit4'] = true;
996
+ } else {
997
+ $_POST['submit4'] = null;
998
+ }
999
+
1000
+ if ( $_POST['submit4'] != true ) {
1001
 
1002
  $wpadmin_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/wpadmin-secure.htaccess';
1003
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
1090
 
1091
  function bpsPro_root_htaccess_write_check() {
1092
 
1093
+ if ( isset ( $_POST['submit7'] ) ) {
1094
+ $_POST['submit7'] = true;
1095
+ } else {
1096
+ $_POST['submit7'] = null;
1097
+ }
1098
+
1099
+ if ( $_POST['submit7'] != true ) {
1100
 
1101
  $root_htaccess_file = ABSPATH . '.htaccess';
1102
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
1180
 
1181
  function bpsPro_wpadmin_htaccess_write_check() {
1182
 
1183
+ if ( isset ( $_POST['submit8'] ) ) {
1184
+ $_POST['submit8'] = true;
1185
+ } else {
1186
+ $_POST['submit8'] = null;
1187
+ }
1188
+
1189
+ if ( $_POST['submit8'] != true ) {
1190
 
1191
  $current_wpadmin_htaccess_file = ABSPATH . 'wp-admin/.htaccess';
1192
  $HFiles_options = get_option('bulletproof_security_options_htaccess_files');
1396
 
1397
  <div id="bps-edittabs-1" class="bps-edittabs-page-class">
1398
  <form name="template1" id="template1" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1399
+ <?php wp_nonce_field('bulletproof_security_save_settings_1');
1400
+ $secure_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/secure.htaccess';
1401
+ ?>
1402
  <div>
1403
  <textarea id="crypt21" class="bps-text-area-600x700" name="newcontent1" id="newcontent1" tabindex="1"><?php echo bps_get_secure_htaccess(); ?></textarea>
1404
  <input type="hidden" name="action" value="update" />
1468
 
1469
  <div id="bps-edittabs-2" class="bps-edittabs-page-class">
1470
  <form name="template2" id="template2" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1471
+ <?php wp_nonce_field('bulletproof_security_save_settings_2');
1472
+ $default_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/default.htaccess';
1473
+ ?>
1474
  <div>
1475
  <textarea id="crypt22" class="bps-text-area-600x700" name="newcontent2" id="newcontent2" tabindex="2"><?php echo bps_get_default_htaccess(); ?></textarea>
1476
  <input type="hidden" name="action" value="update" />
1540
 
1541
  <div id="bps-edittabs-4" class="bps-edittabs-page-class">
1542
  <form name="template4" id="template4" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1543
+ <?php wp_nonce_field('bulletproof_security_save_settings_4');
1544
+ $wpadmin_htaccess_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/wpadmin-secure.htaccess';
1545
+ ?>
1546
  <div>
1547
  <textarea id="crypt23" class="bps-text-area-600x700" name="newcontent4" id="newcontent4" tabindex="4"><?php echo bps_get_wpadmin_htaccess(); ?></textarea>
1548
  <input type="hidden" name="action" value="update" />
1626
 
1627
  <div id="bps-edittabs-5" class="bps-edittabs-page-class">
1628
  <form name="template5" id="template5" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1629
+ <?php wp_nonce_field('bulletproof_security_save_settings_5');
1630
+ $root_htaccess_file = ABSPATH . '.htaccess';
1631
+ $perms = '';
1632
+ ?>
1633
  <div>
1634
  <textarea id="crypt26" class="bps-text-area-600x700" name="newcontent5" id="newcontent5" tabindex="5"><?php echo bps_get_root_htaccess(); ?></textarea>
1635
  <input type="hidden" name="action" value="update" />
1637
  <input type="hidden" name="scrollto5" id="scrollto5" value="<?php echo esc_html( $scrollto5 ); ?>" />
1638
  <p class="submit">
1639
 
1640
+ <?php if ( bpsStatusRHE($perms) == '0404' ) { ?>
1641
  <input type="submit" name="submit5" value="<?php esc_attr_e('Update File', 'bulletproof-security') ?>" class="button bps-button" onClick="return confirm('<?php $text = __('YOUR ROOT HTACCESS FILE IS LOCKED.', 'bulletproof-security').'\n\n'.__('YOUR FILE EDITS|CHANGES CANNOT BE SAVED.', 'bulletproof-security').'\n\n'.__('Click Cancel, copy the file editing changes you made to save them and then click the Unlock .htaccess File button to unlock your Root .htaccess file. After your Root .htaccess file is unlocked paste your file editing changes back into your Root .htaccess file and click this Update File button again to save your file edits/changes.', 'bulletproof-security'); echo $text; ?>')" />
1642
  <?php } else { ?>
1643
 
1705
 
1706
  <div id="bps-edittabs-6" class="bps-edittabs-page-class">
1707
  <form name="template6" id="template6" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/core/core.php#bps-tabs-6' ); ?>" method="post">
1708
+ <?php wp_nonce_field('bulletproof_security_save_settings_6');
1709
+ $current_wpadmin_htaccess_file = ABSPATH . 'wp-admin/.htaccess';
1710
+ ?>
1711
  <div>
1712
  <textarea id="crypt27" class="bps-text-area-600x700" name="newcontent6" id="newcontent6" tabindex="6"><?php echo bps_get_current_wpadmin_htaccess_file(); ?></textarea>
1713
  <input type="hidden" name="action" value="update" />
admin/db-backup-security/db-backup-security.php CHANGED
@@ -1001,12 +1001,12 @@ if ( isset( $_POST['Submit-DBB-Reset'] ) && current_user_can('manage_options') )
1001
 
1002
  echo '<label for="bps-dbb">'.__('DB Backup Folder Location:', 'bulletproof-security').'</label><br>';
1003
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Recommended: Use The Default Obfuscated & Secure BPS Backup Folder.', 'bulletproof-security').'</strong></font></label><br>';
1004
- echo '<input type="text" name="DBBFolder" class="dbb-text-500" value="'; if ( @preg_match( '|[<>\"\';]|', $_POST['DBBFolder'] ) ) { echo esc_html($DBBoptions['bps_db_backup_folder']); } else { echo esc_html(trim(stripslashes($DBBFolder))); } echo '" /><br>';
1005
 
1006
  echo '<label for="bps-dbb">'.__('DB Backup File Download Link|URL:', 'bulletproof-security').'</label><br>';
1007
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Note: If you see 404 errors when trying to download zip files or if you have', 'bulletproof-security').'</strong></font></label><br>';
1008
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('changed the DB Backup Folder Location above, click the Read Me help button.', 'bulletproof-security').'</strong></font></label><br>';
1009
- echo '<input type="text" name="DBBDownloadLink" class="dbb-text-500" value="'; if ( @preg_match( '|[<>\"\';]|', $_POST['DBBDownloadLink'] ) ) { echo esc_url($DBBoptions['bps_db_backup_download_link']); } else { echo esc_url(trim($DBBDownloadLink)); } echo '" /><br>';
1010
 
1011
  echo '<label for="bps-dbb">'.__('Backup Job Type: Manual or Scheduled', 'bulletproof-security').'</label><br>';
1012
  echo '<select name="dbb_backup_job_type" class="form-340">';
@@ -1150,7 +1150,7 @@ if ( isset( $_POST['Submit-DBB-Reset'] ) && current_user_can('manage_options') )
1150
  echo '<label for="bps-dbb">'.__('Rename|Create|Reset DB Backup Folder Name:', 'bulletproof-security').'</label><br>';
1151
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Randomly Generated New DB Backup Folder Name.', 'bulletproof-security').'</strong></font></label><br>';
1152
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Valid Folder Naming Characters: a-z A-Z 0-9 - _', 'bulletproof-security').'</strong></font></label><br>';
1153
- echo '<input type="text" name="DBBFolderReset" class="regular-text-short-fixed" style="width:325px;margin:0px 0px 10px 0px;" value="'; if ( @preg_match( '|[^a-zA-Z0-9-_]|', $_POST['DBBFolderReset'] ) ) { echo esc_html($db_backup_folder_obs); } else { echo esc_html(trim(stripslashes($DBBFolderReset))); } echo '" /><br>';
1154
 
1155
  echo "<p><input type=\"submit\" name=\"Submit-DBB-Reset\" value=\"".esc_attr__('Rename|Create|Reset', 'bulletproof-security')."\" class=\"button bps-button\" onclick=\"return confirm('".__('The Rename|Create|Reset Tool renames the DB Backup folder if it already exists or creates a new DB Backup folder if it does not already exist.\n\n-------------------------------------------------------------\n\nIf you have DB Backup files they will not be affected/changed. The DB Backup File Download Link|URL path will also be changed and have the new DB Backup folder name in the URL path.\n\n-------------------------------------------------------------\n\nClick OK to proceed or click Cancel', 'bulletproof-security')."')\" /></p></form>";
1156
 
@@ -1487,7 +1487,7 @@ if ( isset( $_POST['Submit-DB-Table-Prefix'] ) && current_user_can('manage_optio
1487
  <?php wp_nonce_field('bulletproof_security_table_prefix_changer'); ?>
1488
  <div>
1489
  <strong><label for="bpsTablePrefix"><?php _e('Randomly Generated DB Table Prefix', 'bulletproof-security'); ?></label></strong><br />
1490
- <input type="text" name="DBTablePrefix" value="<?php if ( @preg_match( '|[^a-z0-9_]|', $_POST['DBTablePrefix'] ) ) { echo esc_html($prefix_obs); } else { echo esc_html($DBTablePrefix); } ?>" class="table-prefix-changer" /> <br />
1491
  <p class="submit">
1492
  <input type="submit" name="Submit-DB-Table-Prefix" value="<?php esc_attr_e('Change DB Table Prefix', 'bulletproof-security') ?>" class="button bps-button" onclick="bpsSpinnerTablePrefix()" />
1493
  </p>
1001
 
1002
  echo '<label for="bps-dbb">'.__('DB Backup Folder Location:', 'bulletproof-security').'</label><br>';
1003
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Recommended: Use The Default Obfuscated & Secure BPS Backup Folder.', 'bulletproof-security').'</strong></font></label><br>';
1004
+ echo '<input type="text" name="DBBFolder" class="dbb-text-500" value="'; if ( isset( $_POST['DBBFolder'] ) && preg_match( '|[<>\"\';]|', $_POST['DBBFolder'] ) ) { echo esc_html($DBBoptions['bps_db_backup_folder']); } else { echo esc_html(trim(stripslashes($DBBFolder))); } echo '" /><br>';
1005
 
1006
  echo '<label for="bps-dbb">'.__('DB Backup File Download Link|URL:', 'bulletproof-security').'</label><br>';
1007
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Note: If you see 404 errors when trying to download zip files or if you have', 'bulletproof-security').'</strong></font></label><br>';
1008
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('changed the DB Backup Folder Location above, click the Read Me help button.', 'bulletproof-security').'</strong></font></label><br>';
1009
+ echo '<input type="text" name="DBBDownloadLink" class="dbb-text-500" value="'; if ( isset( $_POST['DBBDownloadLink'] ) && preg_match( '|[<>\"\';]|', $_POST['DBBDownloadLink'] ) ) { echo esc_url($DBBoptions['bps_db_backup_download_link']); } else { echo esc_url(trim($DBBDownloadLink)); } echo '" /><br>';
1010
 
1011
  echo '<label for="bps-dbb">'.__('Backup Job Type: Manual or Scheduled', 'bulletproof-security').'</label><br>';
1012
  echo '<select name="dbb_backup_job_type" class="form-340">';
1150
  echo '<label for="bps-dbb">'.__('Rename|Create|Reset DB Backup Folder Name:', 'bulletproof-security').'</label><br>';
1151
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Randomly Generated New DB Backup Folder Name.', 'bulletproof-security').'</strong></font></label><br>';
1152
  echo '<label for="bps-dbb"><font color="#2ea2cc"><strong>'.__('Valid Folder Naming Characters: a-z A-Z 0-9 - _', 'bulletproof-security').'</strong></font></label><br>';
1153
+ echo '<input type="text" name="DBBFolderReset" class="regular-text-short-fixed" style="width:325px;margin:0px 0px 10px 0px;" value="'; if ( isset( $_POST['DBBFolderReset'] ) && preg_match( '|[^a-zA-Z0-9-_]|', $_POST['DBBFolderReset'] ) ) { echo esc_html($db_backup_folder_obs); } else { echo esc_html(trim(stripslashes($DBBFolderReset))); } echo '" /><br>';
1154
 
1155
  echo "<p><input type=\"submit\" name=\"Submit-DBB-Reset\" value=\"".esc_attr__('Rename|Create|Reset', 'bulletproof-security')."\" class=\"button bps-button\" onclick=\"return confirm('".__('The Rename|Create|Reset Tool renames the DB Backup folder if it already exists or creates a new DB Backup folder if it does not already exist.\n\n-------------------------------------------------------------\n\nIf you have DB Backup files they will not be affected/changed. The DB Backup File Download Link|URL path will also be changed and have the new DB Backup folder name in the URL path.\n\n-------------------------------------------------------------\n\nClick OK to proceed or click Cancel', 'bulletproof-security')."')\" /></p></form>";
1156
 
1487
  <?php wp_nonce_field('bulletproof_security_table_prefix_changer'); ?>
1488
  <div>
1489
  <strong><label for="bpsTablePrefix"><?php _e('Randomly Generated DB Table Prefix', 'bulletproof-security'); ?></label></strong><br />
1490
+ <input type="text" name="DBTablePrefix" value="<?php if ( isset( $_POST['DBTablePrefix'] ) && preg_match( '|[^a-z0-9_]|', $_POST['DBTablePrefix'] ) ) { echo esc_html($prefix_obs); } else { echo esc_html($DBTablePrefix); } ?>" class="table-prefix-changer" /> <br />
1491
  <p class="submit">
1492
  <input type="submit" name="Submit-DB-Table-Prefix" value="<?php esc_attr_e('Change DB Table Prefix', 'bulletproof-security') ?>" class="button bps-button" onclick="bpsSpinnerTablePrefix()" />
1493
  </p>
admin/htaccess/bps-mu-tools.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /*
3
  Plugin Name: BPS MU Tools
4
- Description: <strong>Enable|Disable BPS Plugin AutoUpdates:</strong> Clicking this link enables or disables BPS Plugin automatic updates for the BPS plugin only. <strong>Enable|Disable BPS Folder|Deactivation Checks:</strong> Clicking this link enables or disables checks for whether the /bulletproof-security/ plugin folder has been renamed or deleted. Checks for whether the BPS plugin has been deactivated. Email alerts are sent every 5 minutes when the BPS plugin folder has been renamed or deleted or the BPS plugin has been deactivated. To disable these checks and the email alerts click the Disable BPS Folder|Deactivation Checks link. <strong>Note:</strong> When you click disable links you will then see enable links and vice versa.
5
- Version: 4.0
6
  Author: AITpro
7
  Author URI: https://forum.ait-pro.com/forums/forum/bulletproof-security-free/
8
  License: GPLv2 or later
@@ -18,6 +18,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
18
  ## 2.0: Added CSRF Nonce verification to Toggle GET links.
19
  ## 2.7: BugFix for SSL sites nonce verification failing.
20
  ## 3.2: Disabling all functions except for the BPS Plugin automatic update function.
 
21
 
22
  ## Uncommenting these filters below and commenting out this BPS filter: add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
23
  ## will allow ALL plugin and theme automatic updates on your website. At a later time|version this BPS MU plugin file will include options to enable|disable these things.
@@ -48,7 +49,7 @@ function bpsPro_autoupdate_bps_plugin( $update, $item ) {
48
  }
49
  }
50
 
51
- add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
52
 
53
  // Check if the /bulletproof-security/ plugin folder has been renamed or deleted.
54
  // Writes a log entry and sends an email alert once every 5 minutes.
@@ -60,10 +61,6 @@ function bpsPro_plugin_folder_check() {
60
  return;
61
  }
62
 
63
- if ( defined('DISABLE_WP_CRON') && DISABLE_WP_CRON === true ) {
64
- return;
65
- }
66
-
67
  if ( time() > $MUTools_Options['bps_mu_tools_timestamp'] ) {
68
 
69
  if ( ! is_dir( WP_PLUGIN_DIR . '/bulletproof-security' ) ) {
@@ -140,10 +137,6 @@ function bpsPro_plugin_deactivation_check() {
140
  return;
141
  }
142
 
143
- if ( defined('DISABLE_WP_CRON') && DISABLE_WP_CRON === true ) {
144
- return;
145
- }
146
-
147
  global $blog_id;
148
 
149
  if ( is_multisite() && $blog_id != 1 ) {
@@ -222,8 +215,8 @@ function bpsPro_toggle_links() {
222
 
223
  if ( is_admin() && preg_match( '/\/wp-admin\/plugins\.php/', esc_html($_SERVER['REQUEST_URI']) ) || is_network_admin() && preg_match( '/\/wp-admin\/network\/plugins\.php/', esc_html($_SERVER['REQUEST_URI']) ) ) {
224
 
225
- if ( isset( $_GET['bps_toggle_a'] ) || isset( $_GET['bps_toggle_d'] ) ) {
226
-
227
  if ( ! function_exists( 'wp_verify_nonce' ) ) {
228
  require_once( ABSPATH . '/wp-includes/pluggable.php' );
229
  }
@@ -257,33 +250,68 @@ function bpsPro_toggle_links() {
257
 
258
  } else {
259
 
260
- $MUTools_Options = get_option('bulletproof_security_options_MU_tools_free');
261
-
262
- if ( ! isset( $_GET['bps_toggle_a'] ) ) {
263
- $bps_toggle_a = $MUTools_Options['bps_mu_tools_enable_disable_autoupdate'];
264
- } elseif ( 'enable' == $_GET['bps_toggle_a'] ) {
265
- $bps_toggle_a = 'enable';
266
- } elseif ( 'disable' == $_GET['bps_toggle_a'] ) {
267
- $bps_toggle_a = 'disable';
268
  }
269
 
270
- if ( ! isset( $_GET['bps_toggle_d'] ) ) {
271
- $bps_toggle_d = $MUTools_Options['bps_mu_tools_enable_disable_deactivation'];
272
- } elseif ( 'enable' == $_GET['bps_toggle_d'] ) {
273
- $bps_toggle_d = 'enable';
274
- } elseif ( 'disable' == $_GET['bps_toggle_d'] ) {
275
- $bps_toggle_d = 'disable';
276
  }
277
-
278
- $MUTools_Option_settings = array(
279
- 'bps_mu_tools_timestamp' => time() + 300,
280
- 'bps_mu_tools_enable_disable_autoupdate' => $bps_toggle_a,
281
- 'bps_mu_tools_enable_disable_deactivation' => $bps_toggle_d
282
- );
283
 
284
- foreach ( $MUTools_Option_settings as $key => $value ) {
285
- update_option('bulletproof_security_options_MU_tools_free', $MUTools_Option_settings);
 
 
 
 
286
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  }
288
  }
289
  }
@@ -298,7 +326,7 @@ function bpsPro_mu_plugin_actlinks( $links, $file ) {
298
  $this_plugin = plugin_basename(__FILE__);
299
  if ( $file == $this_plugin ) {
300
 
301
- $MUTools_Options = get_option('bulletproof_security_options_MU_tools_free');
302
 
303
  if ( ! function_exists( 'wp_create_nonce' ) ) {
304
  require_once( ABSPATH . '/wp-includes/pluggable.php' );
@@ -306,45 +334,113 @@ function bpsPro_mu_plugin_actlinks( $links, $file ) {
306
 
307
  $nonce = wp_create_nonce( 'bps-anti-csrf' );
308
 
309
- if ( $MUTools_Options['bps_mu_tools_enable_disable_autoupdate'] == 'enable' ) {
 
 
 
 
 
 
 
 
 
310
 
311
  if ( is_multisite() ) {
312
- $links[] = '<a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_a=disable&_wpnonce=$nonce" ).'">Disable BPS Plugin AutoUpdates</a>';
 
 
 
 
 
 
 
 
 
 
313
  } else {
314
- $links[] = '<a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_a=disable&_wpnonce=$nonce" ).'">Disable BPS Plugin AutoUpdates</a>';
315
  }
316
 
317
  } else {
318
 
319
- if ( $MUTools_Options['bps_mu_tools_enable_disable_autoupdate'] == 'disable' ) {
320
-
321
- if ( is_multisite() ) {
322
- $links[] = '<a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_a=enable&_wpnonce=$nonce" ).'">Enable BPS Plugin AutoUpdates</a>';
323
- } else {
324
- $links[] = '<a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_a=enable&_wpnonce=$nonce" ).'">Enable BPS Plugin AutoUpdates</a>';
325
- }
326
  }
327
- }
 
 
 
328
 
329
- if ( $MUTools_Options['bps_mu_tools_enable_disable_deactivation'] == 'enable' ) {
 
 
 
 
 
 
330
 
331
  if ( is_multisite() ) {
332
- $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_d=disable&_wpnonce=$nonce" ).'">Disable BPS Folder|Deactivation Checks</a>';
 
 
 
 
 
 
 
 
 
 
333
  } else {
334
- $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_d=disable&_wpnonce=$nonce" ).'">Disable BPS Folder|Deactivation Checks</a>';
335
  }
336
 
337
  } else {
338
 
339
- if ( $MUTools_Options['bps_mu_tools_enable_disable_deactivation'] == 'disable' ) {
340
-
341
- if ( is_multisite() ) {
342
- $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_d=enable&_wpnonce=$nonce" ).'">Enable BPS Folder|Deactivation Checks</a>';
343
- } else {
344
- $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_d=enable&_wpnonce=$nonce" ).'">Enable BPS Folder|Deactivation Checks</a>';
345
- }
346
  }
347
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  }
349
  return $links;
350
  }
@@ -352,4 +448,50 @@ function bpsPro_mu_plugin_actlinks( $links, $file ) {
352
  add_filter( 'plugin_action_links', 'bpsPro_mu_plugin_actlinks', 10, 2 );
353
  add_filter( 'network_admin_plugin_action_links', 'bpsPro_mu_plugin_actlinks', 10, 2 );
354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  ?>
1
  <?php
2
  /*
3
  Plugin Name: BPS MU Tools
4
+ Description: To turn On any of these WordPress Automatic Update options/filters click the links. When any of these WordPress Automatic Update options/filters are turned On that means that particular WP Automatic Update option/filter is enabled and the link will be displayed in green font. When any of these WordPress Automatic Update options/filters are turned Off that means that particular WP Automatic Update option/filter is not in use. It does not mean that particular WP Automatic Update filter is disabling or turning Off a particular WP Automatic Update. For additional help info about each of these WordPress Automatic Update options/filters click the "WordPress Automatic Update Help Forum Topic" link below. &bull; Disable all Updates: On = All WordPress Automatic Updates: Core, Plugins, Themes and Translations will be disabled. &bull; Disable all Core Updates: On = All WordPress Core Automatic Updates: Development, Minor and Major versions are disabled. &bull; Enable all Core Updates: On = All WordPress Core Automatic Updates: Development, Minor and Major versions are enabled. &bull; Enable Development Updates: On = WordPress Core Automatic Updates are enabled for Development WP versions. &bull; Enable Minor Updates: On = WordPress Core Automatic Updates are enabled for Minor WP versions. &bull; Enable Major Updates: On = WordPress Core Automatic Updates are enabled for Major WP versions.
5
+ Version: 5.0
6
  Author: AITpro
7
  Author URI: https://forum.ait-pro.com/forums/forum/bulletproof-security-free/
8
  License: GPLv2 or later
18
  ## 2.0: Added CSRF Nonce verification to Toggle GET links.
19
  ## 2.7: BugFix for SSL sites nonce verification failing.
20
  ## 3.2: Disabling all functions except for the BPS Plugin automatic update function.
21
+ ## 4.2: Added WP Automatic Update options/filters. Removed the MU Tools Enable|Disable BPS Plugin AutoUpdates & Enable|Disable BPS Folder|Deactivation Checks code.
22
 
23
  ## Uncommenting these filters below and commenting out this BPS filter: add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
24
  ## will allow ALL plugin and theme automatic updates on your website. At a later time|version this BPS MU plugin file will include options to enable|disable these things.
49
  }
50
  }
51
 
52
+ //add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
53
 
54
  // Check if the /bulletproof-security/ plugin folder has been renamed or deleted.
55
  // Writes a log entry and sends an email alert once every 5 minutes.
61
  return;
62
  }
63
 
 
 
 
 
64
  if ( time() > $MUTools_Options['bps_mu_tools_timestamp'] ) {
65
 
66
  if ( ! is_dir( WP_PLUGIN_DIR . '/bulletproof-security' ) ) {
137
  return;
138
  }
139
 
 
 
 
 
140
  global $blog_id;
141
 
142
  if ( is_multisite() && $blog_id != 1 ) {
215
 
216
  if ( is_admin() && preg_match( '/\/wp-admin\/plugins\.php/', esc_html($_SERVER['REQUEST_URI']) ) || is_network_admin() && preg_match( '/\/wp-admin\/network\/plugins\.php/', esc_html($_SERVER['REQUEST_URI']) ) ) {
217
 
218
+ if ( isset( $_GET['bps_toggle_automatic_updater_disabled'] ) || isset( $_GET['bps_toggle_auto_update_core_updates_disabled'] ) || isset( $_GET['bps_toggle_auto_update_core'] ) || isset( $_GET['bps_toggle_allow_dev_auto_core_updates'] ) || isset( $_GET['bps_toggle_allow_minor_auto_core_updates'] ) ||isset( $_GET['bps_toggle_allow_major_auto_core_updates'] ) ) {
219
+
220
  if ( ! function_exists( 'wp_verify_nonce' ) ) {
221
  require_once( ABSPATH . '/wp-includes/pluggable.php' );
222
  }
250
 
251
  } else {
252
 
253
+ $wp_auto_update_options = get_option('bulletproof_security_options_mu_wp_autoupdate');
254
+
255
+ if ( ! isset( $_GET['bps_toggle_automatic_updater_disabled'] ) ) {
256
+ $bps_toggle_automatic_updater_disabled = $wp_auto_update_options['bps_automatic_updater_disabled'];
257
+ } elseif ( 'enable' == $_GET['bps_toggle_automatic_updater_disabled'] ) {
258
+ $bps_toggle_automatic_updater_disabled = 'enabled';
259
+ } elseif ( 'disable' == $_GET['bps_toggle_automatic_updater_disabled'] ) {
260
+ $bps_toggle_automatic_updater_disabled = 'disabled';
261
  }
262
 
263
+ if ( ! isset( $_GET['bps_toggle_auto_update_core_updates_disabled'] ) ) {
264
+ $bps_toggle_auto_update_core_updates_disabled = $wp_auto_update_options['bps_auto_update_core_updates_disabled'];
265
+ } elseif ( 'enable' == $_GET['bps_toggle_auto_update_core_updates_disabled'] ) {
266
+ $bps_toggle_auto_update_core_updates_disabled = 'enabled';
267
+ } elseif ( 'disable' == $_GET['bps_toggle_auto_update_core_updates_disabled'] ) {
268
+ $bps_toggle_auto_update_core_updates_disabled = 'disabled';
269
  }
 
 
 
 
 
 
270
 
271
+ if ( ! isset( $_GET['bps_toggle_auto_update_core'] ) ) {
272
+ $bps_toggle_auto_update_core = $wp_auto_update_options['bps_auto_update_core'];
273
+ } elseif ( 'enable' == $_GET['bps_toggle_auto_update_core'] ) {
274
+ $bps_toggle_auto_update_core = 'enabled';
275
+ } elseif ( 'disable' == $_GET['bps_toggle_auto_update_core'] ) {
276
+ $bps_toggle_auto_update_core = 'disabled';
277
  }
278
+
279
+ if ( ! isset( $_GET['bps_toggle_allow_dev_auto_core_updates'] ) ) {
280
+ $bps_toggle_allow_dev_auto_core_updates = $wp_auto_update_options['bps_allow_dev_auto_core_updates'];
281
+ } elseif ( 'enable' == $_GET['bps_toggle_allow_dev_auto_core_updates'] ) {
282
+ $bps_toggle_allow_dev_auto_core_updates = 'enabled';
283
+ } elseif ( 'disable' == $_GET['bps_toggle_allow_dev_auto_core_updates'] ) {
284
+ $bps_toggle_allow_dev_auto_core_updates = 'disabled';
285
+ }
286
+
287
+ if ( ! isset( $_GET['bps_toggle_allow_minor_auto_core_updates'] ) ) {
288
+ $bps_toggle_allow_minor_auto_core_updates = $wp_auto_update_options['bps_allow_minor_auto_core_updates'];
289
+ } elseif ( 'enable' == $_GET['bps_toggle_allow_minor_auto_core_updates'] ) {
290
+ $bps_toggle_allow_minor_auto_core_updates = 'enabled';
291
+ } elseif ( 'disable' == $_GET['bps_toggle_allow_minor_auto_core_updates'] ) {
292
+ $bps_toggle_allow_minor_auto_core_updates = 'disabled';
293
+ }
294
+
295
+ if ( ! isset( $_GET['bps_toggle_allow_major_auto_core_updates'] ) ) {
296
+ $bps_toggle_allow_major_auto_core_updates = $wp_auto_update_options['bps_allow_major_auto_core_updates'];
297
+ } elseif ( 'enable' == $_GET['bps_toggle_allow_major_auto_core_updates'] ) {
298
+ $bps_toggle_allow_major_auto_core_updates = 'enabled';
299
+ } elseif ( 'disable' == $_GET['bps_toggle_allow_major_auto_core_updates'] ) {
300
+ $bps_toggle_allow_major_auto_core_updates = 'disabled';
301
+ }
302
+
303
+ $BPS_WP_Autoupdate_Options = array(
304
+ 'bps_automatic_updater_disabled' => $bps_toggle_automatic_updater_disabled,
305
+ 'bps_auto_update_core_updates_disabled' => $bps_toggle_auto_update_core_updates_disabled,
306
+ 'bps_auto_update_core' => $bps_toggle_auto_update_core,
307
+ 'bps_allow_dev_auto_core_updates' => $bps_toggle_allow_dev_auto_core_updates,
308
+ 'bps_allow_minor_auto_core_updates' => $bps_toggle_allow_minor_auto_core_updates,
309
+ 'bps_allow_major_auto_core_updates' => $bps_toggle_allow_major_auto_core_updates
310
+ );
311
+
312
+ foreach( $BPS_WP_Autoupdate_Options as $key => $value ) {
313
+ update_option('bulletproof_security_options_mu_wp_autoupdate', $BPS_WP_Autoupdate_Options);
314
+ }
315
  }
316
  }
317
  }
326
  $this_plugin = plugin_basename(__FILE__);
327
  if ( $file == $this_plugin ) {
328
 
329
+ $wp_auto_update_options = get_option('bulletproof_security_options_mu_wp_autoupdate');
330
 
331
  if ( ! function_exists( 'wp_create_nonce' ) ) {
332
  require_once( ABSPATH . '/wp-includes/pluggable.php' );
334
 
335
  $nonce = wp_create_nonce( 'bps-anti-csrf' );
336
 
337
+ // Disable all Automatic Updates: Core, Plugins and Themes.
338
+ if ( $wp_auto_update_options['bps_automatic_updater_disabled'] == 'enabled' ) {
339
+
340
+ if ( is_multisite() ) {
341
+ $links[] = '<a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_automatic_updater_disabled=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Disable all Updates: On</a>';
342
+ } else {
343
+ $links[] = '<a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_automatic_updater_disabled=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Disable all Updates: On</a>';
344
+ }
345
+
346
+ } else {
347
 
348
  if ( is_multisite() ) {
349
+ $links[] = '<a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_automatic_updater_disabled=enable&_wpnonce=$nonce" ).'">Disable all Updates: Off</a>';
350
+ } else {
351
+ $links[] = '<a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_automatic_updater_disabled=enable&_wpnonce=$nonce" ).'">Disable all Updates: Off</a>';
352
+ }
353
+ }
354
+
355
+ // Disable all WordPress Core Automatic Updates: Development, Minor and Major
356
+ if ( $wp_auto_update_options['bps_auto_update_core_updates_disabled'] == 'enabled' ) {
357
+
358
+ if ( is_multisite() ) {
359
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core_updates_disabled=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Disable all Core Updates: On</a>';
360
  } else {
361
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core_updates_disabled=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Disable all Core Updates: On</a>';
362
  }
363
 
364
  } else {
365
 
366
+ if ( is_multisite() ) {
367
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core_updates_disabled=enable&_wpnonce=$nonce" ).'">Disable all Core Updates: Off</a>';
368
+ } else {
369
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core_updates_disabled=enable&_wpnonce=$nonce" ).'">Disable all Core Updates: Off</a>';
 
 
 
370
  }
371
+ }
372
+
373
+ // Enable all WordPress Core Automatic Updates: Development, Minor and Major
374
+ if ( $wp_auto_update_options['bps_auto_update_core'] == 'enabled' ) {
375
 
376
+ if ( is_multisite() ) {
377
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable all Core Updates: On</a>';
378
+ } else {
379
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable all Core Updates: On</a>';
380
+ }
381
+
382
+ } else {
383
 
384
  if ( is_multisite() ) {
385
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core=enable&_wpnonce=$nonce" ).'">Enable all Core Updates: Off</a>';
386
+ } else {
387
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_auto_update_core=enable&_wpnonce=$nonce" ).'">Enable all Core Updates: Off</a>';
388
+ }
389
+ }
390
+
391
+ // Enable WordPress Core Development Automatic Updates
392
+ if ( $wp_auto_update_options['bps_allow_dev_auto_core_updates'] == 'enabled' ) {
393
+
394
+ if ( is_multisite() ) {
395
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_dev_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Development Updates: On</a>';
396
  } else {
397
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_dev_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Development Updates: On</a>';
398
  }
399
 
400
  } else {
401
 
402
+ if ( is_multisite() ) {
403
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_dev_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Development Updates: Off</a>';
404
+ } else {
405
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_dev_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Development Updates: Off</a>';
 
 
 
406
  }
407
  }
408
+
409
+ // Enable WordPress Core Minor Automatic Updates
410
+ if ( $wp_auto_update_options['bps_allow_minor_auto_core_updates'] == 'enabled' ) {
411
+
412
+ if ( is_multisite() ) {
413
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_minor_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Minor Updates: On</a>';
414
+ } else {
415
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_minor_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Minor Updates: On</a>';
416
+ }
417
+
418
+ } else {
419
+
420
+ if ( is_multisite() ) {
421
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_minor_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Minor Updates: Off</a>';
422
+ } else {
423
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_minor_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Minor Updates: Off</a>';
424
+ }
425
+ }
426
+
427
+ // Enable WordPress Core Major Automatic Updates
428
+ if ( $wp_auto_update_options['bps_allow_major_auto_core_updates'] == 'enabled' ) {
429
+
430
+ if ( is_multisite() ) {
431
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_major_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Major Updates: On</a>';
432
+ } else {
433
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_major_auto_core_updates=disable&_wpnonce=$nonce" ).'" style="color:green;font-weight:600">Enable Major Updates: On</a>';
434
+ }
435
+
436
+ } else {
437
+
438
+ if ( is_multisite() ) {
439
+ $links[] = '<br><a href="'.network_admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_major_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Major Updates: Off</a>';
440
+ } else {
441
+ $links[] = '<br><a href="'.admin_url( "plugins.php?plugin_status=mustuse&bps_toggle_allow_major_auto_core_updates=enable&_wpnonce=$nonce" ).'">Enable Major Updates: Off</a>';
442
+ }
443
+ }
444
  }
445
  return $links;
446
  }
448
  add_filter( 'plugin_action_links', 'bpsPro_mu_plugin_actlinks', 10, 2 );
449
  add_filter( 'network_admin_plugin_action_links', 'bpsPro_mu_plugin_actlinks', 10, 2 );
450
 
451
+ function bpsPro_wp_automatic_updates_free() {
452
+
453
+ $wp_auto_update_options = get_option('bulletproof_security_options_mu_wp_autoupdate');
454
+
455
+ if ( $wp_auto_update_options['bps_automatic_updater_disabled'] == 'enabled' ) {
456
+ add_filter( 'automatic_updater_disabled', '__return_true' );
457
+ }
458
+
459
+ if ( $wp_auto_update_options['bps_auto_update_core_updates_disabled'] == 'enabled' ) {
460
+ add_filter( 'auto_update_core', '__return_false' );
461
+ }
462
+
463
+ if ( $wp_auto_update_options['bps_auto_update_core'] == 'enabled' ) {
464
+ add_filter( 'auto_update_core', '__return_true' );
465
+ }
466
+
467
+ if ( $wp_auto_update_options['bps_allow_dev_auto_core_updates'] == 'enabled' ) {
468
+ add_filter( 'allow_dev_auto_core_updates', '__return_true' );
469
+ }
470
+
471
+ if ( $wp_auto_update_options['bps_allow_minor_auto_core_updates'] == 'enabled' ) {
472
+ add_filter( 'allow_minor_auto_core_updates', '__return_true' );
473
+ }
474
+
475
+ if ( $wp_auto_update_options['bps_allow_major_auto_core_updates'] == 'enabled' ) {
476
+ add_filter( 'allow_major_auto_core_updates', '__return_true' );
477
+ }
478
+ }
479
+
480
+ bpsPro_wp_automatic_updates_free();
481
+
482
+ // Add additional links on the BPS Must-Use plugins page
483
+ function bpsPro_mu_plugin_extra_links_free($links, $file) {
484
+ static $this_plugin;
485
+ //if ( ! current_user_can('install_plugins') )
486
+ //return $links;
487
+ if ( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
488
+ if ( $file == $this_plugin ) {
489
+ $links[] = '<a href="https://forum.ait-pro.com/forums/topic/wordpress-automatic-update-help-forum-topic-bps-must-use-plugin/" target="_blank" title="WordPress Automatic Update Help Forum Topic">' . __('WordPress Automatic Update Help Forum Topic', 'bulleproof-security').'</a>';
490
+ }
491
+
492
+ return $links;
493
+ }
494
+
495
+ add_filter( 'plugin_row_meta', 'bpsPro_mu_plugin_extra_links_free', 10, 2 )
496
+
497
  ?>
admin/htaccess/secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 4.1 SECURE .HTACCESS
2
 
3
  # PHP/PHP.INI HANDLER/CACHE CODE
4
  # Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
1
+ # BULLETPROOF 4.2 SECURE .HTACCESS
2
 
3
  # PHP/PHP.INI HANDLER/CACHE CODE
4
  # Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
admin/htaccess/wpadmin-secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 4.1 WP-ADMIN SECURE .HTACCESS
2
 
3
  # DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
4
  # RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
1
+ # BULLETPROOF 4.2 WP-ADMIN SECURE .HTACCESS
2
 
3
  # DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
4
  # RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
admin/includes/admin.php CHANGED
@@ -125,7 +125,7 @@ global $wpdb, $wp_version, $blog_id;
125
  }
126
  }
127
 
128
- // Whitelist BPS DB options: Total: 41
129
  register_setting('bulletproof_security_options', 'bulletproof_security_options', 'bulletproof_security_options_validate');
130
  register_setting('bulletproof_security_options_SLF', 'bulletproof_security_options_SLF', 'bulletproof_security_options_validate_SLF');
131
  register_setting('bulletproof_security_options_gdpr', 'bulletproof_security_options_gdpr', 'bulletproof_security_options_validate_gdpr');
@@ -146,6 +146,7 @@ register_setting('bulletproof_security_options_apache_modules', 'bulletproof_sec
146
  register_setting('bulletproof_security_options_hidden_plugins', 'bulletproof_security_options_hidden_plugins', 'bulletproof_security_options_validate_hidden_plugins');
147
  register_setting('bulletproof_security_options_sec_log_post_limit', 'bulletproof_security_options_sec_log_post_limit', 'bulletproof_security_options_validate_sec_log_post_limit');
148
  register_setting('bulletproof_security_options_login_security_jtc', 'bulletproof_security_options_login_security_jtc', 'bulletproof_security_options_validate_login_security_jtc');
 
149
  register_setting('bulletproof_security_options_wizard_autofix', 'bulletproof_security_options_wizard_autofix', 'bulletproof_security_options_validate_wizard_autofix');
150
  register_setting('bulletproof_security_options_status_display', 'bulletproof_security_options_status_display', 'bulletproof_security_options_validate_status_display');
151
  register_setting('bulletproof_security_options_login_security', 'bulletproof_security_options_login_security', 'bulletproof_security_options_validate_login_security');
@@ -377,8 +378,10 @@ if ( $bpsPro_SLF_options['bps_slf_filter'] == 'On' ) {
377
  }
378
 
379
  // Prevents other plugin and theme Styles from loading in BPS plugin pages
 
380
  // .53.8: Added Debug option
381
- // 3.5: Modified SLF filter code.
 
382
  function bpsPro_style_loader_filter($tag){
383
 
384
  if ( preg_match( '/page=bulletproof-security/', esc_html($_SERVER['REQUEST_URI']), $matches) ) {
@@ -388,13 +391,13 @@ function bpsPro_style_loader_filter($tag){
388
  $Debug_options = get_option('bulletproof_security_options_debug');
389
  $matches = '';
390
 
391
- if ( ! strpos( $tag, 'bulletproof-security' ) && ! strpos( $tag, 'wp-admin' ) && ! strpos( $tag, 'wp-includes' ) )
392
 
393
  unset($tag);
394
 
395
  if ( $Debug_options['bps_debug'] == 'On' ) {
396
 
397
- if ( preg_match( '/\/(plugins|themes)\/.*\.css/', $tag, $matches ) ) {
398
 
399
  echo $topDiv;
400
  echo '<font color="blue"><strong>'.__('BPS UI|UX Debug: SLF: CSS Script Loaded', 'bulletproof-security').'</strong></font><br>';
@@ -407,8 +410,10 @@ function bpsPro_style_loader_filter($tag){
407
  }
408
 
409
  // Prevents other plugin and theme Scripts from loading in BPS plugin pages
 
410
  // .53.8: Added Debug option
411
  // 3.5: Modified SLF filter code.
 
412
  function bpsPro_script_loader_filter($tag){
413
 
414
  if ( preg_match( '/page=bulletproof-security/', esc_html($_SERVER['REQUEST_URI']), $matches) ) {
@@ -418,13 +423,13 @@ function bpsPro_script_loader_filter($tag){
418
  $Debug_options = get_option('bulletproof_security_options_debug');
419
  $matches = '';
420
 
421
- if ( ! strpos( $tag, 'bulletproof-security' ) && ! strpos( $tag, 'wp-admin' ) && ! strpos( $tag, 'wp-includes' ) )
422
 
423
  unset($tag);
424
 
425
  if ( $Debug_options['bps_debug'] == 'On' ) {
426
 
427
- if ( preg_match( '/\/(plugins|themes)\/.*\.js/', $tag, $matches ) ) {
428
 
429
  echo $topDiv;
430
  echo '<font color="blue"><strong>'.__('BPS UI|UX Debug: SLF: js Script Loaded', 'bulletproof-security').'</strong></font><br>';
@@ -443,6 +448,7 @@ add_action( 'admin_enqueue_scripts', 'bpsPro_register_enqueue_scripts_styles' );
443
  // 2.3: Remove all version compare conditions for >= 3.8. Minimum WP version required is now WP 3.8.
444
  // 2.4: register and enqueue new BPS MScan AJAX script
445
  // 3.6: Encryption/Decryption added to evade/bypass the Mod Security CRS ruleset, which breaks numerous Forms throughout BPS.
 
446
  function bpsPro_register_enqueue_scripts_styles() {
447
  global $wp_scripts, $wp_styles, $bulletproof_security, $wp_version, $bps_version;
448
 
@@ -503,9 +509,9 @@ global $wp_scripts, $wp_styles, $bulletproof_security, $wp_version, $bps_version
503
  }
504
 
505
  // Dequeue any other plugin or theme scripts that should not be loading on BPS plugin pages
506
- $script_handles = array( 'bps-mscan-ajax', 'bps-tabs', 'bps-dialog', 'bps-accordion', 'bps-encryption', 'bps-crypto-js', 'admin-bar', 'jquery', 'jquery-ui-core', 'jquery-ui-tabs', 'jquery-ui-dialog', 'jquery-ui-widget', 'jquery-ui-mouse', 'jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position', 'jquery-ui-accordion', 'jquery-effects-core', 'jquery-effects-blind', 'jquery-effects-explode', 'common', 'utils', 'svg-painter', 'wp-auth-check', 'heartbeat', 'debug-bar' );
507
 
508
- $style_handles = array( 'bps-css', 'bps-css-38', 'admin-bar', 'colors', 'ie', 'wp-auth-check', 'debug-bar' );
509
 
510
  if ( $Debug_options['bps_debug'] == 'On' ) {
511
  echo '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
@@ -831,6 +837,7 @@ require_once( ABSPATH . 'wp-admin/includes/plugin.php');
831
  delete_option('bulletproof_security_options_vcheck');
832
  delete_option('bulletproof_security_options_gdpr');
833
  delete_option('bulletproof_security_options_mu_sysinfo');
 
834
  // will be adding this new upgrade notice option later
835
  // delete_option('bulletproof_security_options_upgrade_notice');
836
 
@@ -1231,6 +1238,9 @@ function bulletproof_security_options_validate_debug($input) {
1231
  return $options;
1232
  }
1233
 
 
 
 
1234
  // UI|UX AutoUpdate the BPS Plugin
1235
  function bulletproof_security_options_validate_autoupdate($input) {
1236
  $options = get_option('bulletproof_security_options_autoupdate');
@@ -1267,6 +1277,7 @@ function bulletproof_security_options_validate_zip_fix($input) {
1267
  return $options;
1268
  }
1269
 
 
1270
  // MU Tools: must-use file: bps-mu-tools.php
1271
  // timestamp to limit log writing and email alerts when the BPS plugin folder is renamed or deleted.
1272
  function bulletproof_security_options_validate_MU_tools_free($input) {
@@ -1401,4 +1412,18 @@ function bulletproof_security_options_validate_mu_sysinfo($input) {
1401
  return $options;
1402
  }
1403
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1404
  ?>
125
  }
126
  }
127
 
128
+ // Whitelist BPS DB options: Total: 42
129
  register_setting('bulletproof_security_options', 'bulletproof_security_options', 'bulletproof_security_options_validate');
130
  register_setting('bulletproof_security_options_SLF', 'bulletproof_security_options_SLF', 'bulletproof_security_options_validate_SLF');
131
  register_setting('bulletproof_security_options_gdpr', 'bulletproof_security_options_gdpr', 'bulletproof_security_options_validate_gdpr');
146
  register_setting('bulletproof_security_options_hidden_plugins', 'bulletproof_security_options_hidden_plugins', 'bulletproof_security_options_validate_hidden_plugins');
147
  register_setting('bulletproof_security_options_sec_log_post_limit', 'bulletproof_security_options_sec_log_post_limit', 'bulletproof_security_options_validate_sec_log_post_limit');
148
  register_setting('bulletproof_security_options_login_security_jtc', 'bulletproof_security_options_login_security_jtc', 'bulletproof_security_options_validate_login_security_jtc');
149
+ register_setting('bulletproof_security_options_mu_wp_autoupdate', 'bulletproof_security_options_mu_wp_autoupdate', 'bulletproof_security_options_validate_mu_wp_autoupdate');
150
  register_setting('bulletproof_security_options_wizard_autofix', 'bulletproof_security_options_wizard_autofix', 'bulletproof_security_options_validate_wizard_autofix');
151
  register_setting('bulletproof_security_options_status_display', 'bulletproof_security_options_status_display', 'bulletproof_security_options_validate_status_display');
152
  register_setting('bulletproof_security_options_login_security', 'bulletproof_security_options_login_security', 'bulletproof_security_options_validate_login_security');
378
  }
379
 
380
  // Prevents other plugin and theme Styles from loading in BPS plugin pages
381
+ // Notes: $tag is a string and not an array. This is a quick and dirty way to strip out all rogue styles/scripts + optimum performance.
382
  // .53.8: Added Debug option
383
+ // 3.5: Modified SLF filter code.
384
+ // 4.2: Whitelist the Query Monitor plugin js and CSS scripts in BPS plugin pages. script & style name: query-monitor.
385
  function bpsPro_style_loader_filter($tag){
386
 
387
  if ( preg_match( '/page=bulletproof-security/', esc_html($_SERVER['REQUEST_URI']), $matches) ) {
391
  $Debug_options = get_option('bulletproof_security_options_debug');
392
  $matches = '';
393
 
394
+ if ( ! strpos( $tag, 'bulletproof-security' ) && ! strpos( $tag, 'wp-admin' ) && ! strpos( $tag, 'wp-includes' ) && ! strpos( $tag, 'query-monitor' ) )
395
 
396
  unset($tag);
397
 
398
  if ( $Debug_options['bps_debug'] == 'On' ) {
399
 
400
+ if ( @preg_match( '/\/(plugins|themes)\/.*\.css/', $tag, $matches ) ) {
401
 
402
  echo $topDiv;
403
  echo '<font color="blue"><strong>'.__('BPS UI|UX Debug: SLF: CSS Script Loaded', 'bulletproof-security').'</strong></font><br>';
410
  }
411
 
412
  // Prevents other plugin and theme Scripts from loading in BPS plugin pages
413
+ // Notes: $tag is a string and not an array. This is a quick and dirty way to strip out all rogue styles/scripts + optimum performance.
414
  // .53.8: Added Debug option
415
  // 3.5: Modified SLF filter code.
416
+ // 4.2: Whitelist the Query Monitor plugin js and CSS scripts in BPS plugin pages. script & style name: query-monitor.
417
  function bpsPro_script_loader_filter($tag){
418
 
419
  if ( preg_match( '/page=bulletproof-security/', esc_html($_SERVER['REQUEST_URI']), $matches) ) {
423
  $Debug_options = get_option('bulletproof_security_options_debug');
424
  $matches = '';
425
 
426
+ if ( ! strpos( $tag, 'bulletproof-security' ) && ! strpos( $tag, 'wp-admin' ) && ! strpos( $tag, 'wp-includes' ) && ! strpos( $tag, 'query-monitor' ) )
427
 
428
  unset($tag);
429
 
430
  if ( $Debug_options['bps_debug'] == 'On' ) {
431
 
432
+ if ( @preg_match( '/\/(plugins|themes)\/.*\.js/', $tag, $matches ) ) {
433
 
434
  echo $topDiv;
435
  echo '<font color="blue"><strong>'.__('BPS UI|UX Debug: SLF: js Script Loaded', 'bulletproof-security').'</strong></font><br>';
448
  // 2.3: Remove all version compare conditions for >= 3.8. Minimum WP version required is now WP 3.8.
449
  // 2.4: register and enqueue new BPS MScan AJAX script
450
  // 3.6: Encryption/Decryption added to evade/bypass the Mod Security CRS ruleset, which breaks numerous Forms throughout BPS.
451
+ // 4.2: Whitelist the Query Monitor plugin js and CSS scripts in BPS plugin pages. script & style name: query-monitor.
452
  function bpsPro_register_enqueue_scripts_styles() {
453
  global $wp_scripts, $wp_styles, $bulletproof_security, $wp_version, $bps_version;
454
 
509
  }
510
 
511
  // Dequeue any other plugin or theme scripts that should not be loading on BPS plugin pages
512
+ $script_handles = array( 'bps-mscan-ajax', 'bps-tabs', 'bps-dialog', 'bps-accordion', 'bps-encryption', 'bps-crypto-js', 'admin-bar', 'jquery', 'jquery-ui-core', 'jquery-ui-tabs', 'jquery-ui-dialog', 'jquery-ui-widget', 'jquery-ui-mouse', 'jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position', 'jquery-ui-accordion', 'jquery-effects-core', 'jquery-effects-blind', 'jquery-effects-explode', 'common', 'utils', 'svg-painter', 'wp-auth-check', 'heartbeat', 'debug-bar', 'query-monitor' );
513
 
514
+ $style_handles = array( 'bps-css', 'bps-css-38', 'admin-bar', 'colors', 'ie', 'wp-auth-check', 'debug-bar', 'query-monitor' );
515
 
516
  if ( $Debug_options['bps_debug'] == 'On' ) {
517
  echo '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
837
  delete_option('bulletproof_security_options_vcheck');
838
  delete_option('bulletproof_security_options_gdpr');
839
  delete_option('bulletproof_security_options_mu_sysinfo');
840
+ delete_option('bulletproof_security_options_mu_wp_autoupdate');
841
  // will be adding this new upgrade notice option later
842
  // delete_option('bulletproof_security_options_upgrade_notice');
843
 
1238
  return $options;
1239
  }
1240
 
1241
+ // Pending Deletion: CAUTION: be sure to search all files for these options especially general-functions.php
1242
+ // 2.0: Removal: UI|UX Option: BPS Plugin AutoUpdate has been removed. BPS plugin Automatic Updates enable or disable is now handled directly in the BPS MU Tools must-use plugin.
1243
+ // 4.2: The BPS plugin AutoUpdate code has been removed from the MU Tools plugin. WP now handles Plugin auto-updates.
1244
  // UI|UX AutoUpdate the BPS Plugin
1245
  function bulletproof_security_options_validate_autoupdate($input) {
1246
  $options = get_option('bulletproof_security_options_autoupdate');
1277
  return $options;
1278
  }
1279
 
1280
+ // Pending Deletion: CAUTION: be sure to search all files for these options especially general-functions.php
1281
  // MU Tools: must-use file: bps-mu-tools.php
1282
  // timestamp to limit log writing and email alerts when the BPS plugin folder is renamed or deleted.
1283
  function bulletproof_security_options_validate_MU_tools_free($input) {
1412
  return $options;
1413
  }
1414
 
1415
+ // MU Tools: must-use file/plugin: bps-mu-tools.php
1416
+ // Enable|Disable WordPress Automatic Updates. Note: add_filter( 'automatic_updater_disabled', '__return_true' ); Disables all Automatic Updates: Core, Plugins and Themes.
1417
+ function bulletproof_security_options_validate_mu_wp_autoupdate($input) {
1418
+ $options = get_option('bulletproof_security_options_mu_wp_autoupdate');
1419
+ $options['bps_automatic_updater_disabled'] = wp_filter_nohtml_kses($input['bps_automatic_updater_disabled']);
1420
+ $options['bps_auto_update_core_updates_disabled'] = wp_filter_nohtml_kses($input['bps_auto_update_core_updates_disabled']);
1421
+ $options['bps_auto_update_core'] = wp_filter_nohtml_kses($input['bps_auto_update_core']);
1422
+ $options['bps_allow_dev_auto_core_updates'] = wp_filter_nohtml_kses($input['bps_allow_dev_auto_core_updates']);
1423
+ $options['bps_allow_minor_auto_core_updates'] = wp_filter_nohtml_kses($input['bps_allow_minor_auto_core_updates']);
1424
+ $options['bps_allow_major_auto_core_updates'] = wp_filter_nohtml_kses($input['bps_allow_major_auto_core_updates']);
1425
+
1426
+ return $options;
1427
+ }
1428
+
1429
  ?>
admin/login/login.php CHANGED
@@ -979,8 +979,11 @@ if ( ! current_user_can('manage_options') ) { _e('Permission Denied', 'bulletpro
979
 
980
  if ( $role_name != 'administrator' && $role_name != 'editor' && $role_name != 'author' && $role_name != 'contributor' && $role_name != 'subscriber' ) {
981
 
982
- echo "<input type=\"checkbox\" name=\"bps_jtc_custom_roles[$role_name]\" value=\"1\""; @checked( $BPSoptionsJTC['bps_jtc_custom_roles'][$role_name], 1 ); echo " /><label> ". $role_info['name'] ."</label>".'<br>';
983
-
 
 
 
984
  }
985
  }
986
  ?>
979
 
980
  if ( $role_name != 'administrator' && $role_name != 'editor' && $role_name != 'author' && $role_name != 'contributor' && $role_name != 'subscriber' ) {
981
 
982
+ echo "<input type=\"checkbox\" name=\"bps_jtc_custom_roles[$role_name]\" value=\"1\"";
983
+ if ( ! empty($BPSoptionsJTC['bps_jtc_custom_roles'][$role_name]) ) {
984
+ checked( $BPSoptionsJTC['bps_jtc_custom_roles'][$role_name], 1 );
985
+ }
986
+ echo " /><label> ". $role_info['name'] ."</label>".'<br>';
987
  }
988
  }
989
  ?>
admin/mscan/mscan.php CHANGED
@@ -120,7 +120,11 @@ function bpsPro_mscan_openbasedir_check() {
120
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-help_faq_table">
121
  <tr>
122
  <td class="bps-table_title">
123
- <?php $text = '<h2>'.__('MScan ~ ', 'bulletproof-security').'<span style="font-size:.75em;">'.__('Scans website files for hacker files or code ~ Scans the WP database for hacker code.', 'bulletproof-security').'</span></h2><div class="promo-text">'.__('Want even more security protection?', 'bulletproof-security').'<br>'.__('Get real-time automated security protection that is far superior to all malware scanners: ', 'bulletproof-security').'<a href="https://affiliates.ait-pro.com/po/" target="_blank" title="ARQ IDPS">'.__('Get BPS Pro ARQ IDPS', 'bulletproof-security').'</a></div>'; echo $text; ?>
 
 
 
 
124
  </td>
125
  </tr>
126
  <tr>
@@ -352,7 +356,13 @@ global $bps_topDiv, $bps_bottomDiv;
352
  echo $bps_bottomDiv;
353
  }
354
 
355
- if ( @$_POST['Submit-MScan-Start'] != true && $MScan_status['bps_mscan_status'] == '3' ) {
 
 
 
 
 
 
356
 
357
  $suspect_files_message = '';
358
  $suspect_db_message = '';
@@ -993,11 +1003,11 @@ bpsPro_save_mscan_options();
993
  $max_time_limit = ( isset( $_POST['mscan_max_time_limit'] ) ) ? $_POST['mscan_max_time_limit'] : '300';
994
 
995
  echo '<label for="bps-mscan-label" style="padding-right:5px">'.__('Max File Size Limit to Scan:', 'bulletproof-security').'</label>';
996
- echo '<input type="text" name="mscan_max_file_size" class="regular-text-50-fixed" style="margin-bottom:5px" value="'; if ( @preg_match( '/\d/', $_POST['mscan_max_file_size'] ) ) { echo esc_html($max_file_size); } else { echo esc_html(trim(stripslashes($max_file_size))); } echo '" /> KB';
997
  echo '<br>';
998
 
999
  echo '<label for="bps-mscan-label" style="padding-right:23px">'.__('Max Time Limit to Scan:', 'bulletproof-security').'</label>';
1000
- echo '<input type="text" name="mscan_max_time_limit" class="regular-text-50-fixed" style="margin-bottom:5px" value="'; if ( @preg_match( '/\d/', $_POST['mscan_max_time_limit'] ) ) { echo esc_html($max_time_limit); } else { echo esc_html(trim(stripslashes($max_time_limit))); } echo '" /> Seconds';
1001
  echo '<br>';
1002
 
1003
  echo '<label for="bps-mscan-label" style="">'.__('Exclude Individual Folders', 'bulletproof-security').'</label><strong><font color="black"><span class="tooltip-350-120"><img src="'.plugins_url('/bulletproof-security/admin/images/question-mark.png').'" style="position:relative;top:3px;left:10px;" /><span>'.__('Enter one folder path per line. Include folder slashes.', 'bulletproof-security').'<br>'.__('Example:', 'bulletproof-security').'<br>/parent-folder-1/child-folder-1/<br>/parent-folder-2/child-folder-2/<br><br>'.__('Click the MScan Read Me help button for more help info.', 'bulletproof-security').'</span></span></font></strong><br>';
120
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="bps-help_faq_table">
121
  <tr>
122
  <td class="bps-table_title">
123
+ <?php $text = '<h2>'.__('MScan ~ ', 'bulletproof-security').'<span style="font-size:.75em;">'.__('Scans website files for hacker files or code ~ Scans the WP database for hacker code.', 'bulletproof-security').'</span></h2><div class="promo-text">'.__('Want even more security protection?', 'bulletproof-security').'<br>'.__('Get real-time automated security protection that is far superior to all malware scanners: ', 'bulletproof-security').'<a href="https://affiliates.ait-pro.com/po/" target="_blank" title="ARQ IDPS">'.__('Get BPS Pro ARQ IDPS', 'bulletproof-security').'</a></div>'; echo $text;
124
+
125
+ $text2 = '<div style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:0px 5px;margin:0px 10px 10px 0px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="blue">'.__('MScan Disclaimer:', 'bulletproof-security').'</font><br>'.__('MScan is a very sensitive scanner that will detect hacker\'s code and files that other WordPress malware scanners will not detect, but unfortunately that also means that MScan will detect a lot of false-positives. The majority of things that MScan detects as suspicious are not going to be hacker\'s code or files and can be ignored using the Ignore File or Ignore DB Entry in the View|Ignore|Delete Suspicious Files and View|Ignore Suspicious DB Entries Forms below. For additional help information click this link: ', 'bulletproof-security').' <a href="https://forum.ait-pro.com/forums/topic/mscan-malware-scanner-guide/" target="_blank" title="MScan Malware Scanner Guide">'.__('MScan Malware Scanner Guide', 'bulletproof-security').'</a></div>';
126
+ echo $text2;
127
+ ?>
128
  </td>
129
  </tr>
130
  <tr>
356
  echo $bps_bottomDiv;
357
  }
358
 
359
+ if ( isset ( $_POST['Submit-MScan-Start'] ) ) {
360
+ $_POST['Submit-MScan-Start'] = true;
361
+ } else {
362
+ $_POST['Submit-MScan-Start'] = null;
363
+ }
364
+
365
+ if ( $_POST['Submit-MScan-Start'] != true && $MScan_status['bps_mscan_status'] == '3' ) {
366
 
367
  $suspect_files_message = '';
368
  $suspect_db_message = '';
1003
  $max_time_limit = ( isset( $_POST['mscan_max_time_limit'] ) ) ? $_POST['mscan_max_time_limit'] : '300';
1004
 
1005
  echo '<label for="bps-mscan-label" style="padding-right:5px">'.__('Max File Size Limit to Scan:', 'bulletproof-security').'</label>';
1006
+ echo '<input type="text" name="mscan_max_file_size" class="regular-text-50-fixed" style="margin-bottom:5px" value="'; if ( isset( $_POST['mscan_max_file_size'] ) && preg_match( '/\d/', $_POST['mscan_max_file_size'] ) ) { echo esc_html($max_file_size); } else { echo esc_html(trim(stripslashes($max_file_size))); } echo '" /> KB';
1007
  echo '<br>';
1008
 
1009
  echo '<label for="bps-mscan-label" style="padding-right:23px">'.__('Max Time Limit to Scan:', 'bulletproof-security').'</label>';
1010
+ echo '<input type="text" name="mscan_max_time_limit" class="regular-text-50-fixed" style="margin-bottom:5px" value="'; if ( isset( $_POST['mscan_max_time_limit'] ) && preg_match( '/\d/', $_POST['mscan_max_time_limit'] ) ) { echo esc_html($max_time_limit); } else { echo esc_html(trim(stripslashes($max_time_limit))); } echo '" /> Seconds';
1011
  echo '<br>';
1012
 
1013
  echo '<label for="bps-mscan-label" style="">'.__('Exclude Individual Folders', 'bulletproof-security').'</label><strong><font color="black"><span class="tooltip-350-120"><img src="'.plugins_url('/bulletproof-security/admin/images/question-mark.png').'" style="position:relative;top:3px;left:10px;" /><span>'.__('Enter one folder path per line. Include folder slashes.', 'bulletproof-security').'<br>'.__('Example:', 'bulletproof-security').'<br>/parent-folder-1/child-folder-1/<br>/parent-folder-2/child-folder-2/<br><br>'.__('Click the MScan Read Me help button for more help info.', 'bulletproof-security').'</span></span></font></strong><br>';
admin/security-log/security-log.php CHANGED
@@ -742,7 +742,13 @@ function bps_get_security_log() {
742
  // Form - Security Log - Perform File Open and Write test - If append write test is successful write to file
743
  function bpsPro_security_log_write_check() {
744
 
745
- if ( @$_POST['submit-security-log'] != true ) {
 
 
 
 
 
 
746
 
747
  $bps_sec_log = WP_CONTENT_DIR . '/bps-backup/logs/http_error_log.txt';
748
 
742
  // Form - Security Log - Perform File Open and Write test - If append write test is successful write to file
743
  function bpsPro_security_log_write_check() {
744
 
745
+ if ( isset ( $_POST['submit-security-log'] ) ) {
746
+ $_POST['submit-security-log'] = true;
747
+ } else {
748
+ $_POST['submit-security-log'] = null;
749
+ }
750
+
751
+ if ( $_POST['submit-security-log'] != true ) {
752
 
753
  $bps_sec_log = WP_CONTENT_DIR . '/bps-backup/logs/http_error_log.txt';
754
 
admin/system-info/system-info.php CHANGED
@@ -147,7 +147,17 @@ if ( is_admin() && wp_script_is( 'bps-accordion', $list = 'queue' ) && current_u
147
  $label_2 = preg_match( '/(([a-zA-Z0-9-])+\.){2}([a-zA-Z0-9-])+$/', $bpsHostName, $matches_2 );
148
  $label_3 = preg_match( '/(([a-zA-Z0-9-])+\.){3}([a-zA-Z0-9-])+$/', $bpsHostName, $matches_3 );
149
 
150
- @$domain_labels = array( $matches_1[0], $matches_2[0], $matches_3[0] );
 
 
 
 
 
 
 
 
 
 
151
  $labels = array_filter( $domain_labels, 'strlen' );
152
 
153
  foreach ( $labels as $domain ) {
@@ -165,6 +175,8 @@ if ( is_admin() && wp_script_is( 'bps-accordion', $list = 'queue' ) && current_u
165
 
166
  if ( empty( $bpsTargetNS ) ) {
167
 
 
 
168
  @dns_get_record( $domain, DNS_ALL, $authns, $addtl );
169
 
170
  if ( empty( $authns[0]['target'] ) ) {
@@ -444,10 +456,8 @@ function bpsPro_count_network_activated_plugins($count) {
444
  if ( extension_loaded('suhosin') ) {
445
  _e('Suhosin-Extension is Loaded', 'bulletproof-security');
446
  } else {
447
- if ( ! isset( $bpsconstants['SUHOSIN_PATCH'] ) && @$bpsconstants['SUHOSIN_PATCH'] != 1 && ! extension_loaded('suhosin') ) {
448
  _e('Suhosin is Not Installed|Loaded', 'bulletproof-security');
449
  }
450
- }
451
  echo '<br>';
452
  echo '<strong><span class="sysinfo-label-text">'.__('APC', 'bulletproof-security').':</span></strong> ';
453
  if ( extension_loaded('apc') && ini_get('apc.enabled') == 1 || ini_get('apc.enabled') == 'On' ) {
@@ -688,10 +698,10 @@ function bpsPro_count_network_activated_plugins($count) {
688
  echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="green">'.$memoryLimitM.'</font></strong><br>';
689
  break;
690
  case $memoryLimit >= '65' && $memoryLimit < '128':
691
- echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="black">'.$memoryLimitM.__(' Recommendation: Increase Memory Limit to 128M.', 'bulletproof-security').'</font></strong><br>';
692
  break;
693
  case $memoryLimit > '0' && $memoryLimit <= '64':
694
- echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="#fb0101">'.$memoryLimitM.__(' Recommendation: Increase Memory Limit to 128M.', 'bulletproof-security').'</font></strong><br>';
695
  break;
696
  }
697
  }
147
  $label_2 = preg_match( '/(([a-zA-Z0-9-])+\.){2}([a-zA-Z0-9-])+$/', $bpsHostName, $matches_2 );
148
  $label_3 = preg_match( '/(([a-zA-Z0-9-])+\.){3}([a-zA-Z0-9-])+$/', $bpsHostName, $matches_3 );
149
 
150
+ if ( ! empty($matches_1) ) {
151
+ $domain_labels = array( $matches_1[0] );
152
+ }
153
+ if ( ! empty($matches_2) ) {
154
+ $domain_labels = array( $matches_2[0] );
155
+ }
156
+ if ( ! empty($matches_3) ) {
157
+ $domain_labels = array( $matches_3[0] );
158
+ }
159
+
160
+ //@$domain_labels = array( $matches_1[0], $matches_2[0], $matches_3[0] );
161
  $labels = array_filter( $domain_labels, 'strlen' );
162
 
163
  foreach ( $labels as $domain ) {
175
 
176
  if ( empty( $bpsTargetNS ) ) {
177
 
178
+ // Note: Known Issue: This Warning error only occurs on XAMPP/Windows when using DNS_ALL: dns_get_record(): Type '251721779' not supported
179
+ // DNS_ANY works fine on Windows/XAMPP
180
  @dns_get_record( $domain, DNS_ALL, $authns, $addtl );
181
 
182
  if ( empty( $authns[0]['target'] ) ) {
456
  if ( extension_loaded('suhosin') ) {
457
  _e('Suhosin-Extension is Loaded', 'bulletproof-security');
458
  } else {
 
459
  _e('Suhosin is Not Installed|Loaded', 'bulletproof-security');
460
  }
 
461
  echo '<br>';
462
  echo '<strong><span class="sysinfo-label-text">'.__('APC', 'bulletproof-security').':</span></strong> ';
463
  if ( extension_loaded('apc') && ini_get('apc.enabled') == 1 || ini_get('apc.enabled') == 'On' ) {
698
  echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="green">'.$memoryLimitM.'</font></strong><br>';
699
  break;
700
  case $memoryLimit >= '65' && $memoryLimit < '128':
701
+ echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="black">'.$memoryLimitM.__(' Recommendation: Increase Memory Limit to at least 128M, 256M is even better.', 'bulletproof-security').'</font></strong><br>';
702
  break;
703
  case $memoryLimit > '0' && $memoryLimit <= '64':
704
+ echo '<strong><span class="sysinfo-label-text">'.__('PHP Actual Configuration Memory Limit: ', 'bulletproof-security').'</span><font color="#fb0101">'.$memoryLimitM.__(' Recommendation: Increase Memory Limit to at least 128M, 256M is even better.', 'bulletproof-security').'</font></strong><br>';
705
  break;
706
  }
707
  }
admin/theme-skin/theme-skin.php CHANGED
@@ -176,17 +176,46 @@ $bps_bottomDiv = '</p></div>';
176
  <input type="submit" name="Submit-UI-WP-Toolbar" class="button bps-button" style="margin:10px 0px 10px 0px;" value="<?php esc_attr_e('Save Option', 'bulletproof-security') ?>" />
177
  </form>
178
 
179
- <form name="script-loader-filter-form" action="options.php" method="post">
180
- <?php settings_fields('bulletproof_security_options_SLF'); ?>
181
- <?php $bpsPro_SLF_options = get_option('bulletproof_security_options_SLF'); ?>
 
182
 
183
- <label for="UI-UX-label"><?php _e('Script|Style Loader Filter (SLF) In BPS Plugin Pages:', 'bulletproof-security'); ?></label><br />
184
- <label for="UI-UX-label" style="color:#2ea2cc;"><?php _e('Click the Read Me help button for information', 'bulletproof-security'); ?></label><br />
185
- <select name="bulletproof_security_options_SLF[bps_slf_filter]" class="form-250">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  <option value="On" <?php selected('On', $bpsPro_SLF_options['bps_slf_filter']); ?>><?php _e('SLF On', 'bulletproof-security'); ?></option>
187
  <option value="Off" <?php selected('Off', $bpsPro_SLF_options['bps_slf_filter']); ?>><?php _e('SLF Off', 'bulletproof-security'); ?></option>
188
  </select>
189
- <input type="submit" name="Submit-SLF" class="button bps-button" style="margin:10px 0px 10px 0px;" value="<?php esc_attr_e('Save Option', 'bulletproof-security') ?>" />
 
190
  </form>
191
 
192
  <form name="bps-debug" action="options.php" method="post">
176
  <input type="submit" name="Submit-UI-WP-Toolbar" class="button bps-button" style="margin:10px 0px 10px 0px;" value="<?php esc_attr_e('Save Option', 'bulletproof-security') ?>" />
177
  </form>
178
 
179
+ <?php
180
+ // SLF Values Form
181
+ function bpsPro_slf_values_form() {
182
+ global $bps_topDiv, $bps_bottomDiv;
183
 
184
+ if ( isset( $_POST['bpsSLFSubmit'] ) && current_user_can('manage_options') ) {
185
+ check_admin_referer( 'bpsSLFValues' );
186
+
187
+ $BPS_SLF_Options = array(
188
+ 'bps_slf_filter' => $_POST['bps_slf_filter'],
189
+ 'bps_slf_filter_new' => $_POST['bps_slf_filter_new']
190
+ );
191
+
192
+ foreach( $BPS_SLF_Options as $key => $value ) {
193
+ update_option('bulletproof_security_options_SLF', $BPS_SLF_Options);
194
+ }
195
+
196
+ echo $bps_topDiv;
197
+ $text = '<font color="green"><strong>'.__('SLF Option settings saved', 'bulletproof-security').'</strong></font>';
198
+ echo $text;
199
+ echo $bps_bottomDiv;
200
+ }
201
+ }
202
+ ?>
203
+
204
+ <form name="script_loader_filter_form" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/theme-skin/theme-skin.php' ); ?>" method="post">
205
+ <?php
206
+ wp_nonce_field('bpsSLFValues');
207
+ bpsPro_slf_values_form();
208
+ $bpsPro_SLF_options = get_option('bulletproof_security_options_SLF');
209
+ ?>
210
+
211
+ <label for="SLF"><?php _e('Script|Style Loader Filter (SLF) In BPS Plugin Pages:', 'bulletproof-security'); ?></label><br />
212
+ <label for="SLF" style="color:#2ea2cc;"><?php _e('Click the Read Me help button for information', 'bulletproof-security'); ?></label><br />
213
+ <select name="bps_slf_filter" class="form-250">
214
  <option value="On" <?php selected('On', $bpsPro_SLF_options['bps_slf_filter']); ?>><?php _e('SLF On', 'bulletproof-security'); ?></option>
215
  <option value="Off" <?php selected('Off', $bpsPro_SLF_options['bps_slf_filter']); ?>><?php _e('SLF Off', 'bulletproof-security'); ?></option>
216
  </select>
217
+ <input type="hidden" name="bps_slf_filter_new" value="14" />
218
+ <input type="submit" name="bpsSLFSubmit" class="button bps-button" style="margin:10px 0px 10px 0px;" value="<?php esc_attr_e('Save Option', 'bulletproof-security') ?>" />
219
  </form>
220
 
221
  <form name="bps-debug" action="options.php" method="post">
admin/wizard/wizard.php CHANGED
@@ -250,7 +250,7 @@ switch ( $memoryLimit ) {
250
  echo $successTextBegin.__('Pass! PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M'.$successTextEnd;
251
  break;
252
  case $memoryLimit >= '64' && $memoryLimit < '128':
253
- echo $successTextBegin.__('Pass! PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M. '.__('It is recommended that you increase your memory limit to at least 128M. Contact your Web Host and ask them to increase your memory limit to the maximum memory limit setting allowed by your Host.', 'bulletproof-security').$successTextEnd;
254
  break;
255
  case $memoryLimit > '0' && $memoryLimit < '64':
256
  echo '<br>'.$failTextBegin.__('Error: Your PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M. '.__('WordPress needs a bare minimum Memory Limit setting of 64M to perform well. Contact your Web Host and ask them to increase your memory limit to the maximum memory limit setting allowed by your Host.', 'bulletproof-security').$failTextEnd.'<br>';
250
  echo $successTextBegin.__('Pass! PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M'.$successTextEnd;
251
  break;
252
  case $memoryLimit >= '64' && $memoryLimit < '128':
253
+ echo $successTextBegin.__('Pass! PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M. '.__('It is recommended that you increase your memory limit to at least 128M, 256M is even better. Contact your Web Host and ask them to increase your memory limit to the maximum memory limit setting allowed by your Host.', 'bulletproof-security').$successTextEnd;
254
  break;
255
  case $memoryLimit > '0' && $memoryLimit < '64':
256
  echo '<br>'.$failTextBegin.__('Error: Your PHP Configuration Memory Limit is set to: ', 'bulletproof-security').$memoryLimit.'M. '.__('WordPress needs a bare minimum Memory Limit setting of 64M to perform well. Contact your Web Host and ask them to increase your memory limit to the maximum memory limit setting allowed by your Host.', 'bulletproof-security').$failTextEnd.'<br>';
bulletproof-security.php CHANGED
@@ -4,8 +4,8 @@ Plugin Name: BulletProof Security
4
  Plugin URI: https://forum.ait-pro.com/read-me-first/
5
  Text Domain: bulletproof-security
6
  Domain Path: /languages/
7
- Description: <strong>Feature Highlights:</strong> Setup Wizard &bull; MScan Malware Scanner &bull; .htaccess Website Security Protection (Firewalls) &bull; Security Logging|HTTP Error Logging &bull; DB Backup &bull; DB Table Prefix Changer &bull; Login Security & Monitoring &bull; JTC-Lite Login Form Bot Lockout Protection &bull; Idle Session Logout (ISL) &bull; Auth Cookie Expiration (ACE) &bull; UI Theme Skin Changer &bull; System Info: Extensive System, Server and Security Status Information &bull; FrontEnd|BackEnd Maintenance Mode
8
- Version: 4.1
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
@@ -33,9 +33,9 @@ Author URI: https://forum.ait-pro.com/read-me-first/
33
  // and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
34
  global $bps_last_version, $bps_version, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir;
35
 
36
- define( 'BULLETPROOF_VERSION', '4.1' );
37
- $bps_last_version = '4.0';
38
- $bps_version = '4.1';
39
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
40
  // Top div & bottom div
41
  $bps_topDiv = '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
@@ -46,13 +46,28 @@ $bps_plugin_dir = str_replace( ABSPATH, '', WP_PLUGIN_DIR );
46
  // Setup Wizard Options: GDPR Compliance Global Variables
47
  $GDPR_Options = get_option('bulletproof_security_options_gdpr');
48
 
49
- if ( @$GDPR_Options['bps_gdpr_on_off'] != 'On' ) {
50
 
51
- $bpsPro_remote_addr = @$_SERVER['REMOTE_ADDR'];
52
- $bpsPro_http_client_ip = @$_SERVER['HTTP_CLIENT_IP'];
53
- $bpsPro_http_forwarded = @$_SERVER['HTTP_FORWARDED'];
54
- $bpsPro_http_x_forwarded_for = @$_SERVER['HTTP_X_FORWARDED_FOR'];
55
- $bpsPro_http_x_cluster_client_ip = @$_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  } else {
58
 
@@ -95,7 +110,7 @@ require_once( WP_PLUGIN_DIR . '/bulletproof-security/includes/db-security.php' )
95
  require_once( WP_PLUGIN_DIR . '/bulletproof-security/includes/hidden-plugin-folders-cron.php' );
96
  // Idle Session Logout (ISL)
97
  $BPS_ISL_options = get_option('bulletproof_security_options_idle_session');
98
- if ( @$BPS_ISL_options['bps_isl'] == 'On' ) {
99
  require_once( WP_PLUGIN_DIR . '/bulletproof-security/includes/idle-session-logout.php' );
100
  }
101
  // PHP Encryption|Decryption class using openssl_decrypt() and openssl_encrypt()
4
  Plugin URI: https://forum.ait-pro.com/read-me-first/
5
  Text Domain: bulletproof-security
6
  Domain Path: /languages/
7
+ Description: <strong>Feature Highlights:</strong> Setup Wizard &bull; MScan Malware Scanner &bull; .htaccess Website Security Protection (Firewalls) &bull; Security Logging|HTTP Error Logging &bull; DB Backup &bull; DB Table Prefix Changer &bull; Login Security & Monitoring &bull; JTC-Lite Login Form Bot Lockout Protection &bull; Idle Session Logout (ISL) &bull; Auth Cookie Expiration (ACE) &bull; UI Theme Skin Changer &bull; System Info: Extensive System, Server and Security Status Information &bull; FrontEnd|BackEnd Maintenance Mode &bull; WP Automatic Update Options (BPS MU Tools must-use plugin)
8
+ Version: 4.2
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
33
  // and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
34
  global $bps_last_version, $bps_version, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir;
35
 
36
+ define( 'BULLETPROOF_VERSION', '4.2' );
37
+ $bps_last_version = '4.1';
38
+ $bps_version = '4.2';
39
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
40
  // Top div & bottom div
41
  $bps_topDiv = '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
46
  // Setup Wizard Options: GDPR Compliance Global Variables
47
  $GDPR_Options = get_option('bulletproof_security_options_gdpr');
48
 
49
+ if ( isset( $GDPR_Options['bps_gdpr_on_off'] ) && $GDPR_Options['bps_gdpr_on_off'] != 'On' ) {
50
 
51
+ $bpsPro_remote_addr = false;
52
+ if ( array_key_exists('REMOTE_ADDR', $_SERVER) ) {
53
+ $bpsPro_remote_addr = $_SERVER['REMOTE_ADDR'];
54
+ }
55
+ $bpsPro_http_client_ip = false;
56
+ if ( array_key_exists('HTTP_CLIENT_IP', $_SERVER) ) {
57
+ $bpsPro_http_client_ip = $_SERVER['HTTP_CLIENT_IP'];
58
+ }
59
+ $bpsPro_http_forwarded = false;
60
+ if ( array_key_exists('HTTP_FORWARDED', $_SERVER) ) {
61
+ $bpsPro_http_forwarded = $_SERVER['HTTP_FORWARDED'];
62
+ }
63
+ $bpsPro_http_x_forwarded_for = false;
64
+ if ( array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER) ) {
65
+ $bpsPro_http_x_forwarded_for = $_SERVER['HTTP_X_FORWARDED_FOR'];
66
+ }
67
+ $bpsPro_http_x_cluster_client_ip = false;
68
+ if ( array_key_exists('HTTP_X_CLUSTER_CLIENT_IP', $_SERVER) ) {
69
+ $bpsPro_http_x_cluster_client_ip = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
70
+ }
71
 
72
  } else {
73
 
110
  require_once( WP_PLUGIN_DIR . '/bulletproof-security/includes/hidden-plugin-folders-cron.php' );
111
  // Idle Session Logout (ISL)
112
  $BPS_ISL_options = get_option('bulletproof_security_options_idle_session');
113
+ if ( isset( $BPS_ISL_options['bps_isl'] ) && $BPS_ISL_options['bps_isl'] == 'On' ) {
114
  require_once( WP_PLUGIN_DIR . '/bulletproof-security/includes/idle-session-logout.php' );
115
  }
116
  // PHP Encryption|Decryption class using openssl_decrypt() and openssl_encrypt()
includes/general-functions.php CHANGED
@@ -495,7 +495,7 @@ function bpsPro_htaccess_manual_update_notice() {
495
  global $pagenow;
496
 
497
  // manual steps if version of BPS root htaccess file is very old
498
- if ( 'plugins.php' == $pagenow || @preg_match( '/page=bulletproof-security\/admin\/core\/core\.php/', esc_html( $_SERVER['REQUEST_URI'], $matches ) ) ) {
499
 
500
  $pos = strpos( $check_string, 'IMPORTANT!!! DO NOT DELETE!!! - B E G I N Wordpress' );
501
 
@@ -890,8 +890,9 @@ function bpsPro_mu_tools_plugin_copy() {
890
  $pos1 = strpos( $check_string, 'Version: 1.0' );
891
  $pos2 = strpos( $check_string, 'Version: 2.0' );
892
  $pos3 = strpos( $check_string, 'Version: 3.0' );
893
-
894
- if ( $pos1 !== false || $pos2 !== false || $pos3 !== false ) {
 
895
  @copy($BPS_MU_tools, $BPS_MU_tools_copy);
896
  }
897
  }
495
  global $pagenow;
496
 
497
  // manual steps if version of BPS root htaccess file is very old
498
+ if ( 'plugins.php' == $pagenow || preg_match( '/page=bulletproof-security\/admin\/core\/core\.php/', esc_html( $_SERVER['REQUEST_URI'] ) ) ) {
499
 
500
  $pos = strpos( $check_string, 'IMPORTANT!!! DO NOT DELETE!!! - B E G I N Wordpress' );
501
 
890
  $pos1 = strpos( $check_string, 'Version: 1.0' );
891
  $pos2 = strpos( $check_string, 'Version: 2.0' );
892
  $pos3 = strpos( $check_string, 'Version: 3.0' );
893
+ $pos4 = strpos( $check_string, 'Version: 4.0' );
894
+
895
+ if ( $pos1 !== false || $pos2 !== false || $pos3 !== false || $pos4 !== false ) {
896
  @copy($BPS_MU_tools, $BPS_MU_tools_copy);
897
  }
898
  }
includes/hud-autofix-setup.php CHANGED
@@ -33,7 +33,7 @@ function bpsPro_EPC_plugin_check() {
33
  return;
34
  }
35
 
36
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
37
  return;
38
  }
39
 
@@ -92,7 +92,7 @@ function bpsPro_w3tc_htaccess_check($w3tc_plugin) {
92
  return;
93
  }
94
 
95
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
96
  return;
97
  }
98
 
@@ -156,7 +156,7 @@ function bpsPro_wpsc_htaccess_check($wpsc_plugin) {
156
  return;
157
  }
158
 
159
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
160
  return;
161
  }
162
 
@@ -222,7 +222,7 @@ function bpsPro_comet_cache_htaccess_check() {
222
  return;
223
  }
224
 
225
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
226
  return;
227
  }
228
 
@@ -291,7 +291,7 @@ function bpsPro_wpfc_htaccess_check() {
291
  return;
292
  }
293
 
294
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
295
  return;
296
  }
297
 
@@ -356,7 +356,7 @@ function bpsPro_wp_rocket_htaccess_check() {
356
  return;
357
  }
358
 
359
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
360
  return;
361
  }
362
 
33
  return;
34
  }
35
 
36
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
37
  return;
38
  }
39
 
92
  return;
93
  }
94
 
95
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
96
  return;
97
  }
98
 
156
  return;
157
  }
158
 
159
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
160
  return;
161
  }
162
 
222
  return;
223
  }
224
 
225
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
226
  return;
227
  }
228
 
291
  return;
292
  }
293
 
294
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
295
  return;
296
  }
297
 
356
  return;
357
  }
358
 
359
+ if ( isset ( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
360
  return;
361
  }
362
 
includes/hud-autofix-whitelist.php CHANGED
@@ -38,7 +38,7 @@ function bpsPro_HUD_autofix_whitelist_check() {
38
  return;
39
  }
40
 
41
- if ( @$_POST['Submit-Setup-Wizard'] == true ) {
42
  return;
43
  }
44
 
38
  return;
39
  }
40
 
41
+ if ( isset( $_POST['Submit-Setup-Wizard'] ) && $_POST['Submit-Setup-Wizard'] == true ) {
42
  return;
43
  }
44
 
includes/hud-dismiss-functions.php CHANGED
@@ -31,6 +31,7 @@ function bps_HUD_WP_Dashboard() {
31
  //bpsPro_hud_mod_security_check();
32
  bpsPro_hud_gdpr_compliance();
33
  //bps_hud_check_public_username();
 
34
  }
35
  }
36
  add_action('admin_notices', 'bps_HUD_WP_Dashboard');
@@ -559,7 +560,7 @@ function bpsPro_hud_speed_boost_cache_code() {
559
  return;
560
  }
561
 
562
- if ( @$_POST['bps_customcode_submit'] == true ) {
563
  return;
564
  }
565
 
@@ -843,4 +844,59 @@ $user_id = $current_user->ID;
843
  }
844
  }
845
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  ?>
31
  //bpsPro_hud_mod_security_check();
32
  bpsPro_hud_gdpr_compliance();
33
  //bps_hud_check_public_username();
34
+ bpsPro_mu_wp_automatic_updates_notice();
35
  }
36
  }
37
  add_action('admin_notices', 'bps_HUD_WP_Dashboard');
560
  return;
561
  }
562
 
563
+ if ( isset ( $_POST['bps_customcode_submit'] ) && $_POST['bps_customcode_submit'] == true ) {
564
  return;
565
  }
566
 
844
  }
845
  }
846
 
847
+ // Heads Up Display w/ Dismiss Notice: If someone has enabled any of the BPS Pro MU Tools WP Automatic Update options check the wp-config.php file for redundant constants.
848
+ function bpsPro_mu_wp_automatic_updates_notice() {
849
+
850
+ if ( ! get_option('bulletproof_security_options_mu_wp_autoupdate') ) {
851
+ return;
852
+ }
853
+
854
+ $wpconfig_file = ABSPATH . 'wp-config.php';
855
+
856
+ // If someone has moved their wp-config.php file exit.
857
+ if ( ! file_exists( $wpconfig_file ) ) {
858
+ return;
859
+ }
860
+
861
+ if ( file_exists($wpconfig_file) ) {
862
+
863
+ $file_contents = @file_get_contents($wpconfig_file);
864
+ $wp_auto_update_options = get_option('bulletproof_security_options_mu_wp_autoupdate');
865
+
866
+ if ( $wp_auto_update_options['bps_automatic_updater_disabled'] == 'enabled' || $wp_auto_update_options['bps_auto_update_core_updates_disabled'] == 'enabled' || $wp_auto_update_options['bps_auto_update_core'] == 'enabled' || $wp_auto_update_options['bps_allow_dev_auto_core_updates'] == 'enabled' || $wp_auto_update_options['bps_allow_minor_auto_core_updates'] == 'enabled' || $wp_auto_update_options['bps_allow_major_auto_core_updates'] == 'enabled' ) {
867
+
868
+ if ( preg_match( '/(WP_AUTO_UPDATE_CORE|AUTOMATIC_UPDATER_DISABLED)/', $file_contents ) ) {
869
+
870
+ global $current_user;
871
+ $user_id = $current_user->ID;
872
+
873
+ if ( ! get_user_meta($user_id, 'bpsPro_ignore_mu_wp_automatic_updates_notice') ) {
874
+
875
+ if ( esc_html($_SERVER['QUERY_STRING']) == '' && basename(esc_html($_SERVER['REQUEST_URI'])) != 'wp-admin' ) {
876
+ $bps_base = basename(esc_html($_SERVER['REQUEST_URI'])) . '?';
877
+ } elseif ( esc_html($_SERVER['QUERY_STRING']) == '' && basename(esc_html($_SERVER['REQUEST_URI'])) == 'wp-admin' ) {
878
+ $bps_base = basename( str_replace( 'wp-admin', 'index.php?', esc_html($_SERVER['REQUEST_URI'])));
879
+ } else {
880
+ $bps_base = str_replace( admin_url(), '', esc_html($_SERVER['REQUEST_URI']) ) . '&';
881
+ }
882
+
883
+ $text = '<div class="update-nag" style="background-color:#dfecf2;border:1px solid #999;font-size:1em;font-weight:600;padding:2px 5px;margin-top:2px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><font color="blue">'.__('BPS wp-config.php file WP Automatic Update constants detected', 'bulletproof-security').'</font><br>'.__('You are using the BPS MU Tools plugin option settings to handle WP Automatic Updates. BPS detected that you are also using one or both of these WP Automatic Update constants in your wp-config.php file: WP_AUTO_UPDATE_CORE and/or AUTOMATIC_UPDATER_DISABLED. Either comment out these constants in your wp-config.php file or delete these constants. If you choose to comment out these constants instead of deleting them then dismiss this Dismiss Notice after you have commented them out.', 'bulletproof-security').'<br>'.__('To Dismiss this Notice click the Dismiss Notice button below. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the BPS Custom Code page.', 'bulletproof-security').'<br><div style="float:left;margin:3px 0px 3px 0px;padding:2px 6px 2px 6px;background-color:#e8e8e8;border:1px solid gray;"><a href="'.$bps_base.'bpsPro_mu_wp_automatic_updates_nag_ignore=0'.'" style="text-decoration:none;font-weight:bold;">'.__('Dismiss Notice', 'bulletproof-security').'</a></div></div>';
884
+ echo $text;
885
+ }
886
+ }
887
+ }
888
+ }
889
+ }
890
+
891
+ add_action('admin_init', 'bpsPro_mu_wp_automatic_updates_nag_ignore');
892
+
893
+ function bpsPro_mu_wp_automatic_updates_nag_ignore() {
894
+ global $current_user;
895
+ $user_id = $current_user->ID;
896
+
897
+ if ( isset($_GET['bpsPro_mu_wp_automatic_updates_nag_ignore']) && '0' == $_GET['bpsPro_mu_wp_automatic_updates_nag_ignore'] ) {
898
+ add_user_meta($user_id, 'bpsPro_ignore_mu_wp_automatic_updates_notice', 'true', true);
899
+ }
900
+ }
901
+
902
  ?>
languages/bulletproof-security.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2020-07-23 13:39-0700\n"
7
  "PO-Revision-Date: 2015-06-20 19:13-0800\n"
8
  "Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
9
  "Language-Team: AITpro <info@ait-pro.com>\n"
@@ -261,7 +261,7 @@ msgid ""
261
  msgstr ""
262
 
263
  #: admin/core/core-custom-code.php:451 admin/core/core-custom-code.php:818
264
- #: admin/core/core.php:1849
265
  msgid "Click the Custom Code Read Me help button for more help info."
266
  msgstr ""
267
 
@@ -461,7 +461,7 @@ msgid "Your Root and wp-admin Custom Code has been deleted successfully."
461
  msgstr ""
462
 
463
  #: admin/core/core-forms.php:18 admin/core/core-forms.php:98
464
- #: admin/core/core.php:1147
465
  msgid "htaccess Files Disabled: wp-admin htaccess file writing is disabled. "
466
  msgstr ""
467
 
@@ -471,8 +471,8 @@ msgstr ""
471
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
472
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
473
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
474
- #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
475
- #: admin/core/core.php:1054 admin/core/core.php:1147
476
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
477
  #: admin/maintenance/maintenance.php:1639
478
  #: admin/maintenance/maintenance.php:1769
@@ -486,8 +486,8 @@ msgstr ""
486
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
487
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
488
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
489
- #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
490
- #: admin/core/core.php:1054 admin/core/core.php:1147
491
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
492
  #: admin/maintenance/maintenance.php:1639
493
  #: admin/maintenance/maintenance.php:1769
@@ -884,7 +884,19 @@ msgstr ""
884
  msgid "Success! The Root htaccess File Version Check Notice is reset."
885
  msgstr ""
886
 
887
- #: admin/core/core-forms.php:691
 
 
 
 
 
 
 
 
 
 
 
 
888
  msgid "Refresh Status"
889
  msgstr ""
890
 
@@ -1074,7 +1086,7 @@ msgid ""
1074
  "Send Email Alerts."
1075
  msgstr ""
1076
 
1077
- #: admin/core/core-help-text.php:18 admin/core/core.php:459
1078
  msgid "HPF Cron Check Frequency:"
1079
  msgstr ""
1080
 
@@ -1086,7 +1098,7 @@ msgid ""
1086
  "Options button to save your settings."
1087
  msgstr ""
1088
 
1089
- #: admin/core/core-help-text.php:18 admin/core/core.php:470
1090
  msgid "HPF Cron On|Off:"
1091
  msgstr ""
1092
 
@@ -1096,7 +1108,7 @@ msgid ""
1096
  "HPF Cron Off. Click the Save HPF Cron Options button to save your settings."
1097
  msgstr ""
1098
 
1099
- #: admin/core/core-help-text.php:18 admin/core/core.php:490
1100
  msgid "Ignore Hidden Plugin Folders & Files:"
1101
  msgstr ""
1102
 
@@ -1199,15 +1211,15 @@ msgid ""
1199
  msgstr ""
1200
 
1201
  #: admin/core/core-help-text.php:30 admin/core/core.php:209
1202
- #: admin/core/core.php:319 admin/core/core.php:408 admin/core/core.php:520
1203
- #: admin/core/core.php:596 admin/core/core.php:672 admin/core/core.php:1716
1204
  #: admin/db-backup-security/db-backup-help-text.php:12
1205
  #: admin/db-backup-security/db-backup-help-text.php:15
1206
  #: admin/db-backup-security/db-backup-security.php:281
1207
  #: admin/email-log-settings/email-log-settings.php:106
1208
  #: admin/login/login.php:192 admin/login/login.php:807
1209
- #: admin/login/login.php:1129 admin/maintenance/maintenance.php:186
1210
- #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:134
1211
  #: admin/security-log/security-log.php:246
1212
  #: admin/system-info/system-info.php:103 admin/theme-skin/theme-skin.php:110
1213
  #: admin/wizard/wizard.php:1037 admin/wizard/wizard.php:1105
@@ -1732,17 +1744,17 @@ msgstr ""
1732
 
1733
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
1734
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
1735
- #: admin/core/core.php:1054
1736
  msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
1737
  msgstr ""
1738
 
1739
  #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1740
- #: admin/core/core.php:909
1741
  msgid "Failed to copy your Custom default.htaccess file: "
1742
  msgstr ""
1743
 
1744
  #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1745
- #: admin/core/core.php:909
1746
  msgid " to: "
1747
  msgstr ""
1748
 
@@ -1784,8 +1796,8 @@ msgstr ""
1784
  msgid "Rate BPS"
1785
  msgstr ""
1786
 
1787
- #: admin/core/core.php:126 admin/includes/admin.php:334
1788
- #: admin/includes/admin.php:335
1789
  msgid "BulletProof Security ~ htaccess Core"
1790
  msgstr ""
1791
 
@@ -1805,7 +1817,7 @@ msgstr ""
1805
  msgid "htaccess File Editor"
1806
  msgstr ""
1807
 
1808
- #: admin/core/core.php:182 admin/core/core.php:1700 admin/core/core.php:1713
1809
  msgid "Custom Code"
1810
  msgstr ""
1811
 
@@ -1821,13 +1833,13 @@ msgstr ""
1821
  #: admin/db-backup-security/db-backup-security.php:1697
1822
  #: admin/email-log-settings/email-log-settings.php:87 admin/login/login.php:164
1823
  #: admin/maintenance/maintenance.php:150 admin/mscan/mscan.php:115
1824
- #: admin/mscan/mscan.php:1914 admin/security-log/security-log.php:227
1825
  #: admin/system-info/system-info.php:90 admin/theme-skin/theme-skin.php:92
1826
- #: admin/theme-skin/theme-skin.php:215
1827
  msgid "Help &amp; FAQ"
1828
  msgstr ""
1829
 
1830
- #: admin/core/core.php:186 bulletproof-security.php:158
1831
  msgid "BPS Pro Features"
1832
  msgstr ""
1833
 
@@ -1839,8 +1851,8 @@ msgstr ""
1839
  msgid "RBM, WBM, HPF, MBM & BBM BulletProof Modes"
1840
  msgstr ""
1841
 
1842
- #: admin/core/core.php:194 admin/core/core.php:712 admin/core/core.php:1694
1843
- #: admin/core/core.php:1828 admin/core/core.php:1934
1844
  #: admin/db-backup-security/db-backup-security.php:270
1845
  #: admin/db-backup-security/db-backup-security.php:1201
1846
  #: admin/db-backup-security/db-backup-security.php:1357
@@ -1852,8 +1864,8 @@ msgstr ""
1852
  msgid "Want even more security protection?"
1853
  msgstr ""
1854
 
1855
- #: admin/core/core.php:194 admin/core/core.php:712 admin/core/core.php:1694
1856
- #: admin/core/core.php:1828 admin/core/core.php:1934
1857
  #: admin/email-log-settings/email-log-settings.php:95
1858
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1859
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
@@ -1862,8 +1874,8 @@ msgid ""
1862
  "Protect all of your Plugins (plugin folders and files) with an IP Firewall: "
1863
  msgstr ""
1864
 
1865
- #: admin/core/core.php:194 admin/core/core.php:712 admin/core/core.php:1694
1866
- #: admin/core/core.php:1828 admin/core/core.php:1934
1867
  #: admin/email-log-settings/email-log-settings.php:95
1868
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1869
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
@@ -1871,8 +1883,8 @@ msgstr ""
1871
  msgid "Get BPS Pro Plugin Firewall"
1872
  msgstr ""
1873
 
1874
- #: admin/core/core.php:194 admin/core/core.php:712 admin/core/core.php:1694
1875
- #: admin/core/core.php:1828 admin/core/core.php:1934
1876
  #: admin/email-log-settings/email-log-settings.php:95
1877
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1878
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
@@ -1882,8 +1894,8 @@ msgid ""
1882
  "files: "
1883
  msgstr ""
1884
 
1885
- #: admin/core/core.php:194 admin/core/core.php:712 admin/core/core.php:1694
1886
- #: admin/core/core.php:1828 admin/core/core.php:1934
1887
  #: admin/email-log-settings/email-log-settings.php:95
1888
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1889
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
@@ -1891,11 +1903,11 @@ msgstr ""
1891
  msgid "Get BPS Pro Uploads Anti-Exploit Guard"
1892
  msgstr ""
1893
 
1894
- #: admin/core/core.php:200 admin/core/core.php:724 admin/core/core.php:1735
1895
- #: admin/core/core.php:1771 admin/core/core.php:1788 admin/login/login.php:142
1896
  #: admin/login/login.php:199 admin/login/login.php:907
1897
- #: admin/login/login.php:1150 admin/system-info/system-info.php:116
1898
- #: admin/system-info/system-info.php:1034
1899
  msgid "Permission Denied"
1900
  msgstr ""
1901
 
@@ -1903,150 +1915,150 @@ msgstr ""
1903
  msgid "Activate|Deactivate Security Modes"
1904
  msgstr ""
1905
 
1906
- #: admin/core/core.php:204 admin/core/core.php:206 admin/core/core.php:316
1907
  msgid "Root Folder BulletProof Mode (RBM)"
1908
  msgstr ""
1909
 
1910
- #: admin/core/core.php:204 admin/core/core.php:314 admin/core/core.php:403
1911
- #: admin/core/core.php:515 admin/core/core.php:591 admin/core/core.php:667
1912
- #: admin/core/core.php:718 admin/core/core.php:1700
1913
  #: admin/db-backup-security/db-backup-security.php:276
1914
  #: admin/db-backup-security/db-backup-security.php:1207
1915
  #: admin/db-backup-security/db-backup-security.php:1363
1916
  #: admin/email-log-settings/email-log-settings.php:101
1917
  #: admin/login/login.php:187 admin/login/login.php:802
1918
- #: admin/login/login.php:1120 admin/maintenance/maintenance.php:181
1919
- #: admin/mscan/mscan.php:129 admin/mscan/mscan.php:1715
1920
  #: admin/security-log/security-log.php:241 admin/system-info/system-info.php:98
1921
  #: admin/theme-skin/theme-skin.php:107 admin/wizard/wizard.php:1028
1922
  #: admin/wizard/wizard.php:1097
1923
  msgid "Read Me"
1924
  msgstr ""
1925
 
1926
- #: admin/core/core.php:211 admin/core/core.php:321 admin/core/core.php:1718
1927
  #: admin/db-backup-security/db-backup-security.php:284
1928
  #: admin/email-log-settings/email-log-settings.php:109
1929
- #: admin/login/login.php:1132 admin/maintenance/maintenance.php:189
1930
- #: admin/mscan/mscan.php:136 admin/system-info/system-info.php:106
1931
  msgid "Forum Help Links: "
1932
  msgstr ""
1933
 
1934
- #: admin/core/core.php:214 admin/core/core.php:324
1935
  msgid "Setup Wizard & Other Video Tutorials"
1936
  msgstr ""
1937
 
1938
- #: admin/core/core.php:215 admin/core/core.php:325
1939
  #: admin/email-log-settings/email-log-settings.php:112
1940
- #: admin/mscan/mscan.php:141 admin/security-log/security-log.php:252
1941
  msgid "BPS Troubleshooting Steps"
1942
  msgstr ""
1943
 
1944
- #: admin/core/core.php:237 admin/core/core.php:240 admin/core/core.php:243
1945
- #: admin/core/core.php:246 admin/core/core.php:254 admin/core/core.php:257
1946
- #: admin/core/core.php:260 admin/core/core.php:263
1947
  msgid "RBM Status: "
1948
  msgstr ""
1949
 
1950
- #: admin/core/core.php:237 admin/core/core.php:254 admin/core/core.php:352
1951
- #: admin/core/core.php:366 admin/core/core.php:539 admin/core/core.php:553
1952
- #: admin/core/core.php:615 admin/core/core.php:629
1953
  msgid "Disabled"
1954
  msgstr ""
1955
 
1956
- #: admin/core/core.php:240 admin/core/core.php:257
1957
  msgid "Root htaccess File Does Not Exist"
1958
  msgstr ""
1959
 
1960
- #: admin/core/core.php:243 admin/core/core.php:260 admin/core/core.php:358
1961
- #: admin/core/core.php:372 admin/core/core.php:545 admin/core/core.php:559
1962
- #: admin/core/core.php:621 admin/core/core.php:635
1963
- #: admin/system-info/system-info.php:243
1964
  msgid "Activated"
1965
  msgstr ""
1966
 
1967
- #: admin/core/core.php:246 admin/core/core.php:263 admin/core/core.php:355
1968
- #: admin/core/core.php:369 admin/core/core.php:542 admin/core/core.php:556
1969
- #: admin/core/core.php:618 admin/core/core.php:632
1970
- #: admin/system-info/system-info.php:252
1971
  msgid "Deactivated"
1972
  msgstr ""
1973
 
1974
- #: admin/core/core.php:280 admin/core/core.php:298
1975
  msgid "Click OK to Activate Root Folder BulletProof Mode or click Cancel."
1976
  msgstr ""
1977
 
1978
- #: admin/core/core.php:288 admin/core/core.php:306
1979
  msgid "Click OK to Deactivate Root Folder BulletProof Mode or click Cancel."
1980
  msgstr ""
1981
 
1982
- #: admin/core/core.php:314
1983
  msgid "wp-admin Folder BulletProof Mode (WBM)"
1984
  msgstr ""
1985
 
1986
- #: admin/core/core.php:352 admin/core/core.php:355 admin/core/core.php:358
1987
- #: admin/core/core.php:366 admin/core/core.php:369 admin/core/core.php:372
1988
  msgid "WBM Status: "
1989
  msgstr ""
1990
 
1991
- #: admin/core/core.php:387
1992
  msgid "Click OK to Activate wp-admin Folder BulletProof Mode or click Cancel."
1993
  msgstr ""
1994
 
1995
- #: admin/core/core.php:395
1996
  msgid ""
1997
  "Click OK to Deactivate wp-admin Folder BulletProof Mode or click Cancel."
1998
  msgstr ""
1999
 
2000
- #: admin/core/core.php:403 admin/core/core.php:405
2001
  msgid "Hidden Plugin Folders|Files Cron (HPF)"
2002
  msgstr ""
2003
 
2004
- #: admin/core/core.php:426 admin/core/core.php:429 admin/core/core.php:437
2005
- #: admin/core/core.php:440
2006
  msgid "HPF Status: "
2007
  msgstr ""
2008
 
2009
- #: admin/core/core.php:426 admin/core/core.php:437 admin/core/core.php:472
2010
  msgid "HPF Cron On"
2011
  msgstr ""
2012
 
2013
- #: admin/core/core.php:429 admin/core/core.php:440 admin/core/core.php:473
2014
  msgid "HPF Cron Off"
2015
  msgstr ""
2016
 
2017
- #: admin/core/core.php:461
2018
  msgid "Run Check Every 1 Minute"
2019
  msgstr ""
2020
 
2021
- #: admin/core/core.php:462
2022
  msgid "Run Check Every 5 Minutes"
2023
  msgstr ""
2024
 
2025
- #: admin/core/core.php:463
2026
  msgid "Run Check Every 10 Minutes"
2027
  msgstr ""
2028
 
2029
- #: admin/core/core.php:464
2030
  msgid "Run Check Every 15 Minutes"
2031
  msgstr ""
2032
 
2033
- #: admin/core/core.php:465
2034
  msgid "Run Check Every 30 Minutes"
2035
  msgstr ""
2036
 
2037
- #: admin/core/core.php:466
2038
  msgid "Run Check Every 60 Minutes"
2039
  msgstr ""
2040
 
2041
- #: admin/core/core.php:467
2042
  msgid "Run Check Once Daily"
2043
  msgstr ""
2044
 
2045
- #: admin/core/core.php:476
2046
  msgid "Save HPF Cron Options"
2047
  msgstr ""
2048
 
2049
- #: admin/core/core.php:476
2050
  msgid ""
2051
  "The default Cron Frequency is: Run Check Every 15 Minutes. This is a "
2052
  "lightweight check that uses an insignificant amount of resources/memory so 4 "
@@ -2058,314 +2070,314 @@ msgid ""
2058
  "OK to proceed or click Cancel"
2059
  msgstr ""
2060
 
2061
- #: admin/core/core.php:491
2062
  msgid "Add Ignore rules using plugin folder names or file names."
2063
  msgstr ""
2064
 
2065
- #: admin/core/core.php:491
2066
  msgid "Use a comma and a space between folder and/or file names."
2067
  msgstr ""
2068
 
2069
- #: admin/core/core.php:491
2070
  msgid "Example: plugin-folder-name, example-file-name.php"
2071
  msgstr ""
2072
 
2073
- #: admin/core/core.php:497
2074
  msgid ""
2075
  "This option is for adding ignore rules for Hidden or Empty Plugin Folders "
2076
  "Detected by BPS or Non-standard WP files detected by BPS in your /plugins/ "
2077
  "folder."
2078
  msgstr ""
2079
 
2080
- #: admin/core/core.php:497
2081
  msgid ""
2082
  "This is an independent option setting that does not require clicking any "
2083
  "other buttons."
2084
  msgstr ""
2085
 
2086
- #: admin/core/core.php:497 admin/maintenance/maintenance.php:641
2087
  #: admin/security-log/security-log.php:465
2088
  #: admin/security-log/security-log.php:480
2089
  #: admin/security-log/security-log.php:698
2090
- #: admin/system-info/system-info.php:1090
2091
  msgid "Click OK to proceed or click Cancel."
2092
  msgstr ""
2093
 
2094
- #: admin/core/core.php:515
2095
  msgid "Master htaccess Folder BulletProof Mode (MBM)"
2096
  msgstr ""
2097
 
2098
- #: admin/core/core.php:517
2099
  msgid "MBM BulletProof Modes"
2100
  msgstr ""
2101
 
2102
- #: admin/core/core.php:539 admin/core/core.php:542 admin/core/core.php:545
2103
- #: admin/core/core.php:553 admin/core/core.php:556 admin/core/core.php:559
2104
  msgid "MBM Status: "
2105
  msgstr ""
2106
 
2107
- #: admin/core/core.php:574
2108
  msgid "Click OK to Activate MBM BulletProof Mode or click Cancel."
2109
  msgstr ""
2110
 
2111
- #: admin/core/core.php:582
2112
  msgid "Click OK to Deactivate MBM BulletProof Mode or click Cancel."
2113
  msgstr ""
2114
 
2115
- #: admin/core/core.php:591
2116
  msgid "BPS Backup Folder BulletProof Mode (BBM)"
2117
  msgstr ""
2118
 
2119
- #: admin/core/core.php:593
2120
  msgid "BBM BulletProof Modes"
2121
  msgstr ""
2122
 
2123
- #: admin/core/core.php:615 admin/core/core.php:618 admin/core/core.php:621
2124
- #: admin/core/core.php:629 admin/core/core.php:632 admin/core/core.php:635
2125
  msgid "BBM Status: "
2126
  msgstr ""
2127
 
2128
- #: admin/core/core.php:650
2129
  msgid "Click OK to Activate BBM BulletProof Mode or click Cancel."
2130
  msgstr ""
2131
 
2132
- #: admin/core/core.php:658
2133
  msgid ""
2134
  "Caution: BPS Backup Folder BulletProof Mode (BBM) should only be deactivated "
2135
  "for testing or troubleshooting. Be sure to activate BBM BulletProof Mode "
2136
  "after you are done testing or troubleshooting."
2137
  msgstr ""
2138
 
2139
- #: admin/core/core.php:658
2140
  msgid "Click OK to Deactivate BBM BulletProof Mode or click Cancel."
2141
  msgstr ""
2142
 
2143
- #: admin/core/core.php:667 admin/core/core.php:669
2144
  msgid "Backup & Restore BPS htaccess Files"
2145
  msgstr ""
2146
 
2147
- #: admin/core/core.php:685
2148
  msgid "Click OK to Backup BPS htaccess files or click Cancel."
2149
  msgstr ""
2150
 
2151
- #: admin/core/core.php:693
2152
  msgid "Click OK to Restore BPS htaccess files or click Cancel."
2153
  msgstr ""
2154
 
2155
- #: admin/core/core.php:712
2156
  msgid "htaccess File Editor ~ "
2157
  msgstr ""
2158
 
2159
- #: admin/core/core.php:712
2160
  msgid ""
2161
  "Check or edit BPS htaccess files/code manually/directly for testing. Use BPS "
2162
  "Custom Code to save htaccess code permanently"
2163
  msgstr ""
2164
 
2165
- #: admin/core/core.php:718 admin/core/core.php:720
2166
  msgid "htaccess File Editing"
2167
  msgstr ""
2168
 
2169
- #: admin/core/core.php:745
2170
  msgid "htaccess Files Disabled: secure.htaccess Master file is disabled."
2171
  msgstr ""
2172
 
2173
- #: admin/core/core.php:749
2174
  msgid "ERROR: A secure.htaccess Master file was NOT found."
2175
  msgstr ""
2176
 
2177
- #: admin/core/core.php:758
2178
  msgid ""
2179
  "File Open and Write test successful! The secure.htaccess Master file is "
2180
  "writable."
2181
  msgstr ""
2182
 
2183
- #: admin/core/core.php:763 admin/core/core.php:847 admin/core/core.php:954
2184
- #: admin/core/core.php:1131 admin/security-log/security-log.php:755
2185
  msgid "Cannot write to file: "
2186
  msgstr ""
2187
 
2188
- #: admin/core/core.php:778
2189
  msgid ""
2190
  "htaccess Files Disabled: secure.htaccess Master file writing is disabled. "
2191
  msgstr ""
2192
 
2193
- #: admin/core/core.php:798
2194
  msgid "Error: Unable to write to the secure.htaccess Master file."
2195
  msgstr ""
2196
 
2197
- #: admin/core/core.php:813
2198
  msgid "The secure.htaccess Master file has been updated."
2199
  msgstr ""
2200
 
2201
- #: admin/core/core.php:829
2202
  msgid "htaccess Files Disabled: default.htaccess Master file is disabled."
2203
  msgstr ""
2204
 
2205
- #: admin/core/core.php:833
2206
  msgid "ERROR: A default.htaccess Master file was NOT found."
2207
  msgstr ""
2208
 
2209
- #: admin/core/core.php:842
2210
  msgid ""
2211
  "File Open and Write test successful! The default.htaccess Master file is "
2212
  "writable."
2213
  msgstr ""
2214
 
2215
- #: admin/core/core.php:862
2216
  msgid ""
2217
  "htaccess Files Disabled: default.htaccess Master file writing is disabled. "
2218
  msgstr ""
2219
 
2220
- #: admin/core/core.php:882
2221
  msgid "Error: Unable to write to the default.htaccess Master file."
2222
  msgstr ""
2223
 
2224
- #: admin/core/core.php:897
2225
  msgid "The default.htaccess Master file has been updated."
2226
  msgstr ""
2227
 
2228
- #: admin/core/core.php:909
2229
  msgid ""
2230
  " Check that the /bps-backup/ and /master-backups/ folders exist and the "
2231
  "folder permissions or Ownership for these folders."
2232
  msgstr ""
2233
 
2234
- #: admin/core/core.php:914
2235
  msgid ""
2236
  "Your Custom default.htaccess Master file has been successfully saved to: "
2237
  msgstr ""
2238
 
2239
- #: admin/core/core.php:930
2240
  msgid "wpadmin-secure.htaccess file writing is disabled."
2241
  msgstr ""
2242
 
2243
- #: admin/core/core.php:936
2244
  msgid ""
2245
  "htaccess Files Disabled: wpadmin-secure.htaccess Master file is disabled."
2246
  msgstr ""
2247
 
2248
- #: admin/core/core.php:940
2249
  msgid "ERROR: A wpadmin-secure.htaccess Master file was NOT found."
2250
  msgstr ""
2251
 
2252
- #: admin/core/core.php:949
2253
  msgid ""
2254
  "File Open and Write test successful! The wpadmin-secure.htaccess Master file "
2255
  "is writable."
2256
  msgstr ""
2257
 
2258
- #: admin/core/core.php:970
2259
  msgid ""
2260
  "htaccess Files Disabled: wpadmin-secure.htaccess Master file writing is "
2261
  "disabled. "
2262
  msgstr ""
2263
 
2264
- #: admin/core/core.php:990
2265
  msgid "Error: Unable to write to the wpadmin-secure.htaccess Master file."
2266
  msgstr ""
2267
 
2268
- #: admin/core/core.php:1005
2269
  msgid "The wpadmin-secure.htaccess Master file has been updated."
2270
  msgstr ""
2271
 
2272
- #: admin/core/core.php:1021
2273
  msgid "htaccess Files Disabled: Root htaccess file does not exist."
2274
  msgstr ""
2275
 
2276
- #: admin/core/core.php:1025
2277
  msgid "ERROR: An htaccess file was NOT found in your root folder"
2278
  msgstr ""
2279
 
2280
- #: admin/core/core.php:1034
2281
  msgid ""
2282
  "File Open and Write test successful! Your currently active root htaccess "
2283
  "file is writable."
2284
  msgstr ""
2285
 
2286
- #: admin/core/core.php:1039
2287
  msgid "Your root htaccess file is Locked with Read Only Permissions."
2288
  msgstr ""
2289
 
2290
- #: admin/core/core.php:1039
2291
  msgid ""
2292
  "Use the Lock and Unlock buttons below to Lock or Unlock your root htaccess "
2293
  "file for editing."
2294
  msgstr ""
2295
 
2296
- #: admin/core/core.php:1074
2297
  msgid ""
2298
  "Error: Unable to write to the Root htaccess file. If your Root htaccess file "
2299
  "is locked you must unlock first."
2300
  msgstr ""
2301
 
2302
- #: admin/core/core.php:1089
2303
  msgid "Your currently active root htaccess file has been updated."
2304
  msgstr ""
2305
 
2306
- #: admin/core/core.php:1107
2307
  msgid "wp-admin active htaccess file writing is disabled."
2308
  msgstr ""
2309
 
2310
- #: admin/core/core.php:1113
2311
  msgid "htaccess Files Disabled: wp-admin folder htaccess file does not exist."
2312
  msgstr ""
2313
 
2314
- #: admin/core/core.php:1117
2315
  msgid "ERROR: An htaccess file was NOT found in your wp-admin folder"
2316
  msgstr ""
2317
 
2318
- #: admin/core/core.php:1126
2319
  msgid ""
2320
  "File Open and Write test successful! Your currently active wp-admin htaccess "
2321
  "file is writable."
2322
  msgstr ""
2323
 
2324
- #: admin/core/core.php:1167
2325
  msgid "Error: Unable to write to the wp-admin htaccess file."
2326
  msgstr ""
2327
 
2328
- #: admin/core/core.php:1182
2329
  msgid "Your currently active wp-admin htaccess file has been updated."
2330
  msgstr ""
2331
 
2332
- #: admin/core/core.php:1199
2333
  msgid "Your Root htaccess file has been Locked."
2334
  msgstr ""
2335
 
2336
- #: admin/core/core.php:1204
2337
  msgid "Unable to Lock your Root htaccess file."
2338
  msgstr ""
2339
 
2340
- #: admin/core/core.php:1218
2341
  msgid "Your Root htaccess file has been Unlocked."
2342
  msgstr ""
2343
 
2344
- #: admin/core/core.php:1223
2345
  msgid "Unable to Unlock your Root htaccess file."
2346
  msgstr ""
2347
 
2348
- #: admin/core/core.php:1246
2349
  msgid "Click OK to Lock your Root htaccess file or click Cancel."
2350
  msgstr ""
2351
 
2352
- #: admin/core/core.php:1246
2353
  msgid ""
2354
  "Note: The File Open and Write Test window will still display the last status "
2355
  "of the file as Unlocked. To see the current status refresh your browser."
2356
  msgstr ""
2357
 
2358
- #: admin/core/core.php:1254
2359
  msgid "Click OK to Unlock your Root htaccess file or click Cancel."
2360
  msgstr ""
2361
 
2362
- #: admin/core/core.php:1254
2363
  msgid ""
2364
  "Note: The File Open and Write Test window will still display the last status "
2365
  "of the file as Locked. To see the current status refresh your browser."
2366
  msgstr ""
2367
 
2368
- #: admin/core/core.php:1263
2369
  msgid ""
2370
  "Turning AutoLock On will allow BPS Pro to automatically lock your Root ."
2371
  "htaccess file. For some folks this causes a problem because their Web Hosts "
@@ -2373,23 +2385,23 @@ msgid ""
2373
  "BPS Pro to AutoLock the Root .htaccess file works fine."
2374
  msgstr ""
2375
 
2376
- #: admin/core/core.php:1263
2377
  msgid "Click OK to Turn AutoLock On or click Cancel."
2378
  msgstr ""
2379
 
2380
- #: admin/core/core.php:1265 admin/system-info/system-info.php:752
2381
- #: admin/system-info/system-info.php:768 admin/system-info/system-info.php:776
2382
- #: admin/system-info/system-info.php:784 admin/system-info/system-info.php:792
2383
- #: admin/system-info/system-info.php:800 admin/system-info/system-info.php:808
2384
- #: admin/system-info/system-info.php:816 admin/system-info/system-info.php:824
2385
- #: admin/system-info/system-info.php:843 includes/functions.php:572
2386
  #: includes/functions.php:757 includes/functions.php:925
2387
  #: includes/functions.php:968 includes/functions.php:1016
2388
  #: includes/functions.php:1060
2389
  msgid "On"
2390
  msgstr ""
2391
 
2392
- #: admin/core/core.php:1275
2393
  msgid ""
2394
  "Turning AutoLock Off will prevent BPS Pro from automatically locking your "
2395
  "Root .htaccess file. For some folks this is necessary because their Web "
@@ -2397,52 +2409,52 @@ msgid ""
2397
  "allowing BPS Pro to AutoLock the Root .htaccess file works fine."
2398
  msgstr ""
2399
 
2400
- #: admin/core/core.php:1275
2401
  msgid "Click OK to Turn AutoLock Off or click Cancel."
2402
  msgstr ""
2403
 
2404
- #: admin/core/core.php:1277 admin/system-info/system-info.php:536
2405
- #: admin/system-info/system-info.php:771 admin/system-info/system-info.php:779
2406
- #: admin/system-info/system-info.php:787 admin/system-info/system-info.php:795
2407
- #: admin/system-info/system-info.php:803 admin/system-info/system-info.php:811
2408
- #: admin/system-info/system-info.php:819 admin/system-info/system-info.php:827
2409
- #: admin/system-info/system-info.php:835 admin/system-info/system-info.php:846
2410
  #: includes/functions.php:930 includes/functions.php:973
2411
  #: includes/functions.php:1022 includes/functions.php:1066
2412
  #: includes/general-functions.php:285 includes/general-functions.php:300
2413
  msgid "Off"
2414
  msgstr ""
2415
 
2416
- #: admin/core/core.php:1292
2417
  msgid "secure.htaccess"
2418
  msgstr ""
2419
 
2420
- #: admin/core/core.php:1293
2421
  msgid "default.htaccess"
2422
  msgstr ""
2423
 
2424
- #: admin/core/core.php:1294
2425
  msgid "wpadmin-secure.htaccess"
2426
  msgstr ""
2427
 
2428
- #: admin/core/core.php:1295
2429
  msgid "Your Current Root htaccess File"
2430
  msgstr ""
2431
 
2432
- #: admin/core/core.php:1296
2433
  msgid "Your Current wp-admin htaccess File"
2434
  msgstr ""
2435
 
2436
- #: admin/core/core.php:1317 admin/core/core.php:1387 admin/core/core.php:1457
2437
- #: admin/core/core.php:1545 admin/core/core.php:1617
2438
  msgid ""
2439
  "If you see an error or are unable to save your editing changes then click "
2440
  "the Encrypt htaccess Code button first and then click the Update File "
2441
  "button. Mouse over the question mark image to the right for help info."
2442
  msgstr ""
2443
 
2444
- #: admin/core/core.php:1317 admin/core/core.php:1387 admin/core/core.php:1457
2445
- #: admin/core/core.php:1545 admin/core/core.php:1617
2446
  msgid ""
2447
  "If your web host currently has ModSecurity installed or installs ModSecurity "
2448
  "at a later time then ModSecurity will prevent you from saving your htaccess "
@@ -2450,8 +2462,8 @@ msgid ""
2450
  "button."
2451
  msgstr ""
2452
 
2453
- #: admin/core/core.php:1317 admin/core/core.php:1387 admin/core/core.php:1457
2454
- #: admin/core/core.php:1545 admin/core/core.php:1617
2455
  msgid ""
2456
  "If you click the Encrypt htaccess Code button and then want to edit your "
2457
  "code again click the Decrypt htaccess Code button. After you are done "
@@ -2459,20 +2471,20 @@ msgid ""
2459
  "File button."
2460
  msgstr ""
2461
 
2462
- #: admin/core/core.php:1317 admin/core/core.php:1387 admin/core/core.php:1457
2463
- #: admin/core/core.php:1545 admin/core/core.php:1617
2464
  msgid "Click the htaccess File Editing Read Me help button for more help info."
2465
  msgstr ""
2466
 
2467
- #: admin/core/core.php:1542
2468
  msgid "YOUR ROOT HTACCESS FILE IS LOCKED."
2469
  msgstr ""
2470
 
2471
- #: admin/core/core.php:1542
2472
  msgid "YOUR FILE EDITS|CHANGES CANNOT BE SAVED."
2473
  msgstr ""
2474
 
2475
- #: admin/core/core.php:1542
2476
  msgid ""
2477
  "Click Cancel, copy the file editing changes you made to save them and then "
2478
  "click the Unlock .htaccess File button to unlock your Root .htaccess file. "
@@ -2481,44 +2493,44 @@ msgid ""
2481
  "to save your file edits/changes."
2482
  msgstr ""
2483
 
2484
- #: admin/core/core.php:1694
2485
  msgid "htaccess File Custom Code ~ "
2486
  msgstr ""
2487
 
2488
- #: admin/core/core.php:1694
2489
  msgid ""
2490
  "Save custom htaccess code for your Root and wp-admin htaccess Files "
2491
  "permanently"
2492
  msgstr ""
2493
 
2494
- #: admin/core/core.php:1706
2495
  msgid "Reset|Recheck Dismiss Notices: "
2496
  msgstr ""
2497
 
2498
- #: admin/core/core.php:1721
2499
  msgid "Brute Force Login Page Protection code"
2500
  msgstr ""
2501
 
2502
- #: admin/core/core.php:1729 admin/core/core.php:1977
2503
  #: admin/wizard/wizard.php:1043
2504
  msgid "Custom Code Video Tutorial"
2505
  msgstr ""
2506
 
2507
- #: admin/core/core.php:1730
2508
  msgid "BulletProof Security Forum"
2509
  msgstr ""
2510
 
2511
- #: admin/core/core.php:1747
2512
  msgid ""
2513
  "Clicking OK will Import all of your Root and wp-admin Custom Code from the "
2514
  "cc-master.zip file on your computer."
2515
  msgstr ""
2516
 
2517
- #: admin/core/core.php:1747
2518
  msgid "Click OK to Import Custom Code or click Cancel."
2519
  msgstr ""
2520
 
2521
- #: admin/core/core.php:1756
2522
  msgid ""
2523
  "Clicking OK will Export (copy) all of your Root and wp-admin Custom Code "
2524
  "into the cc-master.zip file, which you can then download to your computer by "
@@ -2526,51 +2538,51 @@ msgid ""
2526
  "success message."
2527
  msgstr ""
2528
 
2529
- #: admin/core/core.php:1756
2530
  msgid "Click OK to Export Custom Code or click Cancel."
2531
  msgstr ""
2532
 
2533
- #: admin/core/core.php:1764
2534
  msgid ""
2535
  "Clicking OK will delete all of your Root and wp-admin Custom Code from all "
2536
  "of the Custom Code text boxes."
2537
  msgstr ""
2538
 
2539
- #: admin/core/core.php:1764
2540
  msgid "Click OK to Delete Custom Code or click Cancel."
2541
  msgstr ""
2542
 
2543
- #: admin/core/core.php:1815
2544
  msgid ""
2545
  "Your My Notes Personal Notes and/or htaccess Code Notes saved successfully "
2546
  "to your WordPress Database."
2547
  msgstr ""
2548
 
2549
- #: admin/core/core.php:1828
2550
  msgid "My Notes ~ "
2551
  msgstr ""
2552
 
2553
- #: admin/core/core.php:1828
2554
  msgid "Save Personal Notes and htaccess Code Notes to your WordPress Database"
2555
  msgstr ""
2556
 
2557
- #: admin/core/core.php:1849
2558
  msgid ""
2559
  "If you are unable to save custom htaccess code and/or see an error message "
2560
  "when trying to save custom htaccess code, "
2561
  msgstr ""
2562
 
2563
- #: admin/core/core.php:1849
2564
  msgid ""
2565
  "click the Encrypt My Notes button first and then click the Save My Notes "
2566
  "button."
2567
  msgstr ""
2568
 
2569
- #: admin/core/core.php:1849
2570
  msgid "Mouse over the question mark image to the right for help info."
2571
  msgstr ""
2572
 
2573
- #: admin/core/core.php:1849
2574
  msgid ""
2575
  "If your web host currently has ModSecurity installed or installs ModSecurity "
2576
  "at a later time then ModSecurity will prevent you from saving your custom "
@@ -2578,7 +2590,7 @@ msgid ""
2578
  "button."
2579
  msgstr ""
2580
 
2581
- #: admin/core/core.php:1849
2582
  msgid ""
2583
  "If you click the Encrypt My Notes button, but then want to add or edit "
2584
  "additional custom code click the Decrypt My Notes button. After you are done "
@@ -2586,25 +2598,25 @@ msgid ""
2586
  "clicking the Save My Notes button."
2587
  msgstr ""
2588
 
2589
- #: admin/core/core.php:1921
2590
  #: admin/db-backup-security/db-backup-security.php:1701
2591
- #: admin/mscan/mscan.php:1918 admin/theme-skin/theme-skin.php:219
2592
  msgid "Whats New in "
2593
  msgstr ""
2594
 
2595
- #: admin/core/core.php:1921
2596
  msgid " and General Help Info & Tips"
2597
  msgstr ""
2598
 
2599
- #: admin/core/core.php:1926
2600
  msgid "The BPS Changelog|Whats New page has been moved to the "
2601
  msgstr ""
2602
 
2603
- #: admin/core/core.php:1926
2604
  msgid "Reasons for this Changelog|Whats New page change: "
2605
  msgstr ""
2606
 
2607
- #: admin/core/core.php:1926
2608
  msgid ""
2609
  "The BPS Changelog|Whats New page will not have to be translated by the "
2610
  "WordPress PolyGlots Language Packs Team for each new version release of BPS, "
@@ -2613,7 +2625,7 @@ msgid ""
2613
  "BPS version changes through the years and other beneficial reasons."
2614
  msgstr ""
2615
 
2616
- #: admin/core/core.php:1934 admin/db-backup-security/db-backup-security.php:270
2617
  #: admin/db-backup-security/db-backup-security.php:1201
2618
  #: admin/db-backup-security/db-backup-security.php:1357
2619
  #: admin/email-log-settings/email-log-settings.php:95
@@ -2625,7 +2637,7 @@ msgid ""
2625
  "Detection & Prevention System: "
2626
  msgstr ""
2627
 
2628
- #: admin/core/core.php:1934 admin/db-backup-security/db-backup-security.php:270
2629
  #: admin/db-backup-security/db-backup-security.php:1201
2630
  #: admin/db-backup-security/db-backup-security.php:1357
2631
  #: admin/email-log-settings/email-log-settings.php:95
@@ -2636,7 +2648,7 @@ msgstr ""
2636
  msgid "Get BPS Pro ARQ IDPS"
2637
  msgstr ""
2638
 
2639
- #: admin/core/core.php:1934 admin/email-log-settings/email-log-settings.php:95
2640
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
2641
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
2642
  #: admin/wizard/wizard.php:1022 admin/wizard/wizard.php:1091
@@ -2645,7 +2657,7 @@ msgid ""
2645
  "posting, auto-commenting): "
2646
  msgstr ""
2647
 
2648
- #: admin/core/core.php:1934 admin/email-log-settings/email-log-settings.php:95
2649
  #: admin/login/login.php:181 admin/login/login.php:796
2650
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
2651
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
@@ -2653,29 +2665,29 @@ msgstr ""
2653
  msgid "Get BPS Pro JTC Anti-Spam|Anti-Hacker"
2654
  msgstr ""
2655
 
2656
- #: admin/core/core.php:1939
2657
  msgid "General Help Info & Tips:"
2658
  msgstr ""
2659
 
2660
- #: admin/core/core.php:1943
2661
  msgid "If BPS plugin pages are not displaying visually correct you can "
2662
  msgstr ""
2663
 
2664
- #: admin/core/core.php:1947
2665
  msgid "BPS Video Tutorials|Setup Wizard: "
2666
  msgstr ""
2667
 
2668
- #: admin/core/core.php:1955
2669
  msgid "Troubleshooting Steps & The BPS Security Log: "
2670
  msgstr ""
2671
 
2672
- #: admin/core/core.php:1955
2673
  msgid ""
2674
  "All BPS plugin features can be turned Off/On individually to confirm, "
2675
  "eliminate or isolate a problem or issue that may or may not be caused by BPS."
2676
  msgstr ""
2677
 
2678
- #: admin/core/core.php:1955
2679
  msgid ""
2680
  "The BPS Security Log is a primary troubleshooting tool. If BPS is blocking "
2681
  "something legitimate in another plugin or theme then a Security Log entry "
@@ -2684,69 +2696,69 @@ msgid ""
2684
  "being blocked."
2685
  msgstr ""
2686
 
2687
- #: admin/core/core.php:1955
2688
  msgid ""
2689
  "Search the Forum site to see if a known issue or problem is already posted "
2690
  "with a solution/whitelist rule in the Forum."
2691
  msgstr ""
2692
 
2693
- #: admin/core/core.php:1968 admin/maintenance/maintenance.php:2078
2694
  msgid "Help & FAQ"
2695
  msgstr ""
2696
 
2697
- #: admin/core/core.php:1972 admin/email-log-settings/email-log-settings.php:220
2698
- #: admin/login/login.php:1623 admin/maintenance/maintenance.php:2083
2699
- #: admin/security-log/security-log.php:822
2700
- #: admin/system-info/system-info.php:1109
2701
  msgid "Contributors Page"
2702
  msgstr ""
2703
 
2704
- #: admin/core/core.php:1973
2705
  msgid "WP Permalinks - Custom Permalink Structure Help Info"
2706
  msgstr ""
2707
 
2708
- #: admin/core/core.php:1974 admin/email-log-settings/email-log-settings.php:219
2709
- #: admin/login/login.php:1622 admin/maintenance/maintenance.php:2084
2710
- #: admin/security-log/security-log.php:821
2711
- #: admin/system-info/system-info.php:1108
2712
  msgid "Security Log Event Codes"
2713
  msgstr ""
2714
 
2715
- #: admin/core/core.php:1975
2716
  msgid "Adding a Custom 403 Forbidden Page For Your Website"
2717
  msgstr ""
2718
 
2719
- #: admin/core/core.php:1976
2720
  #: admin/db-backup-security/db-backup-security.php:1705
2721
  #: admin/email-log-settings/email-log-settings.php:221
2722
- #: admin/login/login.php:1624 admin/maintenance/maintenance.php:2085
2723
- #: admin/mscan/mscan.php:1921 admin/security-log/security-log.php:823
2724
- #: admin/system-info/system-info.php:1110 admin/theme-skin/theme-skin.php:222
2725
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2726
  msgstr ""
2727
 
2728
- #: admin/core/core.php:1989
2729
  msgid "BulletProof Security Pro Feature Highlights"
2730
  msgstr ""
2731
 
2732
- #: admin/core/core.php:1999
2733
  msgid "The Ultimate Security Protection"
2734
  msgstr ""
2735
 
2736
- #: admin/core/core.php:2002
2737
  msgid "BPS Pro One-Click Setup Wizard & Demo Video Tutorial"
2738
  msgstr ""
2739
 
2740
- #: admin/core/core.php:2003
2741
  msgid "View All BPS Pro Features"
2742
  msgstr ""
2743
 
2744
- #: admin/core/core.php:2010
2745
  msgid ""
2746
  "The Complete Website Security Solution for Hacker and Spammer Protection"
2747
  msgstr ""
2748
 
2749
- #: admin/core/core.php:2010
2750
  msgid ""
2751
  "BulletProof Security Pro has an amazing track record. BPS Pro has been "
2752
  "publicly available for 9+ years and is installed on over 50,000 websites "
@@ -2754,47 +2766,47 @@ msgid ""
2754
  "hacked."
2755
  msgstr ""
2756
 
2757
- #: admin/core/core.php:2010
2758
  msgid ""
2759
  "Why pay 10 times or more for other premium WordPress Security Plugins with "
2760
  "recurring yearly subscriptions when you can get the best WordPress Security "
2761
  "Plugin for an extremely low one-time purchase price?"
2762
  msgstr ""
2763
 
2764
- #: admin/core/core.php:2010
2765
  msgid "View Cost Comparison"
2766
  msgstr ""
2767
 
2768
- #: admin/core/core.php:2010
2769
  msgid ""
2770
  "30-Day Money-Back Guarantee: If you are dissatisfied with BulletProof "
2771
  "Security Pro for any reason. We offer a no questions asked full refund."
2772
  msgstr ""
2773
 
2774
- #: admin/core/core.php:2013
2775
  msgid "One-Click Setup Wizard Installation: "
2776
  msgstr ""
2777
 
2778
- #: admin/core/core.php:2013
2779
  msgid ""
2780
  "Fast, simple and complete BPS Pro installation and setup in less than 1 "
2781
  "minute."
2782
  msgstr ""
2783
 
2784
- #: admin/core/core.php:2015
2785
  msgid "One-Click Upgrade: "
2786
  msgstr ""
2787
 
2788
- #: admin/core/core.php:2015
2789
  msgid "One-click plugin upgrade on the WordPress Plugins page."
2790
  msgstr ""
2791
 
2792
- #: admin/core/core.php:2017
2793
  msgid ""
2794
  "AutoRestore|Quarantine Intrusion Detection and Prevention System (ARQ IDPS): "
2795
  msgstr ""
2796
 
2797
- #: admin/core/core.php:2017
2798
  msgid ""
2799
  "ARQ IDPS is a real-time file scanner that automatically quarantines "
2800
  "malicious hacker files and autorestores legitimate website files if they "
@@ -2808,11 +2820,11 @@ msgid ""
2808
  "Plugin and Theme Automatic, Manual and Shiny installations and updates."
2809
  msgstr ""
2810
 
2811
- #: admin/core/core.php:2019
2812
  msgid "MScan Malware Scanner: "
2813
  msgstr ""
2814
 
2815
- #: admin/core/core.php:2019
2816
  msgid ""
2817
  "MScan Scheduled Scans are available in BPS Pro only. The BPS Pro ARQ IDPS "
2818
  "scanner is far superior to malware scanners including MScan, but both the "
@@ -2820,11 +2832,11 @@ msgid ""
2820
  "website if someone would like to do that."
2821
  msgstr ""
2822
 
2823
- #: admin/core/core.php:2021
2824
  msgid "Plugin Firewall|Plugin Firewall AutoPilot Mode: "
2825
  msgstr ""
2826
 
2827
- #: admin/core/core.php:2021
2828
  msgid ""
2829
  "The Plugin Firewall protects all of your Plugins (plugin folders and files) "
2830
  "with an IP Address Firewall, which prevents/blocks/forbids Remote Access to "
@@ -2838,11 +2850,11 @@ msgid ""
2838
  "firewall whitelist rules."
2839
  msgstr ""
2840
 
2841
- #: admin/core/core.php:2023
2842
  msgid "JTC Anti-Spam|Anti-Hacker (JTC): "
2843
  msgstr ""
2844
 
2845
- #: admin/core/core.php:2023
2846
  #, php-format
2847
  msgid ""
2848
  "Blocks 100% of all SpamBot and HackerBot Brute Force Login attacks (auto-"
@@ -2856,11 +2868,11 @@ msgid ""
2856
  "includes a SpamBot Trap."
2857
  msgstr ""
2858
 
2859
- #: admin/core/core.php:2025
2860
  msgid "Uploads Folder Anti-Exploit Guard (UAEG): "
2861
  msgstr ""
2862
 
2863
- #: admin/core/core.php:2025
2864
  msgid ""
2865
  "Protects the WordPress Uploads folder. ONLY safe image files with valid "
2866
  "image file extensions such as jpg, gif, png, etc. can be accessed, opened or "
@@ -2870,11 +2882,11 @@ msgid ""
2870
  "executed in the WordPress Uploads folder."
2871
  msgstr ""
2872
 
2873
- #: admin/core/core.php:2027
2874
  msgid "DB Monitor Intrusion Detection System (IDS): "
2875
  msgstr ""
2876
 
2877
- #: admin/core/core.php:2027
2878
  msgid ""
2879
  "The DB Monitor is an automated Intrusion Detection System (IDS) that alerts "
2880
  "you via email anytime a change/modification occurs in your WordPress "
@@ -2885,11 +2897,11 @@ msgid ""
2885
  "help info."
2886
  msgstr ""
2887
 
2888
- #: admin/core/core.php:2029
2889
  msgid "DB Diff Tool: "
2890
  msgstr ""
2891
 
2892
- #: admin/core/core.php:2029
2893
  msgid ""
2894
  "The DB Diff Tool compares old database tables from DB backups to current "
2895
  "database tables and displays any differences in the data/content of those 2 "
@@ -2897,11 +2909,11 @@ msgid ""
2897
  "not only just DB data."
2898
  msgstr ""
2899
 
2900
- #: admin/core/core.php:2031
2901
  msgid "DB Status & Info: "
2902
  msgstr ""
2903
 
2904
- #: admin/core/core.php:2031
2905
  msgid ""
2906
  "General DB Info shows commonly checked DB status and info about your "
2907
  "WordPress database at a glance. Extensive DB Info shows extensive DB status "
@@ -2910,11 +2922,11 @@ msgid ""
2910
  "SHOW GLOBAL VARIABLES and SHOW SESSION VARIABLES."
2911
  msgstr ""
2912
 
2913
- #: admin/core/core.php:2033
2914
  msgid "S-Monitor: "
2915
  msgstr ""
2916
 
2917
- #: admin/core/core.php:2033
2918
  msgid ""
2919
  "S-Monitor is the centralized Security Monitoring and Alerting Core where you "
2920
  "can manage and choose BPS Pro settings for Dashboard Alerts, Dashboard "
@@ -2924,11 +2936,11 @@ msgid ""
2924
  "easy to change all/any BPS Pro settings to your particular preferences."
2925
  msgstr ""
2926
 
2927
- #: admin/core/core.php:2035
2928
  msgid "Advanced Real-Time Alerting & Heads Up Dashboard Status Display: "
2929
  msgstr ""
2930
 
2931
- #: admin/core/core.php:2035
2932
  msgid ""
2933
  "BPS Pro checks and displays error, warning, notifications and alert messages "
2934
  "in real time. You can choose how you want these messages displayed to you "
@@ -2936,11 +2948,11 @@ msgid ""
2936
  "Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging..."
2937
  msgstr ""
2938
 
2939
- #: admin/core/core.php:2038
2940
  msgid "Custom php.ini|ini_set Options: "
2941
  msgstr ""
2942
 
2943
- #: admin/core/core.php:2038
2944
  msgid ""
2945
  "Quickly create a custom php.ini file for your website or use ini_set Options "
2946
  "to increase security and performance with just a few clicks. Additional P-"
@@ -2948,11 +2960,11 @@ msgid ""
2948
  "Protected PHP Error Log, PHP Error Alerts, Secure phpinfo Viewer..."
2949
  msgstr ""
2950
 
2951
- #: admin/core/core.php:2040
2952
  msgid "Pro Tools: 16 mini-plugins: "
2953
  msgstr ""
2954
 
2955
- #: admin/core/core.php:2040
2956
  msgid ""
2957
  "Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|"
2958
  "Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset "
@@ -2971,38 +2983,38 @@ msgid ""
2971
  "vulnerable to an XML-RPC exploit)."
2972
  msgstr ""
2973
 
2974
- #: admin/core/core.php:2048
2975
  msgid "BPS Pro Version Release Dates"
2976
  msgstr ""
2977
 
2978
- #: admin/core/core.php:2050 admin/core/core.php:2051 admin/core/core.php:2052
2979
- #: admin/core/core.php:2053 admin/core/core.php:2054 admin/core/core.php:2055
2980
- #: admin/core/core.php:2060 admin/core/core.php:2061 admin/core/core.php:2062
2981
- #: admin/core/core.php:2063 admin/core/core.php:2068 admin/core/core.php:2069
2982
- #: admin/core/core.php:2070 admin/core/core.php:2071 admin/core/core.php:2072
2983
- #: admin/core/core.php:2077 admin/core/core.php:2078 admin/core/core.php:2079
2984
- #: admin/core/core.php:2080 admin/core/core.php:2081 admin/core/core.php:2082
2985
- #: admin/core/core.php:2083 admin/core/core.php:2084 admin/core/core.php:2085
2986
- #: admin/core/core.php:2090 admin/core/core.php:2091 admin/core/core.php:2092
2987
- #: admin/core/core.php:2093 admin/core/core.php:2094 admin/core/core.php:2095
2988
- #: admin/core/core.php:2096 admin/core/core.php:2097 admin/core/core.php:2098
2989
- #: admin/core/core.php:2099 admin/core/core.php:2100 admin/core/core.php:2101
2990
- #: admin/core/core.php:2102 admin/core/core.php:2108 admin/core/core.php:2109
2991
- #: admin/core/core.php:2110 admin/core/core.php:2111 admin/core/core.php:2112
2992
- #: admin/core/core.php:2113 admin/core/core.php:2114 admin/core/core.php:2115
2993
- #: admin/core/core.php:2116 admin/core/core.php:2117 admin/core/core.php:2118
2994
- #: admin/core/core.php:2119 admin/core/core.php:2120 admin/core/core.php:2121
2995
- #: admin/core/core.php:2127 admin/core/core.php:2128 admin/core/core.php:2129
2996
- #: admin/core/core.php:2130 admin/core/core.php:2131 admin/core/core.php:2132
2997
- #: admin/core/core.php:2133 admin/core/core.php:2134 admin/core/core.php:2135
2998
- #: admin/core/core.php:2136 admin/core/core.php:2137 admin/core/core.php:2138
2999
- #: admin/core/core.php:2139 admin/core/core.php:2145 admin/core/core.php:2146
3000
- #: admin/core/core.php:2147 admin/core/core.php:2148 admin/core/core.php:2149
3001
- #: admin/core/core.php:2150 admin/core/core.php:2151 admin/core/core.php:2152
3002
- #: admin/core/core.php:2153 admin/core/core.php:2154 admin/core/core.php:2160
3003
  #: admin/core/core.php:2161 admin/core/core.php:2162 admin/core/core.php:2163
3004
- #: admin/core/core.php:2164 admin/core/core.php:2165 admin/core/core.php:2166
3005
- #: admin/core/core.php:2167 admin/core/core.php:2168 admin/core/core.php:2169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3006
  #, php-format
3007
  msgid ""
3008
  "<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
@@ -3659,7 +3671,7 @@ msgstr ""
3659
  #: admin/db-backup-security/db-backup-security.php:259
3660
  #: admin/db-backup-security/db-backup-security.php:276
3661
  #: admin/db-backup-security/db-backup-security.php:278
3662
- #: admin/includes/admin.php:340
3663
  msgid "DB Backup"
3664
  msgstr ""
3665
 
@@ -3745,7 +3757,7 @@ msgstr ""
3745
  #: admin/db-backup-security/db-backup-security.php:874
3746
  #: admin/login/login.php:545 admin/login/login.php:574
3747
  #: admin/login/login.php:646 admin/login/login.php:675
3748
- #: admin/mscan/mscan.php:1358
3749
  msgid "Delete"
3750
  msgstr ""
3751
 
@@ -3844,7 +3856,7 @@ msgid "Backup Job Settings|Independent Options"
3844
  msgstr ""
3845
 
3846
  #: admin/db-backup-security/db-backup-security.php:970
3847
- #: admin/mscan/mscan.php:939
3848
  msgid "All"
3849
  msgstr ""
3850
 
@@ -4311,7 +4323,7 @@ msgid ""
4311
  msgstr ""
4312
 
4313
  #: admin/db-backup-security/db-backup-security.php:1226
4314
- #: admin/mscan/mscan.php:1767
4315
  msgid ""
4316
  "Then click the Delete Log button to delete the contents of this Log file."
4317
  msgstr ""
@@ -4331,7 +4343,7 @@ msgid "Clicking OK will delete the contents of your DB Backup Log file."
4331
  msgstr ""
4332
 
4333
  #: admin/db-backup-security/db-backup-security.php:1263
4334
- #: admin/mscan/mscan.php:1809 admin/security-log/security-log.php:509
4335
  msgid "Click OK to Delete the Log file contents or click Cancel."
4336
  msgstr ""
4337
 
@@ -4481,12 +4493,12 @@ msgid ""
4481
  msgstr ""
4482
 
4483
  #: admin/db-backup-security/db-backup-security.php:1702
4484
- #: admin/mscan/mscan.php:1919 admin/theme-skin/theme-skin.php:220
4485
  msgid "BPS Pro Features & Version Release Dates"
4486
  msgstr ""
4487
 
4488
  #: admin/db-backup-security/db-backup-security.php:1703
4489
- #: admin/mscan/mscan.php:1920 admin/theme-skin/theme-skin.php:221
4490
  msgid "Video Tutorials"
4491
  msgstr ""
4492
 
@@ -4512,7 +4524,7 @@ msgstr ""
4512
 
4513
  #: admin/email-log-settings/email-log-settings.php:101
4514
  #: admin/email-log-settings/email-log-settings.php:103
4515
- #: admin/includes/admin.php:351
4516
  msgid "Email|Log Settings"
4517
  msgstr ""
4518
 
@@ -4662,132 +4674,136 @@ msgid "MScan Malware Scanner Email|Delete Log File When..."
4662
  msgstr ""
4663
 
4664
  #: admin/email-log-settings/email-log-settings.php:215
4665
- #: admin/login/login.php:1618 admin/security-log/security-log.php:817
4666
- #: admin/system-info/system-info.php:1105
4667
  msgid "BulletProof Security Help &amp; FAQ"
4668
  msgstr ""
4669
 
4670
- #: admin/includes/admin.php:313
 
 
 
 
4671
  msgid "BulletProof Security Settings"
4672
  msgstr ""
4673
 
4674
- #: admin/includes/admin.php:313 admin/includes/admin.php:334
4675
  msgid "BPS Security"
4676
  msgstr ""
4677
 
4678
- #: admin/includes/admin.php:314 admin/includes/admin.php:315
4679
  msgid "Login Security ~ JTC-Lite"
4680
  msgstr ""
4681
 
4682
- #: admin/includes/admin.php:314 admin/includes/admin.php:337
4683
  msgid "Login Security"
4684
  msgstr ""
4685
 
4686
- #: admin/includes/admin.php:315 admin/includes/admin.php:338
4687
  #: admin/login/login.php:158 admin/login/login.php:802
4688
  #: admin/login/login.php:804
4689
  msgid "JTC-Lite"
4690
  msgstr ""
4691
 
4692
- #: admin/includes/admin.php:321 admin/includes/admin.php:347
4693
  #: admin/maintenance/maintenance.php:149 admin/maintenance/maintenance.php:181
4694
  #: admin/maintenance/maintenance.php:183
4695
  msgid "Maintenance Mode"
4696
  msgstr ""
4697
 
4698
- #: admin/includes/admin.php:327 admin/includes/admin.php:350
4699
  #: admin/system-info/system-info.php:88
4700
  msgid "System Info"
4701
  msgstr ""
4702
 
4703
- #: admin/includes/admin.php:330 admin/includes/admin.php:352
4704
  #: admin/theme-skin/theme-skin.php:91 admin/theme-skin/theme-skin.php:107
4705
  #: admin/theme-skin/theme-skin.php:109
4706
  msgid "UI|UX Settings"
4707
  msgstr ""
4708
 
4709
- #: admin/includes/admin.php:335
4710
  msgid "htaccess Core"
4711
  msgstr ""
4712
 
4713
- #: admin/includes/admin.php:336
4714
  msgid "MScan ~ Malware Scanner"
4715
  msgstr ""
4716
 
4717
- #: admin/includes/admin.php:336 admin/mscan/mscan.php:113
4718
- #: admin/mscan/mscan.php:129 admin/mscan/mscan.php:131
4719
  msgid "MScan"
4720
  msgstr ""
4721
 
4722
- #: admin/includes/admin.php:337 admin/includes/admin.php:338
4723
- #: admin/includes/admin.php:339
4724
  msgid "Login Security ~ JTC-Lite ~ ISL ~ ACE"
4725
  msgstr ""
4726
 
4727
- #: admin/includes/admin.php:339
4728
  msgid "Idle Session Logout<br>Cookie Expiration"
4729
  msgstr ""
4730
 
4731
- #: admin/includes/admin.php:340
4732
  msgid "DB Backup & Security"
4733
  msgstr ""
4734
 
4735
- #: admin/includes/admin.php:341 admin/security-log/security-log.php:226
4736
  #: admin/security-log/security-log.php:241
4737
  #: admin/security-log/security-log.php:243
4738
  msgid "Security Log"
4739
  msgstr ""
4740
 
4741
- #: admin/includes/admin.php:353 admin/wizard/wizard.php:998
4742
  #: admin/wizard/wizard.php:1028 admin/wizard/wizard.php:1030
4743
- #: bulletproof-security.php:133 bulletproof-security.php:136
4744
  msgid "Setup Wizard"
4745
  msgstr ""
4746
 
4747
- #: admin/includes/admin.php:356 admin/includes/admin.php:364
4748
  #: admin/includes/uninstall.php:45
4749
  msgid "BPS Plugin Uninstall Options"
4750
  msgstr ""
4751
 
4752
- #: admin/includes/admin.php:400
4753
  msgid "BPS UI|UX Debug: SLF: CSS Script Loaded"
4754
  msgstr ""
4755
 
4756
- #: admin/includes/admin.php:430
4757
  msgid "BPS UI|UX Debug: SLF: js Script Loaded"
4758
  msgstr ""
4759
 
4760
- #: admin/includes/admin.php:512
4761
  msgid "BPS UI|UX Debug: Scripts|Styles Dequeued"
4762
  msgstr ""
4763
 
4764
- #: admin/includes/admin.php:524
4765
  msgid "Script Dequeued: "
4766
  msgstr ""
4767
 
4768
- #: admin/includes/admin.php:530
4769
  msgid ""
4770
  "No additional plugin or theme Scripts were found that needed to be Dequeued."
4771
  msgstr ""
4772
 
4773
- #: admin/includes/admin.php:542
4774
  msgid "Style Dequeued: "
4775
  msgstr ""
4776
 
4777
- #: admin/includes/admin.php:548
4778
  msgid ""
4779
  "No additional plugin or theme Styles were found that needed to be Dequeued."
4780
  msgstr ""
4781
 
4782
- #: admin/includes/admin.php:586 admin/includes/admin.php:619
4783
  msgid "BPS UI|UX Debug: WP Toolbar nodes|menu items Removed"
4784
  msgstr ""
4785
 
4786
- #: admin/includes/admin.php:598 admin/includes/admin.php:631
4787
  msgid "WP Toolbar node|menu item Removed: "
4788
  msgstr ""
4789
 
4790
- #: admin/includes/admin.php:606 admin/includes/admin.php:639
4791
  msgid "No WP Toolbar nodes|menu items were Removed in BPS plugin pages"
4792
  msgstr ""
4793
 
@@ -4832,8 +4848,8 @@ msgstr ""
4832
  msgid "Login Security & Monitoring"
4833
  msgstr ""
4834
 
4835
- #: admin/login/login.php:162 admin/login/login.php:1120
4836
- #: admin/login/login.php:1122
4837
  msgid "Idle Session Logout|Auth Cookie Expiration"
4838
  msgstr ""
4839
 
@@ -4874,8 +4890,8 @@ msgstr ""
4874
 
4875
  #: admin/login/login.php:209 admin/login/login.php:306
4876
  #: admin/login/login.php:614 admin/login/login.php:715
4877
- #: admin/mscan/mscan.php:1169 admin/mscan/mscan.php:1381
4878
- #: admin/mscan/mscan.php:1503 admin/mscan/mscan.php:1659
4879
  msgid "Submit"
4880
  msgstr ""
4881
 
@@ -4919,8 +4935,8 @@ msgstr ""
4919
  msgid " Enable Login Security for WooCommerce (BPS Pro Only)"
4920
  msgstr ""
4921
 
4922
- #: admin/login/login.php:431 admin/login/login.php:1261
4923
- #: admin/login/login.php:1536 admin/login/lsm-help-text.php:22
4924
  msgid "Turn On|Turn Off:"
4925
  msgstr ""
4926
 
@@ -5104,7 +5120,7 @@ msgid ""
5104
  msgstr ""
5105
 
5106
  #: admin/login/login.php:614 admin/login/login.php:715
5107
- #: admin/mscan/mscan.php:1382 admin/mscan/mscan.php:1660
5108
  msgid "Clear|Refresh"
5109
  msgstr ""
5110
 
@@ -5141,8 +5157,8 @@ msgid ""
5141
  "auto-commenting) & User Account Lockouts: "
5142
  msgstr ""
5143
 
5144
- #: admin/login/login.php:822 admin/login/login.php:1160
5145
- #: admin/login/login.php:1478
5146
  msgid "Save Options"
5147
  msgstr ""
5148
 
@@ -5239,63 +5255,63 @@ msgid ""
5239
  "Enable|Disable JTC For These Registered/Logged In User Roles (BPS Pro Only): "
5240
  msgstr ""
5241
 
5242
- #: admin/login/login.php:970 admin/login/login.php:1332
5243
- #: admin/login/login.php:1577
5244
  msgid " Administrator"
5245
  msgstr ""
5246
 
5247
- #: admin/login/login.php:971 admin/login/login.php:1333
5248
- #: admin/login/login.php:1578
5249
  msgid " Editor"
5250
  msgstr ""
5251
 
5252
- #: admin/login/login.php:972 admin/login/login.php:1334
5253
- #: admin/login/login.php:1579
5254
  msgid " Author"
5255
  msgstr ""
5256
 
5257
- #: admin/login/login.php:973 admin/login/login.php:1335
5258
- #: admin/login/login.php:1580
5259
  msgid " Contributor"
5260
  msgstr ""
5261
 
5262
- #: admin/login/login.php:974 admin/login/login.php:1336
5263
- #: admin/login/login.php:1581
5264
  msgid " Subscriber"
5265
  msgstr ""
5266
 
5267
- #: admin/login/login.php:990
5268
  msgid "Login Form: CAPTCHA Error message"
5269
  msgstr ""
5270
 
5271
- #: admin/login/login.php:993
5272
  msgid "Comment Form: CAPTCHA Error message (BPS Pro Only)"
5273
  msgstr ""
5274
 
5275
- #: admin/login/login.php:996 admin/login/lsm-help-text.php:19
5276
  msgid "Comment Form: CSS Styling (BPS Pro Only)"
5277
  msgstr ""
5278
 
5279
- #: admin/login/login.php:997
5280
  msgid ""
5281
  "Comment Form Label (BPS Pro Only): <i>The JTC Title|Text above the Form "
5282
  "Input text box</i>"
5283
  msgstr ""
5284
 
5285
- #: admin/login/login.php:999
5286
  msgid ""
5287
  "Comment Form Input Text Box (BPS Pro Only): <i>The JTC CAPTCHA Form Input "
5288
  "text box</i>"
5289
  msgstr ""
5290
 
5291
- #: admin/login/login.php:1002
5292
  msgid ""
5293
  "If you see an error or are unable to save your JTC option settings then "
5294
  "click the Encrypt JTC Code button first and then click the Save Options "
5295
  "button. Mouse over the question mark image to the right for help info."
5296
  msgstr ""
5297
 
5298
- #: admin/login/login.php:1002
5299
  msgid ""
5300
  "If your web host currently has ModSecurity installed or installs ModSecurity "
5301
  "at a later time then ModSecurity will prevent you from saving your JTC "
@@ -5303,144 +5319,144 @@ msgid ""
5303
  "Encrypt JTC Code button."
5304
  msgstr ""
5305
 
5306
- #: admin/login/login.php:1002
5307
  msgid ""
5308
  "If you click the Encrypt JTC Code button and then want to edit your CSS code "
5309
  "again click the Decrypt JTC Code button. After you are done editing click "
5310
  "the Encrypt JTC Code button before clicking the Save Options button."
5311
  msgstr ""
5312
 
5313
- #: admin/login/login.php:1002
5314
  msgid ""
5315
  "Click the JTC Anti-Spam|Anti-Hacker Read Me help button for more help info."
5316
  msgstr ""
5317
 
5318
- #: admin/login/login.php:1004 admin/login/login.php:1361
5319
- #: admin/login/login.php:1596 admin/security-log/security-log.php:453
5320
  msgid "Click OK to Proceed or click Cancel."
5321
  msgstr ""
5322
 
5323
- #: admin/login/login.php:1115
5324
  msgid "Idle Session Logout (ISL) ~ "
5325
  msgstr ""
5326
 
5327
- #: admin/login/login.php:1115
5328
  msgid "Automatically Logout Idle/Inactive User Accounts"
5329
  msgstr ""
5330
 
5331
- #: admin/login/login.php:1115
5332
  msgid "Auth Cookie Expiration (ACE) ~ "
5333
  msgstr ""
5334
 
5335
- #: admin/login/login.php:1115
5336
  msgid "Change the WordPress Authentication Cookie Expiration Time"
5337
  msgstr ""
5338
 
5339
- #: admin/login/login.php:1136
5340
  msgid "ISL and ACE Forum Topic"
5341
  msgstr ""
5342
 
5343
- #: admin/login/login.php:1140
5344
  msgid "The Help & FAQ tab pages contain help links."
5345
  msgstr ""
5346
 
5347
- #: admin/login/login.php:1238
5348
  msgid "Settings Saved. ISL has been turned On."
5349
  msgstr ""
5350
 
5351
- #: admin/login/login.php:1244
5352
  msgid "Settings Saved. ISL has been turned Off."
5353
  msgstr ""
5354
 
5355
- #: admin/login/login.php:1256
5356
  msgid "Idle Session Logout (ISL) Settings"
5357
  msgstr ""
5358
 
5359
- #: admin/login/login.php:1263
5360
  msgid "ISL On"
5361
  msgstr ""
5362
 
5363
- #: admin/login/login.php:1264
5364
  msgid "ISL Off"
5365
  msgstr ""
5366
 
5367
- #: admin/login/login.php:1270 admin/login/lsm-help-text.php:22
5368
  msgid "Idle Session Logout Time in Minutes:"
5369
  msgstr ""
5370
 
5371
- #: admin/login/login.php:1276 admin/login/lsm-help-text.php:22
5372
  msgid "Idle Session Logout Page URL:"
5373
  msgstr ""
5374
 
5375
- #: admin/login/login.php:1282 admin/login/lsm-help-text.php:22
5376
  msgid "Idle Session Logout Page Login URL:"
5377
  msgstr ""
5378
 
5379
- #: admin/login/login.php:1283
5380
  msgid ""
5381
  "Enter/Type: \"No\" (without quotes) if you do not want a Login URL displayed."
5382
  msgstr ""
5383
 
5384
- #: admin/login/login.php:1289 admin/login/lsm-help-text.php:22
5385
  msgid "Idle Session Logout Exclude URLs|URIs:"
5386
  msgstr ""
5387
 
5388
- #: admin/login/login.php:1290
5389
  msgid "Enter URIs separated by a comma and a space: /some-post/, /some-page/"
5390
  msgstr ""
5391
 
5392
- #: admin/login/login.php:1297 admin/login/lsm-help-text.php:22
5393
  msgid "Idle Session Logout Page Custom Message:"
5394
  msgstr ""
5395
 
5396
- #: admin/login/login.php:1304 admin/login/lsm-help-text.php:22
5397
  msgid "Idle Session Logout Page Custom CSS Style:"
5398
  msgstr ""
5399
 
5400
- #: admin/login/login.php:1321 admin/login/login.php:1566
5401
  #: admin/login/lsm-help-text.php:22
5402
  msgid "User Account Exceptions:"
5403
  msgstr ""
5404
 
5405
- #: admin/login/login.php:1322 admin/login/login.php:1567
5406
  msgid ""
5407
  "Enter User Account names separated by a comma and a space: johnDoe, janeDoe"
5408
  msgstr ""
5409
 
5410
- #: admin/login/login.php:1323
5411
  msgid "Idle Session Logout Time Will Not Be Applied For These User Accounts."
5412
  msgstr ""
5413
 
5414
- #: admin/login/login.php:1329
5415
  msgid "Enable|Disable Idle Session Logouts For These User Roles: "
5416
  msgstr ""
5417
 
5418
- #: admin/login/login.php:1330 admin/login/login.php:1575
5419
  msgid ""
5420
  "Check to Enable. Uncheck to Disable. See the Read Me help button for details."
5421
  msgstr ""
5422
 
5423
- #: admin/login/login.php:1355
5424
  msgid "Enable|Disable Idle Session Logouts For TinyMCE Editors: "
5425
  msgstr ""
5426
 
5427
- #: admin/login/login.php:1356 admin/login/login.php:1560
5428
  msgid ""
5429
  "Check to Disable. Uncheck to Enable. See the Read Me help button for details."
5430
  msgstr ""
5431
 
5432
- #: admin/login/login.php:1357
5433
  msgid " Enable|Disable ISL For TinyMCE Editor"
5434
  msgstr ""
5435
 
5436
- #: admin/login/login.php:1359
5437
  msgid ""
5438
  "If you see an error or are unable to save your ISL option settings then "
5439
  "click the Encrypt ISL Code button first and then click the Save Options "
5440
  "button. Mouse over the question mark image to the right for help info."
5441
  msgstr ""
5442
 
5443
- #: admin/login/login.php:1359
5444
  msgid ""
5445
  "If your web host currently has ModSecurity installed or installs ModSecurity "
5446
  "at a later time then ModSecurity will prevent you from saving your ISL "
@@ -5448,68 +5464,68 @@ msgid ""
5448
  "Encrypt ISL Code button."
5449
  msgstr ""
5450
 
5451
- #: admin/login/login.php:1359
5452
  msgid ""
5453
  "If you click the Encrypt ISL Code button and then want to edit your CSS code "
5454
  "again click the Decrypt ISL Code button. After you are done editing click "
5455
  "the Encrypt ISL Code button before clicking the Save Options button."
5456
  msgstr ""
5457
 
5458
- #: admin/login/login.php:1359
5459
  msgid ""
5460
  "Click the Idle Session Logout|Auth Cookie Expiration Read Me help button for "
5461
  "more help info."
5462
  msgstr ""
5463
 
5464
- #: admin/login/login.php:1466
5465
  msgid "WordPress Authentication Cookie Expiration (ACE) Settings"
5466
  msgstr ""
5467
 
5468
- #: admin/login/login.php:1517
5469
  msgid "Settings Saved. ACE has been turned On."
5470
  msgstr ""
5471
 
5472
- #: admin/login/login.php:1523
5473
  msgid "Settings Saved. ACE has been turned Off."
5474
  msgstr ""
5475
 
5476
- #: admin/login/login.php:1538
5477
  msgid "ACE On"
5478
  msgstr ""
5479
 
5480
- #: admin/login/login.php:1539
5481
  msgid "ACE Off"
5482
  msgstr ""
5483
 
5484
- #: admin/login/login.php:1545 admin/login/lsm-help-text.php:22
5485
  msgid "Auth Cookie Expiration Time in Minutes:"
5486
  msgstr ""
5487
 
5488
- #: admin/login/login.php:1546
5489
  msgid "WP Default setting is 2880 Minutes/2 Days:"
5490
  msgstr ""
5491
 
5492
- #: admin/login/login.php:1552 admin/login/lsm-help-text.php:22
5493
  msgid "Remember Me Auth Cookie Expiration Time in Minutes:"
5494
  msgstr ""
5495
 
5496
- #: admin/login/login.php:1553
5497
  msgid "WP Default setting is 20160 Minutes/14 Days:"
5498
  msgstr ""
5499
 
5500
- #: admin/login/login.php:1559 admin/login/lsm-help-text.php:22
5501
  msgid "Enable|Disable Remember Me Checkbox:"
5502
  msgstr ""
5503
 
5504
- #: admin/login/login.php:1561
5505
  msgid " Disable & do not display the Remember Me checkbox"
5506
  msgstr ""
5507
 
5508
- #: admin/login/login.php:1568
5509
  msgid "Auth Cookie Expiration Time Will Not Be Applied To These User Accounts."
5510
  msgstr ""
5511
 
5512
- #: admin/login/login.php:1574
5513
  msgid "Enable|Disable Auth Cookie Expiration Time For These User Roles: "
5514
  msgstr ""
5515
 
@@ -5703,8 +5719,8 @@ msgid ""
5703
  msgstr ""
5704
 
5705
  #: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:528
5706
- #: includes/hud-dismiss-functions.php:347
5707
- #: includes/hud-dismiss-functions.php:390
5708
  msgid "CAUTION: "
5709
  msgstr ""
5710
 
@@ -6772,9 +6788,9 @@ msgstr ""
6772
 
6773
  #: admin/maintenance/maintenance.php:376 admin/maintenance/maintenance.php:396
6774
  #: admin/wizard/wizard.php:176 includes/general-functions.php:509
6775
- #: includes/hud-dismiss-functions.php:347
6776
- #: includes/hud-dismiss-functions.php:390
6777
- #: includes/hud-dismiss-functions.php:495
6778
  msgid "Click Here"
6779
  msgstr ""
6780
 
@@ -7205,7 +7221,7 @@ msgstr ""
7205
  msgid "Clicking the Stop Scan button stops a scan."
7206
  msgstr ""
7207
 
7208
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:925
7209
  msgid "Hosting Account Root Folders"
7210
  msgstr ""
7211
 
@@ -7238,7 +7254,7 @@ msgid ""
7238
  "than 300 seconds."
7239
  msgstr ""
7240
 
7241
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1009
7242
  msgid "Scan Database"
7243
  msgstr ""
7244
 
@@ -7248,7 +7264,7 @@ msgid ""
7248
  "suspicious code."
7249
  msgstr ""
7250
 
7251
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1015
7252
  msgid "Scan Image Files (Stegosploit|Exif Hack)"
7253
  msgstr ""
7254
 
@@ -7259,7 +7275,7 @@ msgid ""
7259
  "hacks. It is recommended that you do not scan image files."
7260
  msgstr ""
7261
 
7262
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1021
7263
  msgid "Scan Skipped Files Only"
7264
  msgstr ""
7265
 
@@ -7271,7 +7287,7 @@ msgid ""
7271
  "MScan option settings when running a Skipped File scan."
7272
  msgstr ""
7273
 
7274
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1027
7275
  msgid "Automatically Delete /tmp Files"
7276
  msgstr ""
7277
 
@@ -7281,7 +7297,7 @@ msgid ""
7281
  "commonly hide hacker files in the /tmp folder."
7282
  msgstr ""
7283
 
7284
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1033
7285
  msgid "Scheduled Scan Frequency (BPS Pro only)"
7286
  msgstr ""
7287
 
@@ -7335,7 +7351,7 @@ msgid ""
7335
  "using this tool."
7336
  msgstr ""
7337
 
7338
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1096
7339
  msgid "View|Ignore|Delete Suspicious Files"
7340
  msgstr ""
7341
 
@@ -7350,7 +7366,7 @@ msgid ""
7350
  "ignored file it will be scanned in future scans."
7351
  msgstr ""
7352
 
7353
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1433
7354
  msgid "View|Ignore Suspicious DB Entries"
7355
  msgstr ""
7356
 
@@ -7457,8 +7473,8 @@ msgid ""
7457
  "php.ini file."
7458
  msgstr ""
7459
 
7460
- #: admin/mscan/mscan.php:114 admin/mscan/mscan.php:1715
7461
- #: admin/mscan/mscan.php:1717
7462
  msgid "MScan Log"
7463
  msgstr ""
7464
 
@@ -7478,23 +7494,39 @@ msgid ""
7478
  "malware scanners: "
7479
  msgstr ""
7480
 
7481
- #: admin/mscan/mscan.php:139 includes/hud-dismiss-functions.php:679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7482
  msgid "MScan Malware Scanner Guide"
7483
  msgstr ""
7484
 
7485
- #: admin/mscan/mscan.php:140
7486
  msgid "MScan Troubleshooting & Code Posting"
7487
  msgstr ""
7488
 
7489
- #: admin/mscan/mscan.php:181
7490
  msgid "The MScan Database Table: "
7491
  msgstr ""
7492
 
7493
- #: admin/mscan/mscan.php:181
7494
  msgid " data has been deleted."
7495
  msgstr ""
7496
 
7497
- #: admin/mscan/mscan.php:217
7498
  msgid ""
7499
  "MScan Status option values have been deleted. The Scan Completed timestamp, "
7500
  "Total Scan Time, Total Files Scanned, Skipped Files, Suspicious Files and "
@@ -7502,26 +7534,26 @@ msgid ""
7502
  "display blank or 0"
7503
  msgstr ""
7504
 
7505
- #: admin/mscan/mscan.php:258 admin/mscan/mscan.php:320
7506
- #: admin/mscan/mscan.php:543 admin/mscan/mscan.php:808
7507
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7508
  msgstr ""
7509
 
7510
- #: admin/mscan/mscan.php:262 admin/mscan/mscan.php:324
7511
- #: admin/mscan/mscan.php:421 admin/mscan/mscan.php:498
7512
- #: admin/mscan/mscan.php:816
7513
  msgid ""
7514
  "Image file scanning is turned On. On some web hosts scanning image files "
7515
  "will cause the scan to stop/fail."
7516
  msgstr ""
7517
 
7518
- #: admin/mscan/mscan.php:266
7519
  msgid ""
7520
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7521
  "Scan Time Estimate Tool from calculating estimated scan time."
7522
  msgstr ""
7523
 
7524
- #: admin/mscan/mscan.php:336
7525
  msgid ""
7526
  "Calculating Scan Time. The default scan time calculation time of 30 seconds "
7527
  "was exceeded. If it takes longer than 30 seconds to calculate total scan "
@@ -7534,82 +7566,82 @@ msgid ""
7534
  "see if the the estimated scan time was successfully logged."
7535
  msgstr ""
7536
 
7537
- #: admin/mscan/mscan.php:336
7538
  msgid "Refresh"
7539
  msgstr ""
7540
 
7541
- #: admin/mscan/mscan.php:344
7542
  msgid ""
7543
  "The estimated total scan time is more than the Max Time Limit to Scan option "
7544
  "setting time limit."
7545
  msgstr ""
7546
 
7547
- #: admin/mscan/mscan.php:344
7548
  msgid ""
7549
  "The scan will automatically end/stop when the Max Time Limit to Scan option "
7550
  "setting time limit is reached."
7551
  msgstr ""
7552
 
7553
- #: admin/mscan/mscan.php:344
7554
  msgid "Estimated Total Scan Time: "
7555
  msgstr ""
7556
 
7557
- #: admin/mscan/mscan.php:344
7558
  msgid "Max Time Limit to Scan: "
7559
  msgstr ""
7560
 
7561
- #: admin/mscan/mscan.php:344
7562
  msgid "Click the MScan Read Me help button for a recommended solution."
7563
  msgstr ""
7564
 
7565
- #: admin/mscan/mscan.php:350
7566
  msgid ""
7567
  "MScan Scanning has started. You can leave the MScan page while a scan is in "
7568
  "progress and the scan will continue until it is completed or you can open "
7569
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7570
  msgstr ""
7571
 
7572
- #: admin/mscan/mscan.php:363 admin/mscan/mscan.php:369
7573
  msgid "Suspicious code or files were detected."
7574
  msgstr ""
7575
 
7576
- #: admin/mscan/mscan.php:363 admin/mscan/mscan.php:369
7577
  msgid ""
7578
  "Click the View|Ignore|Delete Suspicious Files accordion tab to View, Ignore "
7579
  "or Delete suspicious files. For additional help information click the MScan "
7580
  "Read Me help button."
7581
  msgstr ""
7582
 
7583
- #: admin/mscan/mscan.php:373
7584
  msgid "Suspicious code was detected in your database."
7585
  msgstr ""
7586
 
7587
- #: admin/mscan/mscan.php:373
7588
  msgid ""
7589
  "Click the View|Ignore Suspicious DB Entries accordion tab to view and ignore "
7590
  "suspicious db entries. For additional help information click the MScan Read "
7591
  "Me help button."
7592
  msgstr ""
7593
 
7594
- #: admin/mscan/mscan.php:378
7595
  msgid ""
7596
  "MScan Scan has completed. To view extensive details of all scanning phases "
7597
  "view the MScan Log file."
7598
  msgstr ""
7599
 
7600
- #: admin/mscan/mscan.php:417
7601
  msgid ""
7602
  "Skipped file scanning is turned On. The scan time estimate is for scanning "
7603
  "skipped files only."
7604
  msgstr ""
7605
 
7606
- #: admin/mscan/mscan.php:425
7607
  msgid ""
7608
  "The total estimated time of an actual scan based on your MScan option "
7609
  "settings is: "
7610
  msgstr ""
7611
 
7612
- #: admin/mscan/mscan.php:425
7613
  msgid ""
7614
  "Seconds. The MScan Log file contains extensive details about the estimated "
7615
  "scan time. Note: The Scan Time Estimate Tool does not affect or change any "
@@ -7617,13 +7649,13 @@ msgid ""
7617
  "to the estimated scan time."
7618
  msgstr ""
7619
 
7620
- #: admin/mscan/mscan.php:494
7621
  msgid ""
7622
  "Skipped file scanning is turned On. The scan time estimate will be for "
7623
  "scanning skipped files only."
7624
  msgstr ""
7625
 
7626
- #: admin/mscan/mscan.php:502
7627
  msgid ""
7628
  "Calculating Estimated Scan Time. Notes: The Scan Time Estimate Tool does not "
7629
  "affect or change any previous scan results except for the Total Scan Time, "
@@ -7632,41 +7664,41 @@ msgid ""
7632
  "the estimated scan time."
7633
  msgstr ""
7634
 
7635
- #: admin/mscan/mscan.php:547
7636
  msgid ""
7637
  "Calculating Scan Time. You can leave the MScan page while a scan is in "
7638
  "progress and the scan will continue until it is completed or you can open "
7639
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7640
  msgstr ""
7641
 
7642
- #: admin/mscan/mscan.php:703
7643
  msgid "Click OK to start scanning or click Cancel."
7644
  msgstr ""
7645
 
7646
- #: admin/mscan/mscan.php:710
7647
  msgid "Click OK to stop scanning or click Cancel."
7648
  msgstr ""
7649
 
7650
- #: admin/mscan/mscan.php:717
7651
  msgid "MScan Options & Tools"
7652
  msgstr ""
7653
 
7654
- #: admin/mscan/mscan.php:730
7655
  msgid "Save MScan Options"
7656
  msgstr ""
7657
 
7658
- #: admin/mscan/mscan.php:812
7659
  msgid ""
7660
  "Skipped file scanning is turned On. There are no skipped files to be "
7661
  "scanned. Either there really are not any skipped files to scan or you have "
7662
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7663
  msgstr ""
7664
 
7665
- #: admin/mscan/mscan.php:820
7666
  msgid "Warning: "
7667
  msgstr ""
7668
 
7669
- #: admin/mscan/mscan.php:820
7670
  msgid ""
7671
  "On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
7672
  "\"Automatically Delete /tmp Files\" option setting will cause your website/"
@@ -7675,124 +7707,124 @@ msgid ""
7675
  "has crashed."
7676
  msgstr ""
7677
 
7678
- #: admin/mscan/mscan.php:824
7679
  msgid "MScan Options saved."
7680
  msgstr ""
7681
 
7682
- #: admin/mscan/mscan.php:926
7683
  msgid "MScan Options"
7684
  msgstr ""
7685
 
7686
- #: admin/mscan/mscan.php:927
7687
  msgid "MScan Tools"
7688
  msgstr ""
7689
 
7690
- #: admin/mscan/mscan.php:940
7691
  msgid "Folder Name"
7692
  msgstr ""
7693
 
7694
- #: admin/mscan/mscan.php:956
7695
  msgid "Folder is not readable"
7696
  msgstr ""
7697
 
7698
- #: admin/mscan/mscan.php:969
7699
  msgid ""
7700
  "This folder contains another WordPress website. Click the MScan Read Me help "
7701
  "button above and read the \"Scanning Other WordPress Sites\" help section."
7702
  msgstr ""
7703
 
7704
- #: admin/mscan/mscan.php:995
7705
  msgid "Max File Size Limit to Scan:"
7706
  msgstr ""
7707
 
7708
- #: admin/mscan/mscan.php:999
7709
  msgid "Max Time Limit to Scan:"
7710
  msgstr ""
7711
 
7712
- #: admin/mscan/mscan.php:1003
7713
  msgid "Exclude Individual Folders"
7714
  msgstr ""
7715
 
7716
- #: admin/mscan/mscan.php:1003
7717
  msgid "Enter one folder path per line. Include folder slashes."
7718
  msgstr ""
7719
 
7720
- #: admin/mscan/mscan.php:1003
7721
  msgid "Example:"
7722
  msgstr ""
7723
 
7724
- #: admin/mscan/mscan.php:1003 admin/mscan/mscan.php:1021
7725
  msgid "Click the MScan Read Me help button for more help info."
7726
  msgstr ""
7727
 
7728
- #: admin/mscan/mscan.php:1011
7729
  msgid "Database Scan On"
7730
  msgstr ""
7731
 
7732
- #: admin/mscan/mscan.php:1012
7733
  msgid "Database Scan Off"
7734
  msgstr ""
7735
 
7736
- #: admin/mscan/mscan.php:1017
7737
  msgid "Image File Scan Off"
7738
  msgstr ""
7739
 
7740
- #: admin/mscan/mscan.php:1018
7741
  msgid "Image File Scan On"
7742
  msgstr ""
7743
 
7744
- #: admin/mscan/mscan.php:1021
7745
  msgid ""
7746
  "When Skipped File Scan is On only skipped files will be scanned. Note: The "
7747
  "only MScan option setting that has any affect while Skipped File Scan is On "
7748
  "is Image File Scan On or Off."
7749
  msgstr ""
7750
 
7751
- #: admin/mscan/mscan.php:1023
7752
  msgid "Skipped File Scan Off"
7753
  msgstr ""
7754
 
7755
- #: admin/mscan/mscan.php:1024
7756
  msgid "Skipped File Scan On"
7757
  msgstr ""
7758
 
7759
- #: admin/mscan/mscan.php:1029
7760
  msgid "Delete Tmp Files Off"
7761
  msgstr ""
7762
 
7763
- #: admin/mscan/mscan.php:1030
7764
  msgid "Delete Tmp Files On"
7765
  msgstr ""
7766
 
7767
- #: admin/mscan/mscan.php:1035
7768
  msgid "Scheduled Scan Off"
7769
  msgstr ""
7770
 
7771
- #: admin/mscan/mscan.php:1036
7772
  msgid "Run Scan Every 60 Minutes"
7773
  msgstr ""
7774
 
7775
- #: admin/mscan/mscan.php:1037
7776
  msgid "Run Scan Every 3 Hours"
7777
  msgstr ""
7778
 
7779
- #: admin/mscan/mscan.php:1038
7780
  msgid "Run Scan Every 6 Hours"
7781
  msgstr ""
7782
 
7783
- #: admin/mscan/mscan.php:1039
7784
  msgid "Run Scan Every 12 Hours"
7785
  msgstr ""
7786
 
7787
- #: admin/mscan/mscan.php:1040
7788
  msgid "Run Scan Every 24 Hours"
7789
  msgstr ""
7790
 
7791
- #: admin/mscan/mscan.php:1043
7792
  msgid "Click OK to save MScan Options or click Cancel"
7793
  msgstr ""
7794
 
7795
- #: admin/mscan/mscan.php:1052
7796
  msgid ""
7797
  "IMPORTANT: You can stop the scan time estimate if it hangs or is taking too "
7798
  "long by clicking the Stop Scan button.\\n"
@@ -7811,7 +7843,7 @@ msgid ""
7811
  "OK to get a scan time estimate or click Cancel"
7812
  msgstr ""
7813
 
7814
- #: admin/mscan/mscan.php:1057
7815
  msgid ""
7816
  "This tool allows you to delete all of the MScan Status option values.\\n"
7817
  "\\n-------------------------------------------------------------\\n\\nThe "
@@ -7823,7 +7855,7 @@ msgid ""
7823
  "OK to delete scan status option values or click Cancel"
7824
  msgstr ""
7825
 
7826
- #: admin/mscan/mscan.php:1062
7827
  msgid ""
7828
  "Deleting all database scan data is a reset that deletes any/all changes you "
7829
  "have made and saved using the View|Ignore|Delete Suspicious Files and View|"
@@ -7832,134 +7864,134 @@ msgid ""
7832
  "OK to delete all database Scan Data or click Cancel"
7833
  msgstr ""
7834
 
7835
- #: admin/mscan/mscan.php:1210
7836
  msgid " has been deleted."
7837
  msgstr ""
7838
 
7839
- #: admin/mscan/mscan.php:1231
7840
  msgid ""
7841
  " Current Status has been changed to Ignored File and this file will not be "
7842
  "scanned in any future MScan Scans."
7843
  msgstr ""
7844
 
7845
- #: admin/mscan/mscan.php:1252
7846
  msgid ""
7847
  " Ignored File Status has been removed. The previous Status of the file will "
7848
  "be displayed again and this file will be scanned in future MScan scans."
7849
  msgstr ""
7850
 
7851
- #: admin/mscan/mscan.php:1274 admin/mscan/mscan.php:1283
7852
  msgid "Close File"
7853
  msgstr ""
7854
 
7855
- #: admin/mscan/mscan.php:1274 admin/mscan/mscan.php:1283
7856
- #: admin/mscan/mscan.php:1580
7857
  msgid "MScan Pattern Match"
7858
  msgstr ""
7859
 
7860
- #: admin/mscan/mscan.php:1274
7861
  msgid ""
7862
  "Only the MScan Pattern Match is displayed for images instead of the image "
7863
  "file code."
7864
  msgstr ""
7865
 
7866
- #: admin/mscan/mscan.php:1274
7867
  msgid ""
7868
  "Opening image files to view image file code does not work well in a Browser."
7869
  msgstr ""
7870
 
7871
- #: admin/mscan/mscan.php:1274
7872
  msgid ""
7873
  "You can download suspicious image files and use a code editor like Notepad++ "
7874
  "to check image file code for any malicious code."
7875
  msgstr ""
7876
 
7877
- #: admin/mscan/mscan.php:1274 admin/mscan/mscan.php:1283
7878
- #: admin/mscan/mscan.php:1580
7879
  msgid ""
7880
  "If you are not sure what to check for or what is and is not malicious code "
7881
  "then click the MScan Read Me help button."
7882
  msgstr ""
7883
 
7884
- #: admin/mscan/mscan.php:1283
7885
  msgid ""
7886
  "You can use your Browser's Search or Find feature to search the file "
7887
  "contents/code displayed below using the MScan Pattern Match above for the "
7888
  "suspicious code that was detected by MScan."
7889
  msgstr ""
7890
 
7891
- #: admin/mscan/mscan.php:1283
7892
  msgid ""
7893
  "You can download suspicious files if you would like to check the file "
7894
  "contents/code more extensively with a code editor like Notepad++."
7895
  msgstr ""
7896
 
7897
- #: admin/mscan/mscan.php:1311 admin/mscan/mscan.php:1602
7898
  msgid "Current Status"
7899
  msgstr ""
7900
 
7901
- #: admin/mscan/mscan.php:1312
7902
  msgid "View<br>File"
7903
  msgstr ""
7904
 
7905
- #: admin/mscan/mscan.php:1313
7906
  msgid "Ignore<br>File"
7907
  msgstr ""
7908
 
7909
- #: admin/mscan/mscan.php:1314
7910
  msgid "Unignore<br>File"
7911
  msgstr ""
7912
 
7913
- #: admin/mscan/mscan.php:1315
7914
  msgid "Delete<br>File"
7915
  msgstr ""
7916
 
7917
- #: admin/mscan/mscan.php:1316 admin/system-info/system-info.php:923
7918
- #: admin/system-info/system-info.php:963
7919
  msgid "File Path"
7920
  msgstr ""
7921
 
7922
- #: admin/mscan/mscan.php:1317 admin/mscan/mscan.php:1609
7923
  msgid "Pattern<br>Match"
7924
  msgstr ""
7925
 
7926
- #: admin/mscan/mscan.php:1318 admin/mscan/mscan.php:1610
7927
  msgid "Scan<br>Time"
7928
  msgstr ""
7929
 
7930
- #: admin/mscan/mscan.php:1331
7931
  msgid "Skipped File"
7932
  msgstr ""
7933
 
7934
- #: admin/mscan/mscan.php:1331
7935
  msgid "Not Scanned"
7936
  msgstr ""
7937
 
7938
- #: admin/mscan/mscan.php:1335 admin/mscan/mscan.php:1342
7939
  msgid "Ignored File"
7940
  msgstr ""
7941
 
7942
- #: admin/mscan/mscan.php:1347
7943
  msgid "Suspicious File"
7944
  msgstr ""
7945
 
7946
- #: admin/mscan/mscan.php:1353 admin/mscan/mscan.php:1631
7947
  msgid "View"
7948
  msgstr ""
7949
 
7950
- #: admin/mscan/mscan.php:1354 admin/mscan/mscan.php:1632
7951
  msgid "Ignore"
7952
  msgstr ""
7953
 
7954
- #: admin/mscan/mscan.php:1356 admin/mscan/mscan.php:1633
7955
  msgid "Unignore"
7956
  msgstr ""
7957
 
7958
- #: admin/mscan/mscan.php:1367
7959
  msgid "No Suspicious Files were detected"
7960
  msgstr ""
7961
 
7962
- #: admin/mscan/mscan.php:1381
7963
  msgid ""
7964
  "View File Option: Selecting the View File Checkbox Form option will display "
7965
  "the contents of the file that you have selected to view.\\n"
@@ -7979,45 +8011,45 @@ msgid ""
7979
  "OK to proceed or click Cancel"
7980
  msgstr ""
7981
 
7982
- #: admin/mscan/mscan.php:1537
7983
  msgid "Current Status has been changed to Ignored for DB Row ID"
7984
  msgstr ""
7985
 
7986
- #: admin/mscan/mscan.php:1537 admin/mscan/mscan.php:1556
7987
  msgid "in DB Column"
7988
  msgstr ""
7989
 
7990
- #: admin/mscan/mscan.php:1537
7991
  msgid "This DB Entry will not be scanned in any future MScan Scans."
7992
  msgstr ""
7993
 
7994
- #: admin/mscan/mscan.php:1556
7995
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
7996
  msgstr ""
7997
 
7998
- #: admin/mscan/mscan.php:1556
7999
  msgid ""
8000
  "The previous Status of the DB Entry will be displayed again and this DB "
8001
  "Entry will be scanned in future MScan scans."
8002
  msgstr ""
8003
 
8004
- #: admin/mscan/mscan.php:1575 admin/mscan/mscan.php:1580
8005
  msgid "Close"
8006
  msgstr ""
8007
 
8008
- #: admin/mscan/mscan.php:1575
8009
  msgid "Pharma Hack DB Table and Column"
8010
  msgstr ""
8011
 
8012
- #: admin/mscan/mscan.php:1575
8013
  msgid "Pharma Hack cleanup/removal steps"
8014
  msgstr ""
8015
 
8016
- #: admin/mscan/mscan.php:1575
8017
  msgid "Edit your theme's header.php file and delete this code: "
8018
  msgstr ""
8019
 
8020
- #: admin/mscan/mscan.php:1575
8021
  msgid ""
8022
  "Delete this file in your theme's root folder: nav.php. Login to your web "
8023
  "host control panel, login to your WP Database using phpMyAdmin and delete "
@@ -8026,58 +8058,58 @@ msgid ""
8026
  "any that you do see."
8027
  msgstr ""
8028
 
8029
- #: admin/mscan/mscan.php:1580
8030
  msgid "DB Table, Column and Row ID"
8031
  msgstr ""
8032
 
8033
- #: admin/mscan/mscan.php:1580
8034
  msgid "Steps to view the database data that MScan detected as suspicious"
8035
  msgstr ""
8036
 
8037
- #: admin/mscan/mscan.php:1580
8038
  msgid ""
8039
  "Login to your web host control panel, login to your WP Database using "
8040
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
8041
  "above. Note: Look for code that matches the MScan Pattern Match."
8042
  msgstr ""
8043
 
8044
- #: admin/mscan/mscan.php:1603
8045
  msgid "View<br>DB Entry"
8046
  msgstr ""
8047
 
8048
- #: admin/mscan/mscan.php:1604
8049
  msgid "Ignore<br>DB Entry"
8050
  msgstr ""
8051
 
8052
- #: admin/mscan/mscan.php:1605
8053
  msgid "Unignore<br>DB Entry"
8054
  msgstr ""
8055
 
8056
- #: admin/mscan/mscan.php:1606
8057
  msgid "DB Table"
8058
  msgstr ""
8059
 
8060
- #: admin/mscan/mscan.php:1607
8061
  msgid "DB Column"
8062
  msgstr ""
8063
 
8064
- #: admin/mscan/mscan.php:1608
8065
  msgid "DB Row ID"
8066
  msgstr ""
8067
 
8068
- #: admin/mscan/mscan.php:1621
8069
  msgid "Ignored DB Entry"
8070
  msgstr ""
8071
 
8072
- #: admin/mscan/mscan.php:1626
8073
  msgid "Suspicious DB Entry"
8074
  msgstr ""
8075
 
8076
- #: admin/mscan/mscan.php:1644
8077
  msgid "No Suspicious DB Entries were detected"
8078
  msgstr ""
8079
 
8080
- #: admin/mscan/mscan.php:1659
8081
  msgid ""
8082
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
8083
  "display the contents of the DB Table, Column and Row ID that you have "
@@ -8095,76 +8127,76 @@ msgid ""
8095
  "OK to proceed or click Cancel"
8096
  msgstr ""
8097
 
8098
- #: admin/mscan/mscan.php:1710
8099
  msgid "MScan Log ~ "
8100
  msgstr ""
8101
 
8102
- #: admin/mscan/mscan.php:1710
8103
  msgid ""
8104
  "Logs MScan Settings, Completion Time, Memory Usage, Zip Backup File Name, "
8105
  "Timestamp..."
8106
  msgstr ""
8107
 
8108
- #: admin/mscan/mscan.php:1741
8109
  msgid "Click the Reset Last Modified Time in DB button"
8110
  msgstr ""
8111
 
8112
- #: admin/mscan/mscan.php:1741
8113
  msgid "to set the"
8114
  msgstr ""
8115
 
8116
- #: admin/mscan/mscan.php:1746 admin/mscan/mscan.php:1751
8117
  msgid "Last Modified Time in DB:"
8118
  msgstr ""
8119
 
8120
- #: admin/mscan/mscan.php:1764 admin/mscan/mscan.php:1767
8121
  msgid "MScan Log File Size: "
8122
  msgstr ""
8123
 
8124
- #: admin/mscan/mscan.php:1767
8125
  msgid ""
8126
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
8127
  "size."
8128
  msgstr ""
8129
 
8130
- #: admin/mscan/mscan.php:1767
8131
  msgid ""
8132
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
8133
  "computer and save it."
8134
  msgstr ""
8135
 
8136
- #: admin/mscan/mscan.php:1778
8137
  msgid "MScan Log Last Modified Time:"
8138
  msgstr ""
8139
 
8140
- #: admin/mscan/mscan.php:1780
8141
  msgid "Last Modified Time in File:"
8142
  msgstr ""
8143
 
8144
- #: admin/mscan/mscan.php:1799
8145
  msgid ""
8146
  "Success! Your MScan Log has been deleted and replaced with a new blank MScan "
8147
  "Log file."
8148
  msgstr ""
8149
 
8150
- #: admin/mscan/mscan.php:1809
8151
  msgid "Clicking OK will delete the contents of your MScan Log file."
8152
  msgstr ""
8153
 
8154
- #: admin/mscan/mscan.php:1828
8155
  msgid ""
8156
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
8157
  msgstr ""
8158
 
8159
- #: admin/mscan/mscan.php:1828
8160
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
8161
  msgstr ""
8162
 
8163
- #: admin/mscan/mscan.php:1847
8164
  msgid "File Open and Write test successful! Your MScan Log file is writable."
8165
  msgstr ""
8166
 
8167
- #: admin/mscan/mscan.php:1859 admin/mscan/mscan.php:1863
8168
  msgid "Success! Your MScan Log file has been updated."
8169
  msgstr ""
8170
 
@@ -8780,14 +8812,14 @@ msgstr ""
8780
  msgid "/bps-backup/logs/http_error_log.txt and is named correctly."
8781
  msgstr ""
8782
 
8783
- #: admin/security-log/security-log.php:750
8784
  msgid ""
8785
  "File Open and Write test successful! Your Security Log file is writable. "
8786
  "Click the View Log button."
8787
  msgstr ""
8788
 
8789
- #: admin/security-log/security-log.php:772
8790
- #: admin/security-log/security-log.php:776
8791
  msgid "Success! Your Security Log file has been updated."
8792
  msgstr ""
8793
 
@@ -8928,675 +8960,676 @@ msgstr ""
8928
  msgid "SQL Database Info|WordPress Site Info|Misc Checks"
8929
  msgstr ""
8930
 
8931
- #: admin/system-info/system-info.php:198 admin/system-info/system-info.php:201
8932
- #: admin/system-info/system-info.php:204
8933
  msgid "Server|Website IP Address: "
8934
  msgstr ""
8935
 
8936
- #: admin/system-info/system-info.php:215
8937
  msgid "HTTP_CLIENT_IP IP Address: "
8938
  msgstr ""
8939
 
8940
- #: admin/system-info/system-info.php:218
8941
  msgid "Proxy X-Forwarded-For IP Address: "
8942
  msgstr ""
8943
 
8944
- #: admin/system-info/system-info.php:221
8945
  msgid "Public Internet IP Address (ISP): "
8946
  msgstr ""
8947
 
8948
- #: admin/system-info/system-info.php:260
8949
  msgid "Must-Use Plugins"
8950
  msgstr ""
8951
 
8952
- #: admin/system-info/system-info.php:270
8953
  msgid "Installed"
8954
  msgstr ""
8955
 
8956
- #: admin/system-info/system-info.php:341
8957
  msgid "Website Root URL"
8958
  msgstr ""
8959
 
8960
- #: admin/system-info/system-info.php:342
8961
  msgid "Document Root Path"
8962
  msgstr ""
8963
 
8964
- #: admin/system-info/system-info.php:343
8965
  msgid "WP ABSPATH"
8966
  msgstr ""
8967
 
8968
- #: admin/system-info/system-info.php:344
8969
  msgid "Parent Directory"
8970
  msgstr ""
8971
 
8972
- #: admin/system-info/system-info.php:346
8973
  msgid "Host by Address"
8974
  msgstr ""
8975
 
8976
- #: admin/system-info/system-info.php:347
8977
  msgid "DNS Name Server"
8978
  msgstr ""
8979
 
8980
- #: admin/system-info/system-info.php:350
8981
  msgid "DNS Name Server Not Available"
8982
  msgstr ""
8983
 
8984
- #: admin/system-info/system-info.php:363
8985
  msgid "Server Type"
8986
  msgstr ""
8987
 
8988
- #: admin/system-info/system-info.php:364
8989
  msgid "Operating System"
8990
  msgstr ""
8991
 
8992
- #: admin/system-info/system-info.php:365
8993
  msgid "WP Filesystem API Method"
8994
  msgstr ""
8995
 
8996
- #: admin/system-info/system-info.php:367
8997
  msgid "Script Owner ID"
8998
  msgstr ""
8999
 
9000
- #: admin/system-info/system-info.php:368
9001
  msgid "File Owner ID"
9002
  msgstr ""
9003
 
9004
- #: admin/system-info/system-info.php:371
9005
  msgid "Script Owner Name"
9006
  msgstr ""
9007
 
9008
- #: admin/system-info/system-info.php:373
9009
  msgid "Server API"
9010
  msgstr ""
9011
 
9012
- #: admin/system-info/system-info.php:377
9013
  msgid " CGI Host Server Type"
9014
  msgstr ""
9015
 
9016
- #: admin/system-info/system-info.php:379
9017
  msgid " DSO Host Server Type"
9018
  msgstr ""
9019
 
9020
- #: admin/system-info/system-info.php:386
9021
  msgid "cURL"
9022
  msgstr ""
9023
 
9024
- #: admin/system-info/system-info.php:388
9025
  msgid "cURL Extension is Loaded Version: "
9026
  msgstr ""
9027
 
9028
- #: admin/system-info/system-info.php:391
9029
  msgid "cURL OpenSSL Version (Used by PayPal, etc.)"
9030
  msgstr ""
9031
 
9032
- #: admin/system-info/system-info.php:394
9033
  msgid "cURL Extension is Not Loaded"
9034
  msgstr ""
9035
 
9036
- #: admin/system-info/system-info.php:397
9037
  msgid "OpenSSL Library"
9038
  msgstr ""
9039
 
9040
- #: admin/system-info/system-info.php:402
9041
  msgid "Zend Engine Version"
9042
  msgstr ""
9043
 
9044
- #: admin/system-info/system-info.php:403
9045
  msgid "Zend Guard|Optimizer"
9046
  msgstr ""
9047
 
9048
- #: admin/system-info/system-info.php:405
9049
  msgid "Zend Optimizer+ Extension is Loaded and Enabled"
9050
  msgstr ""
9051
 
9052
- #: admin/system-info/system-info.php:408
9053
  msgid "Zend Optimizer Extension is Loaded"
9054
  msgstr ""
9055
 
9056
- #: admin/system-info/system-info.php:411
9057
  msgid "Zend Guard Loader Extension is Loaded"
9058
  msgstr ""
9059
 
9060
- #: admin/system-info/system-info.php:414
9061
  msgid "A Zend Extension is Not Loaded"
9062
  msgstr ""
9063
 
9064
- #: admin/system-info/system-info.php:421
9065
  msgid "Zend OPcache"
9066
  msgstr ""
9067
 
9068
- #: admin/system-info/system-info.php:424
9069
  msgid "Zend OPcache is Enabled"
9070
  msgstr ""
9071
 
9072
- #: admin/system-info/system-info.php:424 admin/system-info/system-info.php:433
9073
- #: admin/system-info/system-info.php:629 admin/system-info/system-info.php:641
9074
  msgid "Version: "
9075
  msgstr ""
9076
 
9077
- #: admin/system-info/system-info.php:426
9078
  msgid "Zend OPcache is Not Enabled"
9079
  msgstr ""
9080
 
9081
- #: admin/system-info/system-info.php:431
9082
  msgid "ionCube Loader"
9083
  msgstr ""
9084
 
9085
- #: admin/system-info/system-info.php:433
9086
  msgid "ionCube Loader Extension is Loaded "
9087
  msgstr ""
9088
 
9089
- #: admin/system-info/system-info.php:435
9090
  msgid "ionCube Loader Extension is Not Loaded"
9091
  msgstr ""
9092
 
9093
- #: admin/system-info/system-info.php:438
9094
  msgid "Suhosin"
9095
  msgstr ""
9096
 
9097
- #: admin/system-info/system-info.php:442
9098
  msgid "The Suhosin-Patch is installed"
9099
  msgstr ""
9100
 
9101
- #: admin/system-info/system-info.php:445
9102
  msgid "Suhosin-Extension is Loaded"
9103
  msgstr ""
9104
 
9105
- #: admin/system-info/system-info.php:448
9106
  msgid "Suhosin is Not Installed|Loaded"
9107
  msgstr ""
9108
 
9109
- #: admin/system-info/system-info.php:452
9110
  msgid "APC"
9111
  msgstr ""
9112
 
9113
- #: admin/system-info/system-info.php:454
9114
  msgid "APC Extension is Loaded and Enabled"
9115
  msgstr ""
9116
 
9117
- #: admin/system-info/system-info.php:457
9118
  msgid "APC Extension is Loaded but Not Enabled"
9119
  msgstr ""
9120
 
9121
- #: admin/system-info/system-info.php:459
9122
  msgid "APC Extension is Not Loaded"
9123
  msgstr ""
9124
 
9125
- #: admin/system-info/system-info.php:462
9126
  msgid "eAccelerator"
9127
  msgstr ""
9128
 
9129
- #: admin/system-info/system-info.php:464
9130
  msgid "eAccelerator Extension is Loaded and Enabled"
9131
  msgstr ""
9132
 
9133
- #: admin/system-info/system-info.php:467
9134
  msgid "eAccelerator Extension is Loaded but Not Enabled"
9135
  msgstr ""
9136
 
9137
- #: admin/system-info/system-info.php:469
9138
  msgid "eAccelerator Extension is Not Loaded"
9139
  msgstr ""
9140
 
9141
- #: admin/system-info/system-info.php:472
9142
  msgid "XCache"
9143
  msgstr ""
9144
 
9145
- #: admin/system-info/system-info.php:474
9146
  msgid "XCache Extension is Loaded and Enabled"
9147
  msgstr ""
9148
 
9149
- #: admin/system-info/system-info.php:477
9150
  msgid "XCache Extension is Loaded but Not Enabled"
9151
  msgstr ""
9152
 
9153
- #: admin/system-info/system-info.php:479
9154
  msgid "XCache Extension is Not Loaded"
9155
  msgstr ""
9156
 
9157
- #: admin/system-info/system-info.php:482
9158
  msgid "Varnish"
9159
  msgstr ""
9160
 
9161
- #: admin/system-info/system-info.php:484
9162
  msgid "Varnish Extension is Loaded"
9163
  msgstr ""
9164
 
9165
- #: admin/system-info/system-info.php:486
9166
  msgid "Varnish Extension is Not Loaded"
9167
  msgstr ""
9168
 
9169
- #: admin/system-info/system-info.php:489
9170
  msgid "Memcache"
9171
  msgstr ""
9172
 
9173
- #: admin/system-info/system-info.php:491
9174
  msgid "Memcache Extension is Loaded"
9175
  msgstr ""
9176
 
9177
- #: admin/system-info/system-info.php:493
9178
  msgid "Memcache Extension is Not Loaded"
9179
  msgstr ""
9180
 
9181
- #: admin/system-info/system-info.php:496
9182
  msgid "Memcached"
9183
  msgstr ""
9184
 
9185
- #: admin/system-info/system-info.php:498
9186
  msgid "Memcached Extension is Loaded"
9187
  msgstr ""
9188
 
9189
- #: admin/system-info/system-info.php:500
9190
  msgid "Memcached Extension is Not Loaded"
9191
  msgstr ""
9192
 
9193
- #: admin/system-info/system-info.php:513
9194
  msgid "MySQL DB Info is not displayed on Network/Multisite subsites"
9195
  msgstr ""
9196
 
9197
- #: admin/system-info/system-info.php:534 includes/general-functions.php:283
9198
  msgid "Not Set"
9199
  msgstr ""
9200
 
9201
- #: admin/system-info/system-info.php:540
9202
  msgid "MySQL Database Server Version: "
9203
  msgstr ""
9204
 
9205
- #: admin/system-info/system-info.php:540
9206
  msgid "MySQL Client Version: "
9207
  msgstr ""
9208
 
9209
- #: admin/system-info/system-info.php:540
9210
  msgid "MySQL Database Server: "
9211
  msgstr ""
9212
 
9213
- #: admin/system-info/system-info.php:540
9214
  msgid "Your MySQL Database: "
9215
  msgstr ""
9216
 
9217
- #: admin/system-info/system-info.php:540
9218
  msgid "SQL Mode: "
9219
  msgstr ""
9220
 
9221
- #: admin/system-info/system-info.php:545 admin/system-info/system-info.php:548
9222
  msgid "MySQL Extension: "
9223
  msgstr ""
9224
 
9225
- #: admin/system-info/system-info.php:545 admin/system-info/system-info.php:553
9226
  msgid "Installed|Enabled"
9227
  msgstr ""
9228
 
9229
- #: admin/system-info/system-info.php:548 admin/system-info/system-info.php:556
9230
  msgid "NOT Installed|Enabled"
9231
  msgstr ""
9232
 
9233
- #: admin/system-info/system-info.php:553 admin/system-info/system-info.php:556
9234
  msgid "MySQLi Extension: "
9235
  msgstr ""
9236
 
9237
- #: admin/system-info/system-info.php:563
9238
  msgid "WordPress Installation Folder"
9239
  msgstr ""
9240
 
9241
- #: admin/system-info/system-info.php:566
9242
  msgid "WordPress Installation Type"
9243
  msgstr ""
9244
 
9245
- #: admin/system-info/system-info.php:568
9246
  msgid "Standard|GWIOD Site Type"
9247
  msgstr ""
9248
 
9249
- #: admin/system-info/system-info.php:570
9250
  msgid "Network|Multisite"
9251
  msgstr ""
9252
 
9253
- #: admin/system-info/system-info.php:572
9254
  msgid "BuddyPress"
9255
  msgstr ""
9256
 
9257
- #: admin/system-info/system-info.php:574
9258
  msgid "bbPress"
9259
  msgstr ""
9260
 
9261
- #: admin/system-info/system-info.php:576
9262
  msgid "Plugins Folder"
9263
  msgstr ""
9264
 
9265
- #: admin/system-info/system-info.php:580
9266
  msgid "Uploads Folder"
9267
  msgstr ""
9268
 
9269
- #: admin/system-info/system-info.php:586
9270
  msgid "UPLOADS Constant"
9271
  msgstr ""
9272
 
9273
- #: admin/system-info/system-info.php:590
9274
  msgid "WP Permalink Structure"
9275
  msgstr ""
9276
 
9277
- #: admin/system-info/system-info.php:595 admin/system-info/system-info.php:597
9278
  msgid "DISABLE_WP_CRON constant"
9279
  msgstr ""
9280
 
9281
- #: admin/system-info/system-info.php:595
9282
  msgid "Standard WP Crons are disabled on your website."
9283
  msgstr ""
9284
 
9285
- #: admin/system-info/system-info.php:597
9286
  msgid "Standard WP Crons are not disabled on your website."
9287
  msgstr ""
9288
 
9289
- #: admin/system-info/system-info.php:600
9290
  msgid "Total Plugins Installed"
9291
  msgstr ""
9292
 
9293
- #: admin/system-info/system-info.php:602
9294
  msgid "Total Must-Use Plugins Installed"
9295
  msgstr ""
9296
 
9297
- #: admin/system-info/system-info.php:604
9298
  msgid "Total Plugins Activated"
9299
  msgstr ""
9300
 
9301
- #: admin/system-info/system-info.php:607
9302
  msgid "Total Plugins Network Activated"
9303
  msgstr ""
9304
 
9305
- #: admin/system-info/system-info.php:613 admin/system-info/system-info.php:615
9306
  msgid "Get Plugins List"
9307
  msgstr ""
9308
 
9309
- #: admin/system-info/system-info.php:616
9310
  msgid "This window is draggable (top) and resizable (bottom right corner)"
9311
  msgstr ""
9312
 
9313
- #: admin/system-info/system-info.php:621
9314
  msgid "Browser Compression Supported"
9315
  msgstr ""
9316
 
9317
- #: admin/system-info/system-info.php:624
9318
  msgid "GD Library"
9319
  msgstr ""
9320
 
9321
- #: admin/system-info/system-info.php:629
9322
  msgid "GD Extension is Loaded - "
9323
  msgstr ""
9324
 
9325
- #: admin/system-info/system-info.php:632
9326
  msgid "GD Extension is Not Loaded"
9327
  msgstr ""
9328
 
9329
- #: admin/system-info/system-info.php:635
9330
  msgid "ImageMagick"
9331
  msgstr ""
9332
 
9333
- #: admin/system-info/system-info.php:641
9334
  msgid "ImageMagick Extension is Loaded - "
9335
  msgstr ""
9336
 
9337
- #: admin/system-info/system-info.php:644
9338
  msgid "ImageMagick Extension is Not Loaded"
9339
  msgstr ""
9340
 
9341
- #: admin/system-info/system-info.php:659
9342
  msgid "PHP Server|PHP.ini Info"
9343
  msgstr ""
9344
 
9345
- #: admin/system-info/system-info.php:661
9346
  msgid ""
9347
  "File|Folder Permissions (CGI or DSO)|Script Owner User ID (UID)|File Owner "
9348
  "User ID"
9349
  msgstr ""
9350
 
9351
- #: admin/system-info/system-info.php:669
9352
  msgid "PHP Version"
9353
  msgstr ""
9354
 
9355
- #: admin/system-info/system-info.php:670
9356
  msgid "PHP Memory Usage"
9357
  msgstr ""
9358
 
9359
- #: admin/system-info/system-info.php:670
9360
  msgid " MB"
9361
  msgstr ""
9362
 
9363
- #: admin/system-info/system-info.php:671
9364
  msgid "WordPress Admin Memory Limit"
9365
  msgstr ""
9366
 
9367
- #: admin/system-info/system-info.php:674
9368
  msgid "WordPress Base Memory Limit"
9369
  msgstr ""
9370
 
9371
- #: admin/system-info/system-info.php:682 admin/system-info/system-info.php:688
9372
- #: admin/system-info/system-info.php:691 admin/system-info/system-info.php:694
9373
  msgid "PHP Actual Configuration Memory Limit: "
9374
  msgstr ""
9375
 
9376
- #: admin/system-info/system-info.php:682
9377
  msgid "The Memory Limit value is not available from your Server."
9378
  msgstr ""
9379
 
9380
- #: admin/system-info/system-info.php:691 admin/system-info/system-info.php:694
9381
- msgid " Recommendation: Increase Memory Limit to 128M."
 
9382
  msgstr ""
9383
 
9384
- #: admin/system-info/system-info.php:702 admin/system-info/system-info.php:704
9385
  msgid "PHP Configuration File (php.ini)"
9386
  msgstr ""
9387
 
9388
- #: admin/system-info/system-info.php:704
9389
  msgid "None/Not in use"
9390
  msgstr ""
9391
 
9392
- #: admin/system-info/system-info.php:717
9393
  msgid "WP Temp Dir: "
9394
  msgstr ""
9395
 
9396
- #: admin/system-info/system-info.php:720
9397
  msgid "The WP_TEMP_DIR constant is being used in wp-config.php file"
9398
  msgstr ""
9399
 
9400
- #: admin/system-info/system-info.php:726 admin/system-info/system-info.php:728
9401
  msgid "PHP Temp Dir: "
9402
  msgstr ""
9403
 
9404
- #: admin/system-info/system-info.php:728 admin/system-info/system-info.php:739
9405
- #: admin/system-info/system-info.php:747
9406
  msgid "Not set/defined or directory is not writable"
9407
  msgstr ""
9408
 
9409
- #: admin/system-info/system-info.php:737 admin/system-info/system-info.php:739
9410
  msgid "PHP Upload Temp Dir: "
9411
  msgstr ""
9412
 
9413
- #: admin/system-info/system-info.php:745 admin/system-info/system-info.php:747
9414
  msgid "Session Save Path: "
9415
  msgstr ""
9416
 
9417
- #: admin/system-info/system-info.php:752
9418
  msgid "Cycles: "
9419
  msgstr ""
9420
 
9421
- #: admin/system-info/system-info.php:756
9422
  msgid "Garbage Collector: "
9423
  msgstr ""
9424
 
9425
- #: admin/system-info/system-info.php:759
9426
  msgid "PHP Max Upload Size"
9427
  msgstr ""
9428
 
9429
- #: admin/system-info/system-info.php:762
9430
  msgid "PHP Max Post Size"
9431
  msgstr ""
9432
 
9433
- #: admin/system-info/system-info.php:765
9434
  msgid "PHP Safe Mode"
9435
  msgstr ""
9436
 
9437
- #: admin/system-info/system-info.php:774
9438
  msgid "PHP Allow URL fopen"
9439
  msgstr ""
9440
 
9441
- #: admin/system-info/system-info.php:782
9442
  msgid "PHP Allow URL Include"
9443
  msgstr ""
9444
 
9445
- #: admin/system-info/system-info.php:790
9446
  msgid "PHP Display Errors"
9447
  msgstr ""
9448
 
9449
- #: admin/system-info/system-info.php:798
9450
  msgid "PHP Display Startup Errors"
9451
  msgstr ""
9452
 
9453
- #: admin/system-info/system-info.php:806
9454
  msgid "PHP Expose PHP"
9455
  msgstr ""
9456
 
9457
- #: admin/system-info/system-info.php:814
9458
  msgid "PHP Register Globals"
9459
  msgstr ""
9460
 
9461
- #: admin/system-info/system-info.php:822
9462
  msgid "PHP MySQL Allow Persistent Connections"
9463
  msgstr ""
9464
 
9465
- #: admin/system-info/system-info.php:830
9466
  msgid "PHP Output Buffering"
9467
  msgstr ""
9468
 
9469
- #: admin/system-info/system-info.php:838
9470
  msgid "PHP Max Script Execution Time"
9471
  msgstr ""
9472
 
9473
- #: admin/system-info/system-info.php:841
9474
  msgid "PHP Magic Quotes GPC"
9475
  msgstr ""
9476
 
9477
- #: admin/system-info/system-info.php:849
9478
  msgid "PHP open_basedir"
9479
  msgstr ""
9480
 
9481
- #: admin/system-info/system-info.php:854
9482
  msgid "Off/Not in use"
9483
  msgstr ""
9484
 
9485
- #: admin/system-info/system-info.php:856
9486
  msgid "PHP XML Support"
9487
  msgstr ""
9488
 
9489
- #: admin/system-info/system-info.php:858 admin/system-info/system-info.php:866
9490
- #: admin/system-info/system-info.php:874
9491
  msgid "Yes"
9492
  msgstr ""
9493
 
9494
- #: admin/system-info/system-info.php:861 admin/system-info/system-info.php:869
9495
- #: admin/system-info/system-info.php:877
9496
  msgid "No"
9497
  msgstr ""
9498
 
9499
- #: admin/system-info/system-info.php:864
9500
  msgid "PHP IPTC Support"
9501
  msgstr ""
9502
 
9503
- #: admin/system-info/system-info.php:872
9504
  msgid "PHP Exif Support"
9505
  msgstr ""
9506
 
9507
- #: admin/system-info/system-info.php:885
9508
  msgid "PHP Disable Functions"
9509
  msgstr ""
9510
 
9511
- #: admin/system-info/system-info.php:889
9512
  msgid "No PHP functions are disabled."
9513
  msgstr ""
9514
 
9515
- #: admin/system-info/system-info.php:894
9516
  msgid "PHP Suhosin Function Blacklist"
9517
  msgstr ""
9518
 
9519
- #: admin/system-info/system-info.php:898
9520
  msgid "No PHP functions are blacklisted."
9521
  msgstr ""
9522
 
9523
- #: admin/system-info/system-info.php:920
9524
  msgid "CGI File and Folder Permissions|Recommendations"
9525
  msgstr ""
9526
 
9527
- #: admin/system-info/system-info.php:923 admin/system-info/system-info.php:963
9528
  msgid "Folder Path"
9529
  msgstr ""
9530
 
9531
- #: admin/system-info/system-info.php:924 admin/system-info/system-info.php:964
9532
  msgid "Recommended"
9533
  msgstr ""
9534
 
9535
- #: admin/system-info/system-info.php:924 admin/system-info/system-info.php:925
9536
- #: admin/system-info/system-info.php:964 admin/system-info/system-info.php:965
9537
  msgid "Permissions"
9538
  msgstr ""
9539
 
9540
- #: admin/system-info/system-info.php:925 admin/system-info/system-info.php:965
9541
  msgid "Current"
9542
  msgstr ""
9543
 
9544
- #: admin/system-info/system-info.php:926 admin/system-info/system-info.php:966
9545
  msgid "Script Owner"
9546
  msgstr ""
9547
 
9548
- #: admin/system-info/system-info.php:926 admin/system-info/system-info.php:966
9549
  msgid " User ID (UID)"
9550
  msgstr ""
9551
 
9552
- #: admin/system-info/system-info.php:927 admin/system-info/system-info.php:967
9553
  msgid "File Owner"
9554
  msgstr ""
9555
 
9556
- #: admin/system-info/system-info.php:927 admin/system-info/system-info.php:967
9557
  msgid " User ID"
9558
  msgstr ""
9559
 
9560
- #: admin/system-info/system-info.php:960
9561
  msgid "DSO File and Folder Permissions|Recommendations"
9562
  msgstr ""
9563
 
9564
- #: admin/system-info/system-info.php:1005
9565
  msgid "System Info Processing Completion Time: "
9566
  msgstr ""
9567
 
9568
- #: admin/system-info/system-info.php:1038
9569
  msgid "Website Headers Check Tool ~ "
9570
  msgstr ""
9571
 
9572
- #: admin/system-info/system-info.php:1038
9573
- #: admin/system-info/system-info.php:1045
9574
  msgid ""
9575
  "Check your website Headers or another website's Headers by making a GET "
9576
  "Request"
9577
  msgstr ""
9578
 
9579
- #: admin/system-info/system-info.php:1062
9580
  msgid "GET Request Headers: "
9581
  msgstr ""
9582
 
9583
- #: admin/system-info/system-info.php:1077
9584
  msgid ""
9585
  "Error: The WordPress wp_remote_get function is not available or is blocked "
9586
  "on your website/server."
9587
  msgstr ""
9588
 
9589
- #: admin/system-info/system-info.php:1087
9590
  msgid "Enter a Website URL - Example: "
9591
  msgstr ""
9592
 
9593
- #: admin/system-info/system-info.php:1090
9594
  msgid ""
9595
  "This Headers check makes a GET Request using the WordPress wp_remote_get "
9596
  "function."
9597
  msgstr ""
9598
 
9599
- #: admin/system-info/system-info.php:1090
9600
  msgid ""
9601
  "You can use the Check Headers HEAD Request tool to check headers using HEAD "
9602
  "instead of GET."
@@ -9703,7 +9736,7 @@ msgid ""
9703
  "to the default setting: Load Only The Default WP Toolbar."
9704
  msgstr ""
9705
 
9706
- #: admin/theme-skin/theme-skin.php:110 admin/theme-skin/theme-skin.php:183
9707
  msgid "Script|Style Loader Filter (SLF) In BPS Plugin Pages:"
9708
  msgstr ""
9709
 
@@ -9714,7 +9747,7 @@ msgid ""
9714
  "scripts and cause BPS plugin pages to display visually broken."
9715
  msgstr ""
9716
 
9717
- #: admin/theme-skin/theme-skin.php:110 admin/theme-skin/theme-skin.php:196
9718
  msgid "BPS UI|UX|AutoFix Debug:"
9719
  msgstr ""
9720
 
@@ -9781,8 +9814,8 @@ msgstr ""
9781
  msgid "jQuery ScrollTop Animation Off"
9782
  msgstr ""
9783
 
9784
- #: admin/theme-skin/theme-skin.php:171 admin/theme-skin/theme-skin.php:184
9785
- #: admin/theme-skin/theme-skin.php:197
9786
  msgid "Click the Read Me help button for information"
9787
  msgstr ""
9788
 
@@ -9794,19 +9827,23 @@ msgstr ""
9794
  msgid "Load WP Toolbar With All Menu Items"
9795
  msgstr ""
9796
 
9797
- #: admin/theme-skin/theme-skin.php:186
 
 
 
 
9798
  msgid "SLF On"
9799
  msgstr ""
9800
 
9801
- #: admin/theme-skin/theme-skin.php:187
9802
  msgid "SLF Off"
9803
  msgstr ""
9804
 
9805
- #: admin/theme-skin/theme-skin.php:199
9806
  msgid "Debug Off"
9807
  msgstr ""
9808
 
9809
- #: admin/theme-skin/theme-skin.php:200
9810
  msgid "Debug On"
9811
  msgstr ""
9812
 
@@ -10611,7 +10648,7 @@ msgstr ""
10611
  #: admin/wizard/wizard-functions.php:808 admin/wizard/wizard.php:644
10612
  #: admin/wizard/wizard.php:682 admin/wizard/wizard.php:740
10613
  #: admin/wizard/wizard.php:780 admin/wizard/wizard.php:829
10614
- #: includes/general-functions.php:994
10615
  msgid " DB Option created or updated Successfully!"
10616
  msgstr ""
10617
 
@@ -10687,7 +10724,7 @@ msgid ""
10687
  "file, but was NOT found in BPS Custom Code. "
10688
  msgstr ""
10689
 
10690
- #: admin/wizard/wizard.php:176 includes/hud-dismiss-functions.php:347
10691
  msgid ""
10692
  " for the steps to fix this Wordfence problem before running the Setup Wizard."
10693
  msgstr ""
@@ -10758,9 +10795,9 @@ msgstr ""
10758
 
10759
  #: admin/wizard/wizard.php:253
10760
  msgid ""
10761
- "It is recommended that you increase your memory limit to at least 128M. "
10762
- "Contact your Web Host and ask them to increase your memory limit to the "
10763
- "maximum memory limit setting allowed by your Host."
10764
  msgstr ""
10765
 
10766
  #: admin/wizard/wizard.php:256
@@ -11329,15 +11366,15 @@ msgstr ""
11329
  msgid " JTC DB Options created or updated Successfully!"
11330
  msgstr ""
11331
 
11332
- #: bulletproof-security.php:134
11333
  msgid "Uninstall Options"
11334
  msgstr ""
11335
 
11336
- #: bulletproof-security.php:156
11337
  msgid "Forum - Support"
11338
  msgstr ""
11339
 
11340
- #: bulletproof-security.php:157
11341
  msgid "Upgrade"
11342
  msgstr ""
11343
 
@@ -11379,7 +11416,7 @@ msgstr ""
11379
 
11380
  #: includes/functions.php:345 includes/functions.php:583
11381
  #: includes/functions.php:650 includes/hud-autofix-setup.php:69
11382
- #: includes/hud-dismiss-functions.php:546
11383
  msgid "Go to the "
11384
  msgstr ""
11385
 
@@ -11425,15 +11462,15 @@ msgid ""
11425
  msgstr ""
11426
 
11427
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11428
- #: includes/hud-dismiss-functions.php:68 includes/hud-dismiss-functions.php:102
11429
- #: includes/hud-dismiss-functions.php:135
11430
- #: includes/hud-dismiss-functions.php:347
11431
- #: includes/hud-dismiss-functions.php:352
11432
- #: includes/hud-dismiss-functions.php:390
11433
- #: includes/hud-dismiss-functions.php:395
11434
- #: includes/hud-dismiss-functions.php:453
11435
- #: includes/hud-dismiss-functions.php:495
11436
- #: includes/hud-dismiss-functions.php:651
11437
  msgid ""
11438
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
11439
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Custom "
@@ -11441,29 +11478,30 @@ msgid ""
11441
  msgstr ""
11442
 
11443
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11444
- #: includes/hud-dismiss-functions.php:68 includes/hud-dismiss-functions.php:102
11445
- #: includes/hud-dismiss-functions.php:135
11446
- #: includes/hud-dismiss-functions.php:200
11447
- #: includes/hud-dismiss-functions.php:215
11448
- #: includes/hud-dismiss-functions.php:221
11449
- #: includes/hud-dismiss-functions.php:227
11450
- #: includes/hud-dismiss-functions.php:233
11451
- #: includes/hud-dismiss-functions.php:247
11452
- #: includes/hud-dismiss-functions.php:253
11453
- #: includes/hud-dismiss-functions.php:258
11454
- #: includes/hud-dismiss-functions.php:347
11455
- #: includes/hud-dismiss-functions.php:352
11456
- #: includes/hud-dismiss-functions.php:390
11457
- #: includes/hud-dismiss-functions.php:395
11458
- #: includes/hud-dismiss-functions.php:453
11459
- #: includes/hud-dismiss-functions.php:495
11460
- #: includes/hud-dismiss-functions.php:584
11461
- #: includes/hud-dismiss-functions.php:651
11462
- #: includes/hud-dismiss-functions.php:679
11463
- #: includes/hud-dismiss-functions.php:716
11464
- #: includes/hud-dismiss-functions.php:759
11465
- #: includes/hud-dismiss-functions.php:797
11466
- #: includes/hud-dismiss-functions.php:830
 
11467
  msgid "Dismiss Notice"
11468
  msgstr ""
11469
 
@@ -11900,7 +11938,7 @@ msgid ""
11900
  "file."
11901
  msgstr ""
11902
 
11903
- #: includes/general-functions.php:995
11904
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11905
  msgstr ""
11906
 
@@ -12642,7 +12680,7 @@ msgid ""
12642
  msgstr ""
12643
 
12644
  #: includes/hud-autofix-whitelist.php:761
12645
- #: includes/hud-dismiss-functions.php:830
12646
  msgid "Click this "
12647
  msgstr ""
12648
 
@@ -12674,390 +12712,390 @@ msgstr ""
12674
  msgid "No Plugin or Theme AutoFix Custom Code Whitelist Rules were found"
12675
  msgstr ""
12676
 
12677
- #: includes/hud-dismiss-functions.php:46
12678
  msgid ""
12679
  "WARNING! BPS requires at least PHP5 to function correctly. Your PHP version "
12680
  "is: "
12681
  msgstr ""
12682
 
12683
- #: includes/hud-dismiss-functions.php:46
12684
  msgid "BPS Guide - PHP5 Solution"
12685
  msgstr ""
12686
 
12687
- #: includes/hud-dismiss-functions.php:46
12688
  msgid ""
12689
  "The BPS Guide will open in a new browser window. You will not be directed "
12690
  "away from your WordPress Dashboard."
12691
  msgstr ""
12692
 
12693
- #: includes/hud-dismiss-functions.php:68
12694
  msgid ""
12695
  "WARNING! BPS has detected that Safe Mode is set to On in your php.ini file."
12696
  msgstr ""
12697
 
12698
- #: includes/hud-dismiss-functions.php:68
12699
  msgid ""
12700
  "If you see errors that BPS was unable to automatically create the backup "
12701
  "folders this is probably the reason why."
12702
  msgstr ""
12703
 
12704
- #: includes/hud-dismiss-functions.php:102
12705
  msgid "HUD Check: Custom Permalinks are NOT being used."
12706
  msgstr ""
12707
 
12708
- #: includes/hud-dismiss-functions.php:102
12709
  msgid "It is recommended that you use Custom Permalinks: "
12710
  msgstr ""
12711
 
12712
- #: includes/hud-dismiss-functions.php:102
12713
  msgid "How to setup Custom Permalinks"
12714
  msgstr ""
12715
 
12716
- #: includes/hud-dismiss-functions.php:135
12717
  msgid ""
12718
  "WARNING! BPS has detected that your Server is a Windows IIS Server that does "
12719
  "not support htaccess rewriting."
12720
  msgstr ""
12721
 
12722
- #: includes/hud-dismiss-functions.php:135
12723
  msgid "Do NOT activate BulletProof Modes unless you know what you are doing."
12724
  msgstr ""
12725
 
12726
- #: includes/hud-dismiss-functions.php:135
12727
  msgid "Your Server Type is: "
12728
  msgstr ""
12729
 
12730
- #: includes/hud-dismiss-functions.php:135
12731
  msgid "WordPress Codex - Using Permalinks - see IIS section"
12732
  msgstr ""
12733
 
12734
- #: includes/hud-dismiss-functions.php:158
12735
- #: includes/hud-dismiss-functions.php:163
12736
  msgid "WARNING! BPS was unable to automatically create the /"
12737
  msgstr ""
12738
 
12739
- #: includes/hud-dismiss-functions.php:158
12740
  msgid "/bps-backup folder."
12741
  msgstr ""
12742
 
12743
- #: includes/hud-dismiss-functions.php:158
12744
- #: includes/hud-dismiss-functions.php:163
12745
  msgid "You will need to create the /"
12746
  msgstr ""
12747
 
12748
- #: includes/hud-dismiss-functions.php:158
12749
  msgid ""
12750
  "/bps-backup folder manually via FTP. The folder permissions for the bps-"
12751
  "backup folder need to be set to 755 in order to successfully perform "
12752
  "permanent online backups."
12753
  msgstr ""
12754
 
12755
- #: includes/hud-dismiss-functions.php:158
12756
- #: includes/hud-dismiss-functions.php:163
12757
  msgid "To remove this message permanently click "
12758
  msgstr ""
12759
 
12760
- #: includes/hud-dismiss-functions.php:158
12761
- #: includes/hud-dismiss-functions.php:163
12762
  msgid "here."
12763
  msgstr ""
12764
 
12765
- #: includes/hud-dismiss-functions.php:163
12766
  msgid "/bps-backup/master-backups folder."
12767
  msgstr ""
12768
 
12769
- #: includes/hud-dismiss-functions.php:163
12770
  msgid ""
12771
  "/bps-backup/master-backups folder manually via FTP. The folder permissions "
12772
  "for the master-backups folder need to be set to 755 in order to successfully "
12773
  "perform permanent online backups."
12774
  msgstr ""
12775
 
12776
- #: includes/hud-dismiss-functions.php:197
12777
- #: includes/hud-dismiss-functions.php:209
12778
  msgid "Bonus Custom Code:"
12779
  msgstr ""
12780
 
12781
- #: includes/hud-dismiss-functions.php:197
12782
- #: includes/hud-dismiss-functions.php:209
12783
  msgid ""
12784
  "Click the links below to get Bonus Custom Code or click the Dismiss Notice "
12785
  "links or click this "
12786
  msgstr ""
12787
 
12788
- #: includes/hud-dismiss-functions.php:197
12789
- #: includes/hud-dismiss-functions.php:209
12790
  msgid "Dismiss All Notices"
12791
  msgstr ""
12792
 
12793
- #: includes/hud-dismiss-functions.php:197
12794
- #: includes/hud-dismiss-functions.php:209
12795
  msgid ""
12796
  " link. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices "
12797
  "button on the Custom Code page."
12798
  msgstr ""
12799
 
12800
- #: includes/hud-dismiss-functions.php:200
12801
- #: includes/hud-dismiss-functions.php:215
12802
- #: includes/hud-dismiss-functions.php:221
12803
- #: includes/hud-dismiss-functions.php:227
12804
- #: includes/hud-dismiss-functions.php:233
12805
- #: includes/hud-dismiss-functions.php:247
12806
- #: includes/hud-dismiss-functions.php:253
12807
- #: includes/hud-dismiss-functions.php:258
12808
  msgid "Get "
12809
  msgstr ""
12810
 
12811
- #: includes/hud-dismiss-functions.php:200
12812
- #: includes/hud-dismiss-functions.php:247
12813
  msgid "POST Request Attack Protection Code"
12814
  msgstr ""
12815
 
12816
- #: includes/hud-dismiss-functions.php:200
12817
- #: includes/hud-dismiss-functions.php:215
12818
- #: includes/hud-dismiss-functions.php:221
12819
- #: includes/hud-dismiss-functions.php:227
12820
- #: includes/hud-dismiss-functions.php:233
12821
- #: includes/hud-dismiss-functions.php:247
12822
- #: includes/hud-dismiss-functions.php:253
12823
- #: includes/hud-dismiss-functions.php:258
12824
  msgid " or "
12825
  msgstr ""
12826
 
12827
- #: includes/hud-dismiss-functions.php:215
12828
  msgid "Brute Force Login Protection Code"
12829
  msgstr ""
12830
 
12831
- #: includes/hud-dismiss-functions.php:221
12832
  msgid "Speed Boost Cache Code"
12833
  msgstr ""
12834
 
12835
- #: includes/hud-dismiss-functions.php:227
12836
  msgid "Author Enumeration BOT Probe Code"
12837
  msgstr ""
12838
 
12839
- #: includes/hud-dismiss-functions.php:233
12840
  msgid "XML-RPC DDoS Protection Code"
12841
  msgstr ""
12842
 
12843
- #: includes/hud-dismiss-functions.php:253
12844
  msgid "Mime Sniffing|Drive-by Download Attack Protection Code"
12845
  msgstr ""
12846
 
12847
- #: includes/hud-dismiss-functions.php:258
12848
  msgid "External iFrame|Clickjacking Protection Code"
12849
  msgstr ""
12850
 
12851
- #: includes/hud-dismiss-functions.php:347
12852
- #: includes/hud-dismiss-functions.php:390
12853
  msgid "HUD Check: Wordfence PHP/php.ini handler htaccess code detected"
12854
  msgstr ""
12855
 
12856
- #: includes/hud-dismiss-functions.php:347
12857
- #: includes/hud-dismiss-functions.php:390
12858
  msgid ""
12859
  "Wordfence PHP/php.ini handler htaccess code was found in your root .htaccess "
12860
  "file, but was NOT found in BPS Custom Code."
12861
  msgstr ""
12862
 
12863
- #: includes/hud-dismiss-functions.php:347
12864
- #: includes/hud-dismiss-functions.php:390
12865
  msgid ""
12866
  "Using the Wordfence WAF Firewall may cause serious/critical problems for "
12867
  "your website and BPS."
12868
  msgstr ""
12869
 
12870
- #: includes/hud-dismiss-functions.php:352
12871
- #: includes/hud-dismiss-functions.php:395
12872
  msgid "HUD Check: PHP/php.ini handler htaccess code check"
12873
  msgstr ""
12874
 
12875
- #: includes/hud-dismiss-functions.php:352
12876
- #: includes/hud-dismiss-functions.php:395
12877
  msgid ""
12878
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
12879
  "was NOT found in BPS Custom Code."
12880
  msgstr ""
12881
 
12882
- #: includes/hud-dismiss-functions.php:352
12883
- #: includes/hud-dismiss-functions.php:395
12884
  msgid "To automatically fix this click here: "
12885
  msgstr ""
12886
 
12887
- #: includes/hud-dismiss-functions.php:352
12888
- #: includes/hud-dismiss-functions.php:395
12889
  msgid ""
12890
  "The Setup Wizard Pre-Installation Checks feature will automatically fix this "
12891
  "just by visiting the Setup Wizard page."
12892
  msgstr ""
12893
 
12894
- #: includes/hud-dismiss-functions.php:390
12895
  msgid " for the steps to fix this Wordfence problem."
12896
  msgstr ""
12897
 
12898
- #: includes/hud-dismiss-functions.php:453
12899
  msgid ""
12900
  "An htaccess file has been detected in the wp-content folder that breaks BPS "
12901
  "features and functionality"
12902
  msgstr ""
12903
 
12904
- #: includes/hud-dismiss-functions.php:453
12905
  msgid ""
12906
  "If you have or had the Sucuri, Defender or iThemes Security plugins "
12907
  "installed, they create a wp-content htaccess file that breaks several things "
12908
  "in BPS Pro and other plugins as well."
12909
  msgstr ""
12910
 
12911
- #: includes/hud-dismiss-functions.php:453
12912
  msgid ""
12913
  "To fix the Sucuri problem go to the Sucuri Settings page, click the "
12914
  "Hardening tab and click the Revert Hardening button for the Block PHP Files "
12915
  "in WP-CONTENT Directory option setting."
12916
  msgstr ""
12917
 
12918
- #: includes/hud-dismiss-functions.php:453
12919
  msgid ""
12920
  "To fix the Defender Security problem go to the Security Tweaks page, click "
12921
  "the PHP Execution option setting and click the Revert button."
12922
  msgstr ""
12923
 
12924
- #: includes/hud-dismiss-functions.php:453
12925
  msgid ""
12926
  "o fix the iThemes problem go to the System Tweaks page, uncheck the Disable "
12927
  "PHP in Plugins option setting."
12928
  msgstr ""
12929
 
12930
- #: includes/hud-dismiss-functions.php:495
12931
  msgid "The WordPress Firewall 2 plugin is installed and activated"
12932
  msgstr ""
12933
 
12934
- #: includes/hud-dismiss-functions.php:495
12935
  msgid "It is recommended that you delete the WordPress Firewall 2 plugin."
12936
  msgstr ""
12937
 
12938
- #: includes/hud-dismiss-functions.php:495
12939
  msgid " for more information."
12940
  msgstr ""
12941
 
12942
- #: includes/hud-dismiss-functions.php:527
12943
  msgid "Notice: BPS Query String Exploits Code Changes"
12944
  msgstr ""
12945
 
12946
- #: includes/hud-dismiss-functions.php:527
12947
  msgid ""
12948
  "Older BPS Query String Exploits code was found in BPS Custom Code. Several "
12949
  "Query String Exploits rules were changed/added/modified in the root ."
12950
  "htaccess file in BPS .49.6, .50.2 & .50.3."
12951
  msgstr ""
12952
 
12953
- #: includes/hud-dismiss-functions.php:527
12954
  msgid ""
12955
  "Copy the new Query String Exploits section of code from your root .htaccess "
12956
  "file and paste it into this BPS Custom Code text box: CUSTOM CODE BPSQSE BPS "
12957
  "QUERY STRING EXPLOITS and click the Save Root Custom Code button."
12958
  msgstr ""
12959
 
12960
- #: includes/hud-dismiss-functions.php:527
12961
  msgid ""
12962
  "This Notice will go away once you have copied the new Query String Exploits "
12963
  "code to BPS Custom Code and clicked the Save Root Custom Code button."
12964
  msgstr ""
12965
 
12966
- #: includes/hud-dismiss-functions.php:546
12967
  msgid "BPS Alert! A BPS htaccess file was NOT found in the BPS Backup folder: "
12968
  msgstr ""
12969
 
12970
- #: includes/hud-dismiss-functions.php:546
12971
  msgid " and click the BPS Backup Folder BulletProof Mode Activate button."
12972
  msgstr ""
12973
 
12974
- #: includes/hud-dismiss-functions.php:584
12975
  msgid "New Improved BPS Speed Boost Cache Code"
12976
  msgstr ""
12977
 
12978
- #: includes/hud-dismiss-functions.php:584
12979
  msgid ""
12980
  "Older BPS Speed Boost Cache Code was found saved in this BPS Custom Code "
12981
  "text box: CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
12982
  msgstr ""
12983
 
12984
- #: includes/hud-dismiss-functions.php:584
12985
  msgid ""
12986
  "Newer improved BPS Speed Boost Cache Code has been created, which should "
12987
  "improve website load speed performance even more."
12988
  msgstr ""
12989
 
12990
- #: includes/hud-dismiss-functions.php:584
12991
  msgid "Get The New Improved BPS Speed Boost Cache Code"
12992
  msgstr ""
12993
 
12994
- #: includes/hud-dismiss-functions.php:584
12995
  msgid ". To dismiss this Notice click the Dismiss Notice button below."
12996
  msgstr ""
12997
 
12998
- #: includes/hud-dismiss-functions.php:584
12999
  msgid ""
13000
  "To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on "
13001
  "the Custom Code page."
13002
  msgstr ""
13003
 
13004
- #: includes/hud-dismiss-functions.php:591
13005
  msgid "BPS Speed Boost Cache Custom Code Notice"
13006
  msgstr ""
13007
 
13008
- #: includes/hud-dismiss-functions.php:591
13009
  msgid ""
13010
  "BPS Speed Boost Cache Code was found in this BPS Custom Code text box: "
13011
  "CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
13012
  msgstr ""
13013
 
13014
- #: includes/hud-dismiss-functions.php:591
13015
  msgid ""
13016
  "and another caching plugin's Marker text was also found in this BPS Custom "
13017
  "Code text box."
13018
  msgstr ""
13019
 
13020
- #: includes/hud-dismiss-functions.php:591
13021
  msgid "Click this link: "
13022
  msgstr ""
13023
 
13024
- #: includes/hud-dismiss-functions.php:591
13025
  msgid "BPS Speed Boost Cache Custom Code Notice Forum Topic"
13026
  msgstr ""
13027
 
13028
- #: includes/hud-dismiss-functions.php:591
13029
  msgid " for help information on what this Notice means and what to do next."
13030
  msgstr ""
13031
 
13032
- #: includes/hud-dismiss-functions.php:651
13033
  msgid "BPS Plugin Automatic Update Notice"
13034
  msgstr ""
13035
 
13036
- #: includes/hud-dismiss-functions.php:651
13037
  msgid ""
13038
  "Would you like to have BPS plugin updates installed automatically? Click "
13039
  "this link: "
13040
  msgstr ""
13041
 
13042
- #: includes/hud-dismiss-functions.php:651
13043
  msgid " and click the BPS MU Tools Enable BPS Plugin AutoUpdates link."
13044
  msgstr ""
13045
 
13046
- #: includes/hud-dismiss-functions.php:679
13047
  msgid "MScan First Run Notice"
13048
  msgstr ""
13049
 
13050
- #: includes/hud-dismiss-functions.php:679
13051
  msgid ""
13052
  "Please take a few minutes to read the \"Basic Info|Recommendations|"
13053
  "Limitations|Restrictions\" help section in the"
13054
  msgstr ""
13055
 
13056
- #: includes/hud-dismiss-functions.php:679
13057
  msgid "before running a scan."
13058
  msgstr ""
13059
 
13060
- #: includes/hud-dismiss-functions.php:679
13061
  msgid ""
13062
  "It is highly recommended that you use the Scan Time Estimate Tool before "
13063
  "running an actual scan. The Scan Time Estimate Tool calculates the total "
@@ -13067,120 +13105,136 @@ msgid ""
13067
  "Notices button on the BPS Custom Code page."
13068
  msgstr ""
13069
 
13070
- #: includes/hud-dismiss-functions.php:716
13071
  msgid "BPS New Feature Notice: JTC-Lite"
13072
  msgstr ""
13073
 
13074
- #: includes/hud-dismiss-functions.php:716
13075
  msgid ""
13076
  "JTC-Lite protects the WordPress Login page Form against automated SpamBot "
13077
  "and HackerBot Brute Force Login attacks"
13078
  msgstr ""
13079
 
13080
- #: includes/hud-dismiss-functions.php:716
13081
  msgid ""
13082
  "and also prevents User Accounts from being locked repeatedly by Brute Force "
13083
  "Login Bot attacks on your Login page Form."
13084
  msgstr ""
13085
 
13086
- #: includes/hud-dismiss-functions.php:716
13087
  msgid "To enable/turn On JTC-Lite, click this "
13088
  msgstr ""
13089
 
13090
- #: includes/hud-dismiss-functions.php:716
13091
  msgid ""
13092
  ". Click/check the Login Form Checkbox and click the Save Options button."
13093
  msgstr ""
13094
 
13095
- #: includes/hud-dismiss-functions.php:716
13096
- #: includes/hud-dismiss-functions.php:797
13097
- #: includes/hud-dismiss-functions.php:830
 
13098
  msgid ""
13099
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
13100
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the BPS "
13101
  "Custom Code page."
13102
  msgstr ""
13103
 
13104
- #: includes/hud-dismiss-functions.php:759
13105
  msgid "BPS Plugin Star Rating Request"
13106
  msgstr ""
13107
 
13108
- #: includes/hud-dismiss-functions.php:759
13109
  msgid ""
13110
  "A BPS star rating only takes a couple of minutes and would be very much "
13111
  "appreciated. We are looking for 5 star ratings and not \"fancy\" reviews."
13112
  msgstr ""
13113
 
13114
- #: includes/hud-dismiss-functions.php:759
13115
  msgid ""
13116
  "A simple review like \"works great\" or \"has been protecting my website for "
13117
  "X months or X years\" is perfect."
13118
  msgstr ""
13119
 
13120
- #: includes/hud-dismiss-functions.php:759
13121
  msgid "Click this link to submit a BPS Plugin Star Rating: "
13122
  msgstr ""
13123
 
13124
- #: includes/hud-dismiss-functions.php:759
13125
  msgid "BPS Plugin Star Rating"
13126
  msgstr ""
13127
 
13128
- #: includes/hud-dismiss-functions.php:759
13129
  msgid ""
13130
  "login to the WordPress.org site and scroll to the bottom of the Reviews page."
13131
  msgstr ""
13132
 
13133
- #: includes/hud-dismiss-functions.php:759
13134
  msgid ""
13135
  "To Dismiss this one-time Notice click the Dismiss Notice button below. To "
13136
  "Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the "
13137
  "BPS Custom Code page."
13138
  msgstr ""
13139
 
13140
- #: includes/hud-dismiss-functions.php:797
13141
  msgid "BPS Notice: Mod Security Module is Loaded|Enabled"
13142
  msgstr ""
13143
 
13144
- #: includes/hud-dismiss-functions.php:797
13145
  msgid "Please take a minute to view this Mod Security help forum topic: "
13146
  msgstr ""
13147
 
13148
- #: includes/hud-dismiss-functions.php:797
13149
  msgid "Mod Security Common Known Problems"
13150
  msgstr ""
13151
 
13152
- #: includes/hud-dismiss-functions.php:797
13153
  msgid ""
13154
  "If you are not experiencing any of the problems listed in the Mod Security "
13155
  "help forum topic then you can dismiss this Dismiss Notice."
13156
  msgstr ""
13157
 
13158
- #: includes/hud-dismiss-functions.php:830
13159
  msgid "BPS GDPR Compliance Notice"
13160
  msgstr ""
13161
 
13162
- #: includes/hud-dismiss-functions.php:830
13163
  msgid ""
13164
  "A new Setup Wizard Option has been created which allows you to turn off all "
13165
  "IP address logging in BPS to make your website GDPR Compliant."
13166
  msgstr ""
13167
 
13168
- #: includes/hud-dismiss-functions.php:830
13169
  msgid "GDPR Compliance Setup Wizard Option link"
13170
  msgstr ""
13171
 
13172
- #: includes/hud-dismiss-functions.php:830
13173
  msgid "Choose the GDPR Compliance On setting."
13174
  msgstr ""
13175
 
13176
- #: includes/hud-dismiss-functions.php:830
13177
  msgid "For more information about GDPR Compliance click this "
13178
  msgstr ""
13179
 
13180
- #: includes/hud-dismiss-functions.php:830
13181
  msgid "GDPR Compliance Forum Topic link"
13182
  msgstr ""
13183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13184
  #: includes/login-security.php:123 includes/login-security.php:129
13185
  #: includes/login-security.php:342 includes/login-security.php:484
13186
  #: includes/login-security.php:490 includes/login-security.php:616
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2020-09-09 15:53-0700\n"
7
  "PO-Revision-Date: 2015-06-20 19:13-0800\n"
8
  "Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
9
  "Language-Team: AITpro <info@ait-pro.com>\n"
261
  msgstr ""
262
 
263
  #: admin/core/core-custom-code.php:451 admin/core/core-custom-code.php:818
264
+ #: admin/core/core.php:1950
265
  msgid "Click the Custom Code Read Me help button for more help info."
266
  msgstr ""
267
 
461
  msgstr ""
462
 
463
  #: admin/core/core-forms.php:18 admin/core/core-forms.php:98
464
+ #: admin/core/core.php:1237
465
  msgid "htaccess Files Disabled: wp-admin htaccess file writing is disabled. "
466
  msgstr ""
467
 
471
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
472
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
473
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
474
+ #: admin/core/core.php:844 admin/core/core.php:934 admin/core/core.php:1048
475
+ #: admin/core/core.php:1138 admin/core/core.php:1237
476
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
477
  #: admin/maintenance/maintenance.php:1639
478
  #: admin/maintenance/maintenance.php:1769
486
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
487
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
488
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
489
+ #: admin/core/core.php:844 admin/core/core.php:934 admin/core/core.php:1048
490
+ #: admin/core/core.php:1138 admin/core/core.php:1237
491
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
492
  #: admin/maintenance/maintenance.php:1639
493
  #: admin/maintenance/maintenance.php:1769
884
  msgid "Success! The Root htaccess File Version Check Notice is reset."
885
  msgstr ""
886
 
887
+ #: admin/core/core-forms.php:692
888
+ msgid ""
889
+ "The BPS wp-config.php file WP Automatic Update constants detected Notice is "
890
+ "NOT set. Nothing to reset."
891
+ msgstr ""
892
+
893
+ #: admin/core/core-forms.php:695
894
+ msgid ""
895
+ "Success! The BPS wp-config.php file WP Automatic Update constants detected "
896
+ "Notice is reset."
897
+ msgstr ""
898
+
899
+ #: admin/core/core-forms.php:699
900
  msgid "Refresh Status"
901
  msgstr ""
902
 
1086
  "Send Email Alerts."
1087
  msgstr ""
1088
 
1089
+ #: admin/core/core-help-text.php:18 admin/core/core.php:495
1090
  msgid "HPF Cron Check Frequency:"
1091
  msgstr ""
1092
 
1098
  "Options button to save your settings."
1099
  msgstr ""
1100
 
1101
+ #: admin/core/core-help-text.php:18 admin/core/core.php:506
1102
  msgid "HPF Cron On|Off:"
1103
  msgstr ""
1104
 
1108
  "HPF Cron Off. Click the Save HPF Cron Options button to save your settings."
1109
  msgstr ""
1110
 
1111
+ #: admin/core/core-help-text.php:18 admin/core/core.php:526
1112
  msgid "Ignore Hidden Plugin Folders & Files:"
1113
  msgstr ""
1114
 
1211
  msgstr ""
1212
 
1213
  #: admin/core/core-help-text.php:30 admin/core/core.php:209
1214
+ #: admin/core/core.php:331 admin/core/core.php:432 admin/core/core.php:556
1215
+ #: admin/core/core.php:644 admin/core/core.php:732 admin/core/core.php:1817
1216
  #: admin/db-backup-security/db-backup-help-text.php:12
1217
  #: admin/db-backup-security/db-backup-help-text.php:15
1218
  #: admin/db-backup-security/db-backup-security.php:281
1219
  #: admin/email-log-settings/email-log-settings.php:106
1220
  #: admin/login/login.php:192 admin/login/login.php:807
1221
+ #: admin/login/login.php:1132 admin/maintenance/maintenance.php:186
1222
+ #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:138
1223
  #: admin/security-log/security-log.php:246
1224
  #: admin/system-info/system-info.php:103 admin/theme-skin/theme-skin.php:110
1225
  #: admin/wizard/wizard.php:1037 admin/wizard/wizard.php:1105
1744
 
1745
  #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
1746
  #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
1747
+ #: admin/core/core.php:1138
1748
  msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
1749
  msgstr ""
1750
 
1751
  #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1752
+ #: admin/core/core.php:981
1753
  msgid "Failed to copy your Custom default.htaccess file: "
1754
  msgstr ""
1755
 
1756
  #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1757
+ #: admin/core/core.php:981
1758
  msgid " to: "
1759
  msgstr ""
1760
 
1796
  msgid "Rate BPS"
1797
  msgstr ""
1798
 
1799
+ #: admin/core/core.php:126 admin/includes/admin.php:335
1800
+ #: admin/includes/admin.php:336
1801
  msgid "BulletProof Security ~ htaccess Core"
1802
  msgstr ""
1803
 
1817
  msgid "htaccess File Editor"
1818
  msgstr ""
1819
 
1820
+ #: admin/core/core.php:182 admin/core/core.php:1801 admin/core/core.php:1814
1821
  msgid "Custom Code"
1822
  msgstr ""
1823
 
1833
  #: admin/db-backup-security/db-backup-security.php:1697
1834
  #: admin/email-log-settings/email-log-settings.php:87 admin/login/login.php:164
1835
  #: admin/maintenance/maintenance.php:150 admin/mscan/mscan.php:115
1836
+ #: admin/mscan/mscan.php:1924 admin/security-log/security-log.php:227
1837
  #: admin/system-info/system-info.php:90 admin/theme-skin/theme-skin.php:92
1838
+ #: admin/theme-skin/theme-skin.php:244
1839
  msgid "Help &amp; FAQ"
1840
  msgstr ""
1841
 
1842
+ #: admin/core/core.php:186 bulletproof-security.php:173
1843
  msgid "BPS Pro Features"
1844
  msgstr ""
1845
 
1851
  msgid "RBM, WBM, HPF, MBM & BBM BulletProof Modes"
1852
  msgstr ""
1853
 
1854
+ #: admin/core/core.php:194 admin/core/core.php:772 admin/core/core.php:1795
1855
+ #: admin/core/core.php:1929 admin/core/core.php:2035
1856
  #: admin/db-backup-security/db-backup-security.php:270
1857
  #: admin/db-backup-security/db-backup-security.php:1201
1858
  #: admin/db-backup-security/db-backup-security.php:1357
1864
  msgid "Want even more security protection?"
1865
  msgstr ""
1866
 
1867
+ #: admin/core/core.php:194 admin/core/core.php:772 admin/core/core.php:1795
1868
+ #: admin/core/core.php:1929 admin/core/core.php:2035
1869
  #: admin/email-log-settings/email-log-settings.php:95
1870
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1871
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1874
  "Protect all of your Plugins (plugin folders and files) with an IP Firewall: "
1875
  msgstr ""
1876
 
1877
+ #: admin/core/core.php:194 admin/core/core.php:772 admin/core/core.php:1795
1878
+ #: admin/core/core.php:1929 admin/core/core.php:2035
1879
  #: admin/email-log-settings/email-log-settings.php:95
1880
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1881
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1883
  msgid "Get BPS Pro Plugin Firewall"
1884
  msgstr ""
1885
 
1886
+ #: admin/core/core.php:194 admin/core/core.php:772 admin/core/core.php:1795
1887
+ #: admin/core/core.php:1929 admin/core/core.php:2035
1888
  #: admin/email-log-settings/email-log-settings.php:95
1889
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1890
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1894
  "files: "
1895
  msgstr ""
1896
 
1897
+ #: admin/core/core.php:194 admin/core/core.php:772 admin/core/core.php:1795
1898
+ #: admin/core/core.php:1929 admin/core/core.php:2035
1899
  #: admin/email-log-settings/email-log-settings.php:95
1900
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
1901
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1903
  msgid "Get BPS Pro Uploads Anti-Exploit Guard"
1904
  msgstr ""
1905
 
1906
+ #: admin/core/core.php:200 admin/core/core.php:784 admin/core/core.php:1836
1907
+ #: admin/core/core.php:1872 admin/core/core.php:1889 admin/login/login.php:142
1908
  #: admin/login/login.php:199 admin/login/login.php:907
1909
+ #: admin/login/login.php:1153 admin/system-info/system-info.php:116
1910
+ #: admin/system-info/system-info.php:1044
1911
  msgid "Permission Denied"
1912
  msgstr ""
1913
 
1915
  msgid "Activate|Deactivate Security Modes"
1916
  msgstr ""
1917
 
1918
+ #: admin/core/core.php:204 admin/core/core.php:206 admin/core/core.php:328
1919
  msgid "Root Folder BulletProof Mode (RBM)"
1920
  msgstr ""
1921
 
1922
+ #: admin/core/core.php:204 admin/core/core.php:326 admin/core/core.php:427
1923
+ #: admin/core/core.php:551 admin/core/core.php:639 admin/core/core.php:727
1924
+ #: admin/core/core.php:778 admin/core/core.php:1801
1925
  #: admin/db-backup-security/db-backup-security.php:276
1926
  #: admin/db-backup-security/db-backup-security.php:1207
1927
  #: admin/db-backup-security/db-backup-security.php:1363
1928
  #: admin/email-log-settings/email-log-settings.php:101
1929
  #: admin/login/login.php:187 admin/login/login.php:802
1930
+ #: admin/login/login.php:1123 admin/maintenance/maintenance.php:181
1931
+ #: admin/mscan/mscan.php:133 admin/mscan/mscan.php:1725
1932
  #: admin/security-log/security-log.php:241 admin/system-info/system-info.php:98
1933
  #: admin/theme-skin/theme-skin.php:107 admin/wizard/wizard.php:1028
1934
  #: admin/wizard/wizard.php:1097
1935
  msgid "Read Me"
1936
  msgstr ""
1937
 
1938
+ #: admin/core/core.php:211 admin/core/core.php:333 admin/core/core.php:1819
1939
  #: admin/db-backup-security/db-backup-security.php:284
1940
  #: admin/email-log-settings/email-log-settings.php:109
1941
+ #: admin/login/login.php:1135 admin/maintenance/maintenance.php:189
1942
+ #: admin/mscan/mscan.php:140 admin/system-info/system-info.php:106
1943
  msgid "Forum Help Links: "
1944
  msgstr ""
1945
 
1946
+ #: admin/core/core.php:214 admin/core/core.php:336
1947
  msgid "Setup Wizard & Other Video Tutorials"
1948
  msgstr ""
1949
 
1950
+ #: admin/core/core.php:215 admin/core/core.php:337
1951
  #: admin/email-log-settings/email-log-settings.php:112
1952
+ #: admin/mscan/mscan.php:145 admin/security-log/security-log.php:252
1953
  msgid "BPS Troubleshooting Steps"
1954
  msgstr ""
1955
 
1956
+ #: admin/core/core.php:249 admin/core/core.php:252 admin/core/core.php:255
1957
+ #: admin/core/core.php:258 admin/core/core.php:266 admin/core/core.php:269
1958
+ #: admin/core/core.php:272 admin/core/core.php:275
1959
  msgid "RBM Status: "
1960
  msgstr ""
1961
 
1962
+ #: admin/core/core.php:249 admin/core/core.php:266 admin/core/core.php:376
1963
+ #: admin/core/core.php:390 admin/core/core.php:587 admin/core/core.php:601
1964
+ #: admin/core/core.php:675 admin/core/core.php:689
1965
  msgid "Disabled"
1966
  msgstr ""
1967
 
1968
+ #: admin/core/core.php:252 admin/core/core.php:269
1969
  msgid "Root htaccess File Does Not Exist"
1970
  msgstr ""
1971
 
1972
+ #: admin/core/core.php:255 admin/core/core.php:272 admin/core/core.php:382
1973
+ #: admin/core/core.php:396 admin/core/core.php:593 admin/core/core.php:607
1974
+ #: admin/core/core.php:681 admin/core/core.php:695
1975
+ #: admin/system-info/system-info.php:255
1976
  msgid "Activated"
1977
  msgstr ""
1978
 
1979
+ #: admin/core/core.php:258 admin/core/core.php:275 admin/core/core.php:379
1980
+ #: admin/core/core.php:393 admin/core/core.php:590 admin/core/core.php:604
1981
+ #: admin/core/core.php:678 admin/core/core.php:692
1982
+ #: admin/system-info/system-info.php:264
1983
  msgid "Deactivated"
1984
  msgstr ""
1985
 
1986
+ #: admin/core/core.php:292 admin/core/core.php:310
1987
  msgid "Click OK to Activate Root Folder BulletProof Mode or click Cancel."
1988
  msgstr ""
1989
 
1990
+ #: admin/core/core.php:300 admin/core/core.php:318
1991
  msgid "Click OK to Deactivate Root Folder BulletProof Mode or click Cancel."
1992
  msgstr ""
1993
 
1994
+ #: admin/core/core.php:326
1995
  msgid "wp-admin Folder BulletProof Mode (WBM)"
1996
  msgstr ""
1997
 
1998
+ #: admin/core/core.php:376 admin/core/core.php:379 admin/core/core.php:382
1999
+ #: admin/core/core.php:390 admin/core/core.php:393 admin/core/core.php:396
2000
  msgid "WBM Status: "
2001
  msgstr ""
2002
 
2003
+ #: admin/core/core.php:411
2004
  msgid "Click OK to Activate wp-admin Folder BulletProof Mode or click Cancel."
2005
  msgstr ""
2006
 
2007
+ #: admin/core/core.php:419
2008
  msgid ""
2009
  "Click OK to Deactivate wp-admin Folder BulletProof Mode or click Cancel."
2010
  msgstr ""
2011
 
2012
+ #: admin/core/core.php:427 admin/core/core.php:429
2013
  msgid "Hidden Plugin Folders|Files Cron (HPF)"
2014
  msgstr ""
2015
 
2016
+ #: admin/core/core.php:462 admin/core/core.php:465 admin/core/core.php:473
2017
+ #: admin/core/core.php:476
2018
  msgid "HPF Status: "
2019
  msgstr ""
2020
 
2021
+ #: admin/core/core.php:462 admin/core/core.php:473 admin/core/core.php:508
2022
  msgid "HPF Cron On"
2023
  msgstr ""
2024
 
2025
+ #: admin/core/core.php:465 admin/core/core.php:476 admin/core/core.php:509
2026
  msgid "HPF Cron Off"
2027
  msgstr ""
2028
 
2029
+ #: admin/core/core.php:497
2030
  msgid "Run Check Every 1 Minute"
2031
  msgstr ""
2032
 
2033
+ #: admin/core/core.php:498
2034
  msgid "Run Check Every 5 Minutes"
2035
  msgstr ""
2036
 
2037
+ #: admin/core/core.php:499
2038
  msgid "Run Check Every 10 Minutes"
2039
  msgstr ""
2040
 
2041
+ #: admin/core/core.php:500
2042
  msgid "Run Check Every 15 Minutes"
2043
  msgstr ""
2044
 
2045
+ #: admin/core/core.php:501
2046
  msgid "Run Check Every 30 Minutes"
2047
  msgstr ""
2048
 
2049
+ #: admin/core/core.php:502
2050
  msgid "Run Check Every 60 Minutes"
2051
  msgstr ""
2052
 
2053
+ #: admin/core/core.php:503
2054
  msgid "Run Check Once Daily"
2055
  msgstr ""
2056
 
2057
+ #: admin/core/core.php:512
2058
  msgid "Save HPF Cron Options"
2059
  msgstr ""
2060
 
2061
+ #: admin/core/core.php:512
2062
  msgid ""
2063
  "The default Cron Frequency is: Run Check Every 15 Minutes. This is a "
2064
  "lightweight check that uses an insignificant amount of resources/memory so 4 "
2070
  "OK to proceed or click Cancel"
2071
  msgstr ""
2072
 
2073
+ #: admin/core/core.php:527
2074
  msgid "Add Ignore rules using plugin folder names or file names."
2075
  msgstr ""
2076
 
2077
+ #: admin/core/core.php:527
2078
  msgid "Use a comma and a space between folder and/or file names."
2079
  msgstr ""
2080
 
2081
+ #: admin/core/core.php:527
2082
  msgid "Example: plugin-folder-name, example-file-name.php"
2083
  msgstr ""
2084
 
2085
+ #: admin/core/core.php:533
2086
  msgid ""
2087
  "This option is for adding ignore rules for Hidden or Empty Plugin Folders "
2088
  "Detected by BPS or Non-standard WP files detected by BPS in your /plugins/ "
2089
  "folder."
2090
  msgstr ""
2091
 
2092
+ #: admin/core/core.php:533
2093
  msgid ""
2094
  "This is an independent option setting that does not require clicking any "
2095
  "other buttons."
2096
  msgstr ""
2097
 
2098
+ #: admin/core/core.php:533 admin/maintenance/maintenance.php:641
2099
  #: admin/security-log/security-log.php:465
2100
  #: admin/security-log/security-log.php:480
2101
  #: admin/security-log/security-log.php:698
2102
+ #: admin/system-info/system-info.php:1100
2103
  msgid "Click OK to proceed or click Cancel."
2104
  msgstr ""
2105
 
2106
+ #: admin/core/core.php:551
2107
  msgid "Master htaccess Folder BulletProof Mode (MBM)"
2108
  msgstr ""
2109
 
2110
+ #: admin/core/core.php:553
2111
  msgid "MBM BulletProof Modes"
2112
  msgstr ""
2113
 
2114
+ #: admin/core/core.php:587 admin/core/core.php:590 admin/core/core.php:593
2115
+ #: admin/core/core.php:601 admin/core/core.php:604 admin/core/core.php:607
2116
  msgid "MBM Status: "
2117
  msgstr ""
2118
 
2119
+ #: admin/core/core.php:622
2120
  msgid "Click OK to Activate MBM BulletProof Mode or click Cancel."
2121
  msgstr ""
2122
 
2123
+ #: admin/core/core.php:630
2124
  msgid "Click OK to Deactivate MBM BulletProof Mode or click Cancel."
2125
  msgstr ""
2126
 
2127
+ #: admin/core/core.php:639
2128
  msgid "BPS Backup Folder BulletProof Mode (BBM)"
2129
  msgstr ""
2130
 
2131
+ #: admin/core/core.php:641
2132
  msgid "BBM BulletProof Modes"
2133
  msgstr ""
2134
 
2135
+ #: admin/core/core.php:675 admin/core/core.php:678 admin/core/core.php:681
2136
+ #: admin/core/core.php:689 admin/core/core.php:692 admin/core/core.php:695
2137
  msgid "BBM Status: "
2138
  msgstr ""
2139
 
2140
+ #: admin/core/core.php:710
2141
  msgid "Click OK to Activate BBM BulletProof Mode or click Cancel."
2142
  msgstr ""
2143
 
2144
+ #: admin/core/core.php:718
2145
  msgid ""
2146
  "Caution: BPS Backup Folder BulletProof Mode (BBM) should only be deactivated "
2147
  "for testing or troubleshooting. Be sure to activate BBM BulletProof Mode "
2148
  "after you are done testing or troubleshooting."
2149
  msgstr ""
2150
 
2151
+ #: admin/core/core.php:718
2152
  msgid "Click OK to Deactivate BBM BulletProof Mode or click Cancel."
2153
  msgstr ""
2154
 
2155
+ #: admin/core/core.php:727 admin/core/core.php:729
2156
  msgid "Backup & Restore BPS htaccess Files"
2157
  msgstr ""
2158
 
2159
+ #: admin/core/core.php:745
2160
  msgid "Click OK to Backup BPS htaccess files or click Cancel."
2161
  msgstr ""
2162
 
2163
+ #: admin/core/core.php:753
2164
  msgid "Click OK to Restore BPS htaccess files or click Cancel."
2165
  msgstr ""
2166
 
2167
+ #: admin/core/core.php:772
2168
  msgid "htaccess File Editor ~ "
2169
  msgstr ""
2170
 
2171
+ #: admin/core/core.php:772
2172
  msgid ""
2173
  "Check or edit BPS htaccess files/code manually/directly for testing. Use BPS "
2174
  "Custom Code to save htaccess code permanently"
2175
  msgstr ""
2176
 
2177
+ #: admin/core/core.php:778 admin/core/core.php:780
2178
  msgid "htaccess File Editing"
2179
  msgstr ""
2180
 
2181
+ #: admin/core/core.php:811
2182
  msgid "htaccess Files Disabled: secure.htaccess Master file is disabled."
2183
  msgstr ""
2184
 
2185
+ #: admin/core/core.php:815
2186
  msgid "ERROR: A secure.htaccess Master file was NOT found."
2187
  msgstr ""
2188
 
2189
+ #: admin/core/core.php:824
2190
  msgid ""
2191
  "File Open and Write test successful! The secure.htaccess Master file is "
2192
  "writable."
2193
  msgstr ""
2194
 
2195
+ #: admin/core/core.php:829 admin/core/core.php:919 admin/core/core.php:1032
2196
+ #: admin/core/core.php:1221 admin/security-log/security-log.php:761
2197
  msgid "Cannot write to file: "
2198
  msgstr ""
2199
 
2200
+ #: admin/core/core.php:844
2201
  msgid ""
2202
  "htaccess Files Disabled: secure.htaccess Master file writing is disabled. "
2203
  msgstr ""
2204
 
2205
+ #: admin/core/core.php:864
2206
  msgid "Error: Unable to write to the secure.htaccess Master file."
2207
  msgstr ""
2208
 
2209
+ #: admin/core/core.php:879
2210
  msgid "The secure.htaccess Master file has been updated."
2211
  msgstr ""
2212
 
2213
+ #: admin/core/core.php:901
2214
  msgid "htaccess Files Disabled: default.htaccess Master file is disabled."
2215
  msgstr ""
2216
 
2217
+ #: admin/core/core.php:905
2218
  msgid "ERROR: A default.htaccess Master file was NOT found."
2219
  msgstr ""
2220
 
2221
+ #: admin/core/core.php:914
2222
  msgid ""
2223
  "File Open and Write test successful! The default.htaccess Master file is "
2224
  "writable."
2225
  msgstr ""
2226
 
2227
+ #: admin/core/core.php:934
2228
  msgid ""
2229
  "htaccess Files Disabled: default.htaccess Master file writing is disabled. "
2230
  msgstr ""
2231
 
2232
+ #: admin/core/core.php:954
2233
  msgid "Error: Unable to write to the default.htaccess Master file."
2234
  msgstr ""
2235
 
2236
+ #: admin/core/core.php:969
2237
  msgid "The default.htaccess Master file has been updated."
2238
  msgstr ""
2239
 
2240
+ #: admin/core/core.php:981
2241
  msgid ""
2242
  " Check that the /bps-backup/ and /master-backups/ folders exist and the "
2243
  "folder permissions or Ownership for these folders."
2244
  msgstr ""
2245
 
2246
+ #: admin/core/core.php:986
2247
  msgid ""
2248
  "Your Custom default.htaccess Master file has been successfully saved to: "
2249
  msgstr ""
2250
 
2251
+ #: admin/core/core.php:1008
2252
  msgid "wpadmin-secure.htaccess file writing is disabled."
2253
  msgstr ""
2254
 
2255
+ #: admin/core/core.php:1014
2256
  msgid ""
2257
  "htaccess Files Disabled: wpadmin-secure.htaccess Master file is disabled."
2258
  msgstr ""
2259
 
2260
+ #: admin/core/core.php:1018
2261
  msgid "ERROR: A wpadmin-secure.htaccess Master file was NOT found."
2262
  msgstr ""
2263
 
2264
+ #: admin/core/core.php:1027
2265
  msgid ""
2266
  "File Open and Write test successful! The wpadmin-secure.htaccess Master file "
2267
  "is writable."
2268
  msgstr ""
2269
 
2270
+ #: admin/core/core.php:1048
2271
  msgid ""
2272
  "htaccess Files Disabled: wpadmin-secure.htaccess Master file writing is "
2273
  "disabled. "
2274
  msgstr ""
2275
 
2276
+ #: admin/core/core.php:1068
2277
  msgid "Error: Unable to write to the wpadmin-secure.htaccess Master file."
2278
  msgstr ""
2279
 
2280
+ #: admin/core/core.php:1083
2281
  msgid "The wpadmin-secure.htaccess Master file has been updated."
2282
  msgstr ""
2283
 
2284
+ #: admin/core/core.php:1105
2285
  msgid "htaccess Files Disabled: Root htaccess file does not exist."
2286
  msgstr ""
2287
 
2288
+ #: admin/core/core.php:1109
2289
  msgid "ERROR: An htaccess file was NOT found in your root folder"
2290
  msgstr ""
2291
 
2292
+ #: admin/core/core.php:1118
2293
  msgid ""
2294
  "File Open and Write test successful! Your currently active root htaccess "
2295
  "file is writable."
2296
  msgstr ""
2297
 
2298
+ #: admin/core/core.php:1123
2299
  msgid "Your root htaccess file is Locked with Read Only Permissions."
2300
  msgstr ""
2301
 
2302
+ #: admin/core/core.php:1123
2303
  msgid ""
2304
  "Use the Lock and Unlock buttons below to Lock or Unlock your root htaccess "
2305
  "file for editing."
2306
  msgstr ""
2307
 
2308
+ #: admin/core/core.php:1158
2309
  msgid ""
2310
  "Error: Unable to write to the Root htaccess file. If your Root htaccess file "
2311
  "is locked you must unlock first."
2312
  msgstr ""
2313
 
2314
+ #: admin/core/core.php:1173
2315
  msgid "Your currently active root htaccess file has been updated."
2316
  msgstr ""
2317
 
2318
+ #: admin/core/core.php:1197
2319
  msgid "wp-admin active htaccess file writing is disabled."
2320
  msgstr ""
2321
 
2322
+ #: admin/core/core.php:1203
2323
  msgid "htaccess Files Disabled: wp-admin folder htaccess file does not exist."
2324
  msgstr ""
2325
 
2326
+ #: admin/core/core.php:1207
2327
  msgid "ERROR: An htaccess file was NOT found in your wp-admin folder"
2328
  msgstr ""
2329
 
2330
+ #: admin/core/core.php:1216
2331
  msgid ""
2332
  "File Open and Write test successful! Your currently active wp-admin htaccess "
2333
  "file is writable."
2334
  msgstr ""
2335
 
2336
+ #: admin/core/core.php:1257
2337
  msgid "Error: Unable to write to the wp-admin htaccess file."
2338
  msgstr ""
2339
 
2340
+ #: admin/core/core.php:1272
2341
  msgid "Your currently active wp-admin htaccess file has been updated."
2342
  msgstr ""
2343
 
2344
+ #: admin/core/core.php:1289
2345
  msgid "Your Root htaccess file has been Locked."
2346
  msgstr ""
2347
 
2348
+ #: admin/core/core.php:1294
2349
  msgid "Unable to Lock your Root htaccess file."
2350
  msgstr ""
2351
 
2352
+ #: admin/core/core.php:1308
2353
  msgid "Your Root htaccess file has been Unlocked."
2354
  msgstr ""
2355
 
2356
+ #: admin/core/core.php:1313
2357
  msgid "Unable to Unlock your Root htaccess file."
2358
  msgstr ""
2359
 
2360
+ #: admin/core/core.php:1336
2361
  msgid "Click OK to Lock your Root htaccess file or click Cancel."
2362
  msgstr ""
2363
 
2364
+ #: admin/core/core.php:1336
2365
  msgid ""
2366
  "Note: The File Open and Write Test window will still display the last status "
2367
  "of the file as Unlocked. To see the current status refresh your browser."
2368
  msgstr ""
2369
 
2370
+ #: admin/core/core.php:1344
2371
  msgid "Click OK to Unlock your Root htaccess file or click Cancel."
2372
  msgstr ""
2373
 
2374
+ #: admin/core/core.php:1344
2375
  msgid ""
2376
  "Note: The File Open and Write Test window will still display the last status "
2377
  "of the file as Locked. To see the current status refresh your browser."
2378
  msgstr ""
2379
 
2380
+ #: admin/core/core.php:1353
2381
  msgid ""
2382
  "Turning AutoLock On will allow BPS Pro to automatically lock your Root ."
2383
  "htaccess file. For some folks this causes a problem because their Web Hosts "
2385
  "BPS Pro to AutoLock the Root .htaccess file works fine."
2386
  msgstr ""
2387
 
2388
+ #: admin/core/core.php:1353
2389
  msgid "Click OK to Turn AutoLock On or click Cancel."
2390
  msgstr ""
2391
 
2392
+ #: admin/core/core.php:1355 admin/system-info/system-info.php:762
2393
+ #: admin/system-info/system-info.php:778 admin/system-info/system-info.php:786
2394
+ #: admin/system-info/system-info.php:794 admin/system-info/system-info.php:802
2395
+ #: admin/system-info/system-info.php:810 admin/system-info/system-info.php:818
2396
+ #: admin/system-info/system-info.php:826 admin/system-info/system-info.php:834
2397
+ #: admin/system-info/system-info.php:853 includes/functions.php:572
2398
  #: includes/functions.php:757 includes/functions.php:925
2399
  #: includes/functions.php:968 includes/functions.php:1016
2400
  #: includes/functions.php:1060
2401
  msgid "On"
2402
  msgstr ""
2403
 
2404
+ #: admin/core/core.php:1365
2405
  msgid ""
2406
  "Turning AutoLock Off will prevent BPS Pro from automatically locking your "
2407
  "Root .htaccess file. For some folks this is necessary because their Web "
2409
  "allowing BPS Pro to AutoLock the Root .htaccess file works fine."
2410
  msgstr ""
2411
 
2412
+ #: admin/core/core.php:1365
2413
  msgid "Click OK to Turn AutoLock Off or click Cancel."
2414
  msgstr ""
2415
 
2416
+ #: admin/core/core.php:1367 admin/system-info/system-info.php:546
2417
+ #: admin/system-info/system-info.php:781 admin/system-info/system-info.php:789
2418
+ #: admin/system-info/system-info.php:797 admin/system-info/system-info.php:805
2419
+ #: admin/system-info/system-info.php:813 admin/system-info/system-info.php:821
2420
+ #: admin/system-info/system-info.php:829 admin/system-info/system-info.php:837
2421
+ #: admin/system-info/system-info.php:845 admin/system-info/system-info.php:856
2422
  #: includes/functions.php:930 includes/functions.php:973
2423
  #: includes/functions.php:1022 includes/functions.php:1066
2424
  #: includes/general-functions.php:285 includes/general-functions.php:300
2425
  msgid "Off"
2426
  msgstr ""
2427
 
2428
+ #: admin/core/core.php:1382
2429
  msgid "secure.htaccess"
2430
  msgstr ""
2431
 
2432
+ #: admin/core/core.php:1383
2433
  msgid "default.htaccess"
2434
  msgstr ""
2435
 
2436
+ #: admin/core/core.php:1384
2437
  msgid "wpadmin-secure.htaccess"
2438
  msgstr ""
2439
 
2440
+ #: admin/core/core.php:1385
2441
  msgid "Your Current Root htaccess File"
2442
  msgstr ""
2443
 
2444
+ #: admin/core/core.php:1386
2445
  msgid "Your Current wp-admin htaccess File"
2446
  msgstr ""
2447
 
2448
+ #: admin/core/core.php:1409 admin/core/core.php:1481 admin/core/core.php:1553
2449
+ #: admin/core/core.php:1644 admin/core/core.php:1718
2450
  msgid ""
2451
  "If you see an error or are unable to save your editing changes then click "
2452
  "the Encrypt htaccess Code button first and then click the Update File "
2453
  "button. Mouse over the question mark image to the right for help info."
2454
  msgstr ""
2455
 
2456
+ #: admin/core/core.php:1409 admin/core/core.php:1481 admin/core/core.php:1553
2457
+ #: admin/core/core.php:1644 admin/core/core.php:1718
2458
  msgid ""
2459
  "If your web host currently has ModSecurity installed or installs ModSecurity "
2460
  "at a later time then ModSecurity will prevent you from saving your htaccess "
2462
  "button."
2463
  msgstr ""
2464
 
2465
+ #: admin/core/core.php:1409 admin/core/core.php:1481 admin/core/core.php:1553
2466
+ #: admin/core/core.php:1644 admin/core/core.php:1718
2467
  msgid ""
2468
  "If you click the Encrypt htaccess Code button and then want to edit your "
2469
  "code again click the Decrypt htaccess Code button. After you are done "
2471
  "File button."
2472
  msgstr ""
2473
 
2474
+ #: admin/core/core.php:1409 admin/core/core.php:1481 admin/core/core.php:1553
2475
+ #: admin/core/core.php:1644 admin/core/core.php:1718
2476
  msgid "Click the htaccess File Editing Read Me help button for more help info."
2477
  msgstr ""
2478
 
2479
+ #: admin/core/core.php:1641
2480
  msgid "YOUR ROOT HTACCESS FILE IS LOCKED."
2481
  msgstr ""
2482
 
2483
+ #: admin/core/core.php:1641
2484
  msgid "YOUR FILE EDITS|CHANGES CANNOT BE SAVED."
2485
  msgstr ""
2486
 
2487
+ #: admin/core/core.php:1641
2488
  msgid ""
2489
  "Click Cancel, copy the file editing changes you made to save them and then "
2490
  "click the Unlock .htaccess File button to unlock your Root .htaccess file. "
2493
  "to save your file edits/changes."
2494
  msgstr ""
2495
 
2496
+ #: admin/core/core.php:1795
2497
  msgid "htaccess File Custom Code ~ "
2498
  msgstr ""
2499
 
2500
+ #: admin/core/core.php:1795
2501
  msgid ""
2502
  "Save custom htaccess code for your Root and wp-admin htaccess Files "
2503
  "permanently"
2504
  msgstr ""
2505
 
2506
+ #: admin/core/core.php:1807
2507
  msgid "Reset|Recheck Dismiss Notices: "
2508
  msgstr ""
2509
 
2510
+ #: admin/core/core.php:1822
2511
  msgid "Brute Force Login Page Protection code"
2512
  msgstr ""
2513
 
2514
+ #: admin/core/core.php:1830 admin/core/core.php:2078
2515
  #: admin/wizard/wizard.php:1043
2516
  msgid "Custom Code Video Tutorial"
2517
  msgstr ""
2518
 
2519
+ #: admin/core/core.php:1831
2520
  msgid "BulletProof Security Forum"
2521
  msgstr ""
2522
 
2523
+ #: admin/core/core.php:1848
2524
  msgid ""
2525
  "Clicking OK will Import all of your Root and wp-admin Custom Code from the "
2526
  "cc-master.zip file on your computer."
2527
  msgstr ""
2528
 
2529
+ #: admin/core/core.php:1848
2530
  msgid "Click OK to Import Custom Code or click Cancel."
2531
  msgstr ""
2532
 
2533
+ #: admin/core/core.php:1857
2534
  msgid ""
2535
  "Clicking OK will Export (copy) all of your Root and wp-admin Custom Code "
2536
  "into the cc-master.zip file, which you can then download to your computer by "
2538
  "success message."
2539
  msgstr ""
2540
 
2541
+ #: admin/core/core.php:1857
2542
  msgid "Click OK to Export Custom Code or click Cancel."
2543
  msgstr ""
2544
 
2545
+ #: admin/core/core.php:1865
2546
  msgid ""
2547
  "Clicking OK will delete all of your Root and wp-admin Custom Code from all "
2548
  "of the Custom Code text boxes."
2549
  msgstr ""
2550
 
2551
+ #: admin/core/core.php:1865
2552
  msgid "Click OK to Delete Custom Code or click Cancel."
2553
  msgstr ""
2554
 
2555
+ #: admin/core/core.php:1916
2556
  msgid ""
2557
  "Your My Notes Personal Notes and/or htaccess Code Notes saved successfully "
2558
  "to your WordPress Database."
2559
  msgstr ""
2560
 
2561
+ #: admin/core/core.php:1929
2562
  msgid "My Notes ~ "
2563
  msgstr ""
2564
 
2565
+ #: admin/core/core.php:1929
2566
  msgid "Save Personal Notes and htaccess Code Notes to your WordPress Database"
2567
  msgstr ""
2568
 
2569
+ #: admin/core/core.php:1950
2570
  msgid ""
2571
  "If you are unable to save custom htaccess code and/or see an error message "
2572
  "when trying to save custom htaccess code, "
2573
  msgstr ""
2574
 
2575
+ #: admin/core/core.php:1950
2576
  msgid ""
2577
  "click the Encrypt My Notes button first and then click the Save My Notes "
2578
  "button."
2579
  msgstr ""
2580
 
2581
+ #: admin/core/core.php:1950
2582
  msgid "Mouse over the question mark image to the right for help info."
2583
  msgstr ""
2584
 
2585
+ #: admin/core/core.php:1950
2586
  msgid ""
2587
  "If your web host currently has ModSecurity installed or installs ModSecurity "
2588
  "at a later time then ModSecurity will prevent you from saving your custom "
2590
  "button."
2591
  msgstr ""
2592
 
2593
+ #: admin/core/core.php:1950
2594
  msgid ""
2595
  "If you click the Encrypt My Notes button, but then want to add or edit "
2596
  "additional custom code click the Decrypt My Notes button. After you are done "
2598
  "clicking the Save My Notes button."
2599
  msgstr ""
2600
 
2601
+ #: admin/core/core.php:2022
2602
  #: admin/db-backup-security/db-backup-security.php:1701
2603
+ #: admin/mscan/mscan.php:1928 admin/theme-skin/theme-skin.php:248
2604
  msgid "Whats New in "
2605
  msgstr ""
2606
 
2607
+ #: admin/core/core.php:2022
2608
  msgid " and General Help Info & Tips"
2609
  msgstr ""
2610
 
2611
+ #: admin/core/core.php:2027
2612
  msgid "The BPS Changelog|Whats New page has been moved to the "
2613
  msgstr ""
2614
 
2615
+ #: admin/core/core.php:2027
2616
  msgid "Reasons for this Changelog|Whats New page change: "
2617
  msgstr ""
2618
 
2619
+ #: admin/core/core.php:2027
2620
  msgid ""
2621
  "The BPS Changelog|Whats New page will not have to be translated by the "
2622
  "WordPress PolyGlots Language Packs Team for each new version release of BPS, "
2625
  "BPS version changes through the years and other beneficial reasons."
2626
  msgstr ""
2627
 
2628
+ #: admin/core/core.php:2035 admin/db-backup-security/db-backup-security.php:270
2629
  #: admin/db-backup-security/db-backup-security.php:1201
2630
  #: admin/db-backup-security/db-backup-security.php:1357
2631
  #: admin/email-log-settings/email-log-settings.php:95
2637
  "Detection & Prevention System: "
2638
  msgstr ""
2639
 
2640
+ #: admin/core/core.php:2035 admin/db-backup-security/db-backup-security.php:270
2641
  #: admin/db-backup-security/db-backup-security.php:1201
2642
  #: admin/db-backup-security/db-backup-security.php:1357
2643
  #: admin/email-log-settings/email-log-settings.php:95
2648
  msgid "Get BPS Pro ARQ IDPS"
2649
  msgstr ""
2650
 
2651
+ #: admin/core/core.php:2035 admin/email-log-settings/email-log-settings.php:95
2652
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
2653
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
2654
  #: admin/wizard/wizard.php:1022 admin/wizard/wizard.php:1091
2657
  "posting, auto-commenting): "
2658
  msgstr ""
2659
 
2660
+ #: admin/core/core.php:2035 admin/email-log-settings/email-log-settings.php:95
2661
  #: admin/login/login.php:181 admin/login/login.php:796
2662
  #: admin/maintenance/maintenance.php:170 admin/maintenance/maintenance.php:172
2663
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
2665
  msgid "Get BPS Pro JTC Anti-Spam|Anti-Hacker"
2666
  msgstr ""
2667
 
2668
+ #: admin/core/core.php:2040
2669
  msgid "General Help Info & Tips:"
2670
  msgstr ""
2671
 
2672
+ #: admin/core/core.php:2044
2673
  msgid "If BPS plugin pages are not displaying visually correct you can "
2674
  msgstr ""
2675
 
2676
+ #: admin/core/core.php:2048
2677
  msgid "BPS Video Tutorials|Setup Wizard: "
2678
  msgstr ""
2679
 
2680
+ #: admin/core/core.php:2056
2681
  msgid "Troubleshooting Steps & The BPS Security Log: "
2682
  msgstr ""
2683
 
2684
+ #: admin/core/core.php:2056
2685
  msgid ""
2686
  "All BPS plugin features can be turned Off/On individually to confirm, "
2687
  "eliminate or isolate a problem or issue that may or may not be caused by BPS."
2688
  msgstr ""
2689
 
2690
+ #: admin/core/core.php:2056
2691
  msgid ""
2692
  "The BPS Security Log is a primary troubleshooting tool. If BPS is blocking "
2693
  "something legitimate in another plugin or theme then a Security Log entry "
2696
  "being blocked."
2697
  msgstr ""
2698
 
2699
+ #: admin/core/core.php:2056
2700
  msgid ""
2701
  "Search the Forum site to see if a known issue or problem is already posted "
2702
  "with a solution/whitelist rule in the Forum."
2703
  msgstr ""
2704
 
2705
+ #: admin/core/core.php:2069 admin/maintenance/maintenance.php:2078
2706
  msgid "Help & FAQ"
2707
  msgstr ""
2708
 
2709
+ #: admin/core/core.php:2073 admin/email-log-settings/email-log-settings.php:220
2710
+ #: admin/login/login.php:1626 admin/maintenance/maintenance.php:2083
2711
+ #: admin/security-log/security-log.php:828
2712
+ #: admin/system-info/system-info.php:1119
2713
  msgid "Contributors Page"
2714
  msgstr ""
2715
 
2716
+ #: admin/core/core.php:2074
2717
  msgid "WP Permalinks - Custom Permalink Structure Help Info"
2718
  msgstr ""
2719
 
2720
+ #: admin/core/core.php:2075 admin/email-log-settings/email-log-settings.php:219
2721
+ #: admin/login/login.php:1625 admin/maintenance/maintenance.php:2084
2722
+ #: admin/security-log/security-log.php:827
2723
+ #: admin/system-info/system-info.php:1118
2724
  msgid "Security Log Event Codes"
2725
  msgstr ""
2726
 
2727
+ #: admin/core/core.php:2076
2728
  msgid "Adding a Custom 403 Forbidden Page For Your Website"
2729
  msgstr ""
2730
 
2731
+ #: admin/core/core.php:2077
2732
  #: admin/db-backup-security/db-backup-security.php:1705
2733
  #: admin/email-log-settings/email-log-settings.php:221
2734
+ #: admin/login/login.php:1627 admin/maintenance/maintenance.php:2085
2735
+ #: admin/mscan/mscan.php:1931 admin/security-log/security-log.php:829
2736
+ #: admin/system-info/system-info.php:1120 admin/theme-skin/theme-skin.php:251
2737
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2738
  msgstr ""
2739
 
2740
+ #: admin/core/core.php:2090
2741
  msgid "BulletProof Security Pro Feature Highlights"
2742
  msgstr ""
2743
 
2744
+ #: admin/core/core.php:2100
2745
  msgid "The Ultimate Security Protection"
2746
  msgstr ""
2747
 
2748
+ #: admin/core/core.php:2103
2749
  msgid "BPS Pro One-Click Setup Wizard & Demo Video Tutorial"
2750
  msgstr ""
2751
 
2752
+ #: admin/core/core.php:2104
2753
  msgid "View All BPS Pro Features"
2754
  msgstr ""
2755
 
2756
+ #: admin/core/core.php:2111
2757
  msgid ""
2758
  "The Complete Website Security Solution for Hacker and Spammer Protection"
2759
  msgstr ""
2760
 
2761
+ #: admin/core/core.php:2111
2762
  msgid ""
2763
  "BulletProof Security Pro has an amazing track record. BPS Pro has been "
2764
  "publicly available for 9+ years and is installed on over 50,000 websites "
2766
  "hacked."
2767
  msgstr ""
2768
 
2769
+ #: admin/core/core.php:2111
2770
  msgid ""
2771
  "Why pay 10 times or more for other premium WordPress Security Plugins with "
2772
  "recurring yearly subscriptions when you can get the best WordPress Security "
2773
  "Plugin for an extremely low one-time purchase price?"
2774
  msgstr ""
2775
 
2776
+ #: admin/core/core.php:2111
2777
  msgid "View Cost Comparison"
2778
  msgstr ""
2779
 
2780
+ #: admin/core/core.php:2111
2781
  msgid ""
2782
  "30-Day Money-Back Guarantee: If you are dissatisfied with BulletProof "
2783
  "Security Pro for any reason. We offer a no questions asked full refund."
2784
  msgstr ""
2785
 
2786
+ #: admin/core/core.php:2114
2787
  msgid "One-Click Setup Wizard Installation: "
2788
  msgstr ""
2789
 
2790
+ #: admin/core/core.php:2114
2791
  msgid ""
2792
  "Fast, simple and complete BPS Pro installation and setup in less than 1 "
2793
  "minute."
2794
  msgstr ""
2795
 
2796
+ #: admin/core/core.php:2116
2797
  msgid "One-Click Upgrade: "
2798
  msgstr ""
2799
 
2800
+ #: admin/core/core.php:2116
2801
  msgid "One-click plugin upgrade on the WordPress Plugins page."
2802
  msgstr ""
2803
 
2804
+ #: admin/core/core.php:2118
2805
  msgid ""
2806
  "AutoRestore|Quarantine Intrusion Detection and Prevention System (ARQ IDPS): "
2807
  msgstr ""
2808
 
2809
+ #: admin/core/core.php:2118
2810
  msgid ""
2811
  "ARQ IDPS is a real-time file scanner that automatically quarantines "
2812
  "malicious hacker files and autorestores legitimate website files if they "
2820
  "Plugin and Theme Automatic, Manual and Shiny installations and updates."
2821
  msgstr ""
2822
 
2823
+ #: admin/core/core.php:2120
2824
  msgid "MScan Malware Scanner: "
2825
  msgstr ""
2826
 
2827
+ #: admin/core/core.php:2120
2828
  msgid ""
2829
  "MScan Scheduled Scans are available in BPS Pro only. The BPS Pro ARQ IDPS "
2830
  "scanner is far superior to malware scanners including MScan, but both the "
2832
  "website if someone would like to do that."
2833
  msgstr ""
2834
 
2835
+ #: admin/core/core.php:2122
2836
  msgid "Plugin Firewall|Plugin Firewall AutoPilot Mode: "
2837
  msgstr ""
2838
 
2839
+ #: admin/core/core.php:2122
2840
  msgid ""
2841
  "The Plugin Firewall protects all of your Plugins (plugin folders and files) "
2842
  "with an IP Address Firewall, which prevents/blocks/forbids Remote Access to "
2850
  "firewall whitelist rules."
2851
  msgstr ""
2852
 
2853
+ #: admin/core/core.php:2124
2854
  msgid "JTC Anti-Spam|Anti-Hacker (JTC): "
2855
  msgstr ""
2856
 
2857
+ #: admin/core/core.php:2124
2858
  #, php-format
2859
  msgid ""
2860
  "Blocks 100% of all SpamBot and HackerBot Brute Force Login attacks (auto-"
2868
  "includes a SpamBot Trap."
2869
  msgstr ""
2870
 
2871
+ #: admin/core/core.php:2126
2872
  msgid "Uploads Folder Anti-Exploit Guard (UAEG): "
2873
  msgstr ""
2874
 
2875
+ #: admin/core/core.php:2126
2876
  msgid ""
2877
  "Protects the WordPress Uploads folder. ONLY safe image files with valid "
2878
  "image file extensions such as jpg, gif, png, etc. can be accessed, opened or "
2882
  "executed in the WordPress Uploads folder."
2883
  msgstr ""
2884
 
2885
+ #: admin/core/core.php:2128
2886
  msgid "DB Monitor Intrusion Detection System (IDS): "
2887
  msgstr ""
2888
 
2889
+ #: admin/core/core.php:2128
2890
  msgid ""
2891
  "The DB Monitor is an automated Intrusion Detection System (IDS) that alerts "
2892
  "you via email anytime a change/modification occurs in your WordPress "
2897
  "help info."
2898
  msgstr ""
2899
 
2900
+ #: admin/core/core.php:2130
2901
  msgid "DB Diff Tool: "
2902
  msgstr ""
2903
 
2904
+ #: admin/core/core.php:2130
2905
  msgid ""
2906
  "The DB Diff Tool compares old database tables from DB backups to current "
2907
  "database tables and displays any differences in the data/content of those 2 "
2909
  "not only just DB data."
2910
  msgstr ""
2911
 
2912
+ #: admin/core/core.php:2132
2913
  msgid "DB Status & Info: "
2914
  msgstr ""
2915
 
2916
+ #: admin/core/core.php:2132
2917
  msgid ""
2918
  "General DB Info shows commonly checked DB status and info about your "
2919
  "WordPress database at a glance. Extensive DB Info shows extensive DB status "
2922
  "SHOW GLOBAL VARIABLES and SHOW SESSION VARIABLES."
2923
  msgstr ""
2924
 
2925
+ #: admin/core/core.php:2134
2926
  msgid "S-Monitor: "
2927
  msgstr ""
2928
 
2929
+ #: admin/core/core.php:2134
2930
  msgid ""
2931
  "S-Monitor is the centralized Security Monitoring and Alerting Core where you "
2932
  "can manage and choose BPS Pro settings for Dashboard Alerts, Dashboard "
2936
  "easy to change all/any BPS Pro settings to your particular preferences."
2937
  msgstr ""
2938
 
2939
+ #: admin/core/core.php:2136
2940
  msgid "Advanced Real-Time Alerting & Heads Up Dashboard Status Display: "
2941
  msgstr ""
2942
 
2943
+ #: admin/core/core.php:2136
2944
  msgid ""
2945
  "BPS Pro checks and displays error, warning, notifications and alert messages "
2946
  "in real time. You can choose how you want these messages displayed to you "
2948
  "Dashboard, BPS Pro pages only, Turned off, Email Alerts, Logging..."
2949
  msgstr ""
2950
 
2951
+ #: admin/core/core.php:2139
2952
  msgid "Custom php.ini|ini_set Options: "
2953
  msgstr ""
2954
 
2955
+ #: admin/core/core.php:2139
2956
  msgid ""
2957
  "Quickly create a custom php.ini file for your website or use ini_set Options "
2958
  "to increase security and performance with just a few clicks. Additional P-"
2960
  "Protected PHP Error Log, PHP Error Alerts, Secure phpinfo Viewer..."
2961
  msgstr ""
2962
 
2963
+ #: admin/core/core.php:2141
2964
  msgid "Pro Tools: 16 mini-plugins: "
2965
  msgstr ""
2966
 
2967
+ #: admin/core/core.php:2141
2968
  msgid ""
2969
  "Online Base64 Decoder, Offline Base64 Decode|Encode, Mcrypt ~ Decrypt|"
2970
  "Encrypt, Crypt Encryption, Scheduled Crons (display and reschedule/reset "
2983
  "vulnerable to an XML-RPC exploit)."
2984
  msgstr ""
2985
 
2986
+ #: admin/core/core.php:2149
2987
  msgid "BPS Pro Version Release Dates"
2988
  msgstr ""
2989
 
2990
+ #: admin/core/core.php:2151 admin/core/core.php:2152 admin/core/core.php:2153
2991
+ #: admin/core/core.php:2154 admin/core/core.php:2155 admin/core/core.php:2156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2992
  #: admin/core/core.php:2161 admin/core/core.php:2162 admin/core/core.php:2163
2993
+ #: admin/core/core.php:2164 admin/core/core.php:2169 admin/core/core.php:2170
2994
+ #: admin/core/core.php:2171 admin/core/core.php:2172 admin/core/core.php:2173
2995
+ #: admin/core/core.php:2178 admin/core/core.php:2179 admin/core/core.php:2180
2996
+ #: admin/core/core.php:2181 admin/core/core.php:2182 admin/core/core.php:2183
2997
+ #: admin/core/core.php:2184 admin/core/core.php:2185 admin/core/core.php:2186
2998
+ #: admin/core/core.php:2191 admin/core/core.php:2192 admin/core/core.php:2193
2999
+ #: admin/core/core.php:2194 admin/core/core.php:2195 admin/core/core.php:2196
3000
+ #: admin/core/core.php:2197 admin/core/core.php:2198 admin/core/core.php:2199
3001
+ #: admin/core/core.php:2200 admin/core/core.php:2201 admin/core/core.php:2202
3002
+ #: admin/core/core.php:2203 admin/core/core.php:2209 admin/core/core.php:2210
3003
+ #: admin/core/core.php:2211 admin/core/core.php:2212 admin/core/core.php:2213
3004
+ #: admin/core/core.php:2214 admin/core/core.php:2215 admin/core/core.php:2216
3005
+ #: admin/core/core.php:2217 admin/core/core.php:2218 admin/core/core.php:2219
3006
+ #: admin/core/core.php:2220 admin/core/core.php:2221 admin/core/core.php:2222
3007
+ #: admin/core/core.php:2228 admin/core/core.php:2229 admin/core/core.php:2230
3008
+ #: admin/core/core.php:2231 admin/core/core.php:2232 admin/core/core.php:2233
3009
+ #: admin/core/core.php:2234 admin/core/core.php:2235 admin/core/core.php:2236
3010
+ #: admin/core/core.php:2237 admin/core/core.php:2238 admin/core/core.php:2239
3011
+ #: admin/core/core.php:2240 admin/core/core.php:2246 admin/core/core.php:2247
3012
+ #: admin/core/core.php:2248 admin/core/core.php:2249 admin/core/core.php:2250
3013
+ #: admin/core/core.php:2251 admin/core/core.php:2252 admin/core/core.php:2253
3014
+ #: admin/core/core.php:2254 admin/core/core.php:2255 admin/core/core.php:2261
3015
+ #: admin/core/core.php:2262 admin/core/core.php:2263 admin/core/core.php:2264
3016
+ #: admin/core/core.php:2265 admin/core/core.php:2266 admin/core/core.php:2267
3017
+ #: admin/core/core.php:2268 admin/core/core.php:2269 admin/core/core.php:2270
3018
  #, php-format
3019
  msgid ""
3020
  "<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
3671
  #: admin/db-backup-security/db-backup-security.php:259
3672
  #: admin/db-backup-security/db-backup-security.php:276
3673
  #: admin/db-backup-security/db-backup-security.php:278
3674
+ #: admin/includes/admin.php:341
3675
  msgid "DB Backup"
3676
  msgstr ""
3677
 
3757
  #: admin/db-backup-security/db-backup-security.php:874
3758
  #: admin/login/login.php:545 admin/login/login.php:574
3759
  #: admin/login/login.php:646 admin/login/login.php:675
3760
+ #: admin/mscan/mscan.php:1368
3761
  msgid "Delete"
3762
  msgstr ""
3763
 
3856
  msgstr ""
3857
 
3858
  #: admin/db-backup-security/db-backup-security.php:970
3859
+ #: admin/mscan/mscan.php:949
3860
  msgid "All"
3861
  msgstr ""
3862
 
4323
  msgstr ""
4324
 
4325
  #: admin/db-backup-security/db-backup-security.php:1226
4326
+ #: admin/mscan/mscan.php:1777
4327
  msgid ""
4328
  "Then click the Delete Log button to delete the contents of this Log file."
4329
  msgstr ""
4343
  msgstr ""
4344
 
4345
  #: admin/db-backup-security/db-backup-security.php:1263
4346
+ #: admin/mscan/mscan.php:1819 admin/security-log/security-log.php:509
4347
  msgid "Click OK to Delete the Log file contents or click Cancel."
4348
  msgstr ""
4349
 
4493
  msgstr ""
4494
 
4495
  #: admin/db-backup-security/db-backup-security.php:1702
4496
+ #: admin/mscan/mscan.php:1929 admin/theme-skin/theme-skin.php:249
4497
  msgid "BPS Pro Features & Version Release Dates"
4498
  msgstr ""
4499
 
4500
  #: admin/db-backup-security/db-backup-security.php:1703
4501
+ #: admin/mscan/mscan.php:1930 admin/theme-skin/theme-skin.php:250
4502
  msgid "Video Tutorials"
4503
  msgstr ""
4504
 
4524
 
4525
  #: admin/email-log-settings/email-log-settings.php:101
4526
  #: admin/email-log-settings/email-log-settings.php:103
4527
+ #: admin/includes/admin.php:352
4528
  msgid "Email|Log Settings"
4529
  msgstr ""
4530
 
4674
  msgstr ""
4675
 
4676
  #: admin/email-log-settings/email-log-settings.php:215
4677
+ #: admin/login/login.php:1621 admin/security-log/security-log.php:823
4678
+ #: admin/system-info/system-info.php:1115
4679
  msgid "BulletProof Security Help &amp; FAQ"
4680
  msgstr ""
4681
 
4682
+ #: admin/htaccess/bps-mu-tools.php:489
4683
+ msgid "WordPress Automatic Update Help Forum Topic"
4684
+ msgstr ""
4685
+
4686
+ #: admin/includes/admin.php:314
4687
  msgid "BulletProof Security Settings"
4688
  msgstr ""
4689
 
4690
+ #: admin/includes/admin.php:314 admin/includes/admin.php:335
4691
  msgid "BPS Security"
4692
  msgstr ""
4693
 
4694
+ #: admin/includes/admin.php:315 admin/includes/admin.php:316
4695
  msgid "Login Security ~ JTC-Lite"
4696
  msgstr ""
4697
 
4698
+ #: admin/includes/admin.php:315 admin/includes/admin.php:338
4699
  msgid "Login Security"
4700
  msgstr ""
4701
 
4702
+ #: admin/includes/admin.php:316 admin/includes/admin.php:339
4703
  #: admin/login/login.php:158 admin/login/login.php:802
4704
  #: admin/login/login.php:804
4705
  msgid "JTC-Lite"
4706
  msgstr ""
4707
 
4708
+ #: admin/includes/admin.php:322 admin/includes/admin.php:348
4709
  #: admin/maintenance/maintenance.php:149 admin/maintenance/maintenance.php:181
4710
  #: admin/maintenance/maintenance.php:183
4711
  msgid "Maintenance Mode"
4712
  msgstr ""
4713
 
4714
+ #: admin/includes/admin.php:328 admin/includes/admin.php:351
4715
  #: admin/system-info/system-info.php:88
4716
  msgid "System Info"
4717
  msgstr ""
4718
 
4719
+ #: admin/includes/admin.php:331 admin/includes/admin.php:353
4720
  #: admin/theme-skin/theme-skin.php:91 admin/theme-skin/theme-skin.php:107
4721
  #: admin/theme-skin/theme-skin.php:109
4722
  msgid "UI|UX Settings"
4723
  msgstr ""
4724
 
4725
+ #: admin/includes/admin.php:336
4726
  msgid "htaccess Core"
4727
  msgstr ""
4728
 
4729
+ #: admin/includes/admin.php:337
4730
  msgid "MScan ~ Malware Scanner"
4731
  msgstr ""
4732
 
4733
+ #: admin/includes/admin.php:337 admin/mscan/mscan.php:113
4734
+ #: admin/mscan/mscan.php:133 admin/mscan/mscan.php:135
4735
  msgid "MScan"
4736
  msgstr ""
4737
 
4738
+ #: admin/includes/admin.php:338 admin/includes/admin.php:339
4739
+ #: admin/includes/admin.php:340
4740
  msgid "Login Security ~ JTC-Lite ~ ISL ~ ACE"
4741
  msgstr ""
4742
 
4743
+ #: admin/includes/admin.php:340
4744
  msgid "Idle Session Logout<br>Cookie Expiration"
4745
  msgstr ""
4746
 
4747
+ #: admin/includes/admin.php:341
4748
  msgid "DB Backup & Security"
4749
  msgstr ""
4750
 
4751
+ #: admin/includes/admin.php:342 admin/security-log/security-log.php:226
4752
  #: admin/security-log/security-log.php:241
4753
  #: admin/security-log/security-log.php:243
4754
  msgid "Security Log"
4755
  msgstr ""
4756
 
4757
+ #: admin/includes/admin.php:354 admin/wizard/wizard.php:998
4758
  #: admin/wizard/wizard.php:1028 admin/wizard/wizard.php:1030
4759
+ #: bulletproof-security.php:148 bulletproof-security.php:151
4760
  msgid "Setup Wizard"
4761
  msgstr ""
4762
 
4763
+ #: admin/includes/admin.php:357 admin/includes/admin.php:365
4764
  #: admin/includes/uninstall.php:45
4765
  msgid "BPS Plugin Uninstall Options"
4766
  msgstr ""
4767
 
4768
+ #: admin/includes/admin.php:403
4769
  msgid "BPS UI|UX Debug: SLF: CSS Script Loaded"
4770
  msgstr ""
4771
 
4772
+ #: admin/includes/admin.php:435
4773
  msgid "BPS UI|UX Debug: SLF: js Script Loaded"
4774
  msgstr ""
4775
 
4776
+ #: admin/includes/admin.php:518
4777
  msgid "BPS UI|UX Debug: Scripts|Styles Dequeued"
4778
  msgstr ""
4779
 
4780
+ #: admin/includes/admin.php:530
4781
  msgid "Script Dequeued: "
4782
  msgstr ""
4783
 
4784
+ #: admin/includes/admin.php:536
4785
  msgid ""
4786
  "No additional plugin or theme Scripts were found that needed to be Dequeued."
4787
  msgstr ""
4788
 
4789
+ #: admin/includes/admin.php:548
4790
  msgid "Style Dequeued: "
4791
  msgstr ""
4792
 
4793
+ #: admin/includes/admin.php:554
4794
  msgid ""
4795
  "No additional plugin or theme Styles were found that needed to be Dequeued."
4796
  msgstr ""
4797
 
4798
+ #: admin/includes/admin.php:592 admin/includes/admin.php:625
4799
  msgid "BPS UI|UX Debug: WP Toolbar nodes|menu items Removed"
4800
  msgstr ""
4801
 
4802
+ #: admin/includes/admin.php:604 admin/includes/admin.php:637
4803
  msgid "WP Toolbar node|menu item Removed: "
4804
  msgstr ""
4805
 
4806
+ #: admin/includes/admin.php:612 admin/includes/admin.php:645
4807
  msgid "No WP Toolbar nodes|menu items were Removed in BPS plugin pages"
4808
  msgstr ""
4809
 
4848
  msgid "Login Security & Monitoring"
4849
  msgstr ""
4850
 
4851
+ #: admin/login/login.php:162 admin/login/login.php:1123
4852
+ #: admin/login/login.php:1125
4853
  msgid "Idle Session Logout|Auth Cookie Expiration"
4854
  msgstr ""
4855
 
4890
 
4891
  #: admin/login/login.php:209 admin/login/login.php:306
4892
  #: admin/login/login.php:614 admin/login/login.php:715
4893
+ #: admin/mscan/mscan.php:1179 admin/mscan/mscan.php:1391
4894
+ #: admin/mscan/mscan.php:1513 admin/mscan/mscan.php:1669
4895
  msgid "Submit"
4896
  msgstr ""
4897
 
4935
  msgid " Enable Login Security for WooCommerce (BPS Pro Only)"
4936
  msgstr ""
4937
 
4938
+ #: admin/login/login.php:431 admin/login/login.php:1264
4939
+ #: admin/login/login.php:1539 admin/login/lsm-help-text.php:22
4940
  msgid "Turn On|Turn Off:"
4941
  msgstr ""
4942
 
5120
  msgstr ""
5121
 
5122
  #: admin/login/login.php:614 admin/login/login.php:715
5123
+ #: admin/mscan/mscan.php:1392 admin/mscan/mscan.php:1670
5124
  msgid "Clear|Refresh"
5125
  msgstr ""
5126
 
5157
  "auto-commenting) & User Account Lockouts: "
5158
  msgstr ""
5159
 
5160
+ #: admin/login/login.php:822 admin/login/login.php:1163
5161
+ #: admin/login/login.php:1481
5162
  msgid "Save Options"
5163
  msgstr ""
5164
 
5255
  "Enable|Disable JTC For These Registered/Logged In User Roles (BPS Pro Only): "
5256
  msgstr ""
5257
 
5258
+ #: admin/login/login.php:970 admin/login/login.php:1335
5259
+ #: admin/login/login.php:1580
5260
  msgid " Administrator"
5261
  msgstr ""
5262
 
5263
+ #: admin/login/login.php:971 admin/login/login.php:1336
5264
+ #: admin/login/login.php:1581
5265
  msgid " Editor"
5266
  msgstr ""
5267
 
5268
+ #: admin/login/login.php:972 admin/login/login.php:1337
5269
+ #: admin/login/login.php:1582
5270
  msgid " Author"
5271
  msgstr ""
5272
 
5273
+ #: admin/login/login.php:973 admin/login/login.php:1338
5274
+ #: admin/login/login.php:1583
5275
  msgid " Contributor"
5276
  msgstr ""
5277
 
5278
+ #: admin/login/login.php:974 admin/login/login.php:1339
5279
+ #: admin/login/login.php:1584
5280
  msgid " Subscriber"
5281
  msgstr ""
5282
 
5283
+ #: admin/login/login.php:993
5284
  msgid "Login Form: CAPTCHA Error message"
5285
  msgstr ""
5286
 
5287
+ #: admin/login/login.php:996
5288
  msgid "Comment Form: CAPTCHA Error message (BPS Pro Only)"
5289
  msgstr ""
5290
 
5291
+ #: admin/login/login.php:999 admin/login/lsm-help-text.php:19
5292
  msgid "Comment Form: CSS Styling (BPS Pro Only)"
5293
  msgstr ""
5294
 
5295
+ #: admin/login/login.php:1000
5296
  msgid ""
5297
  "Comment Form Label (BPS Pro Only): <i>The JTC Title|Text above the Form "
5298
  "Input text box</i>"
5299
  msgstr ""
5300
 
5301
+ #: admin/login/login.php:1002
5302
  msgid ""
5303
  "Comment Form Input Text Box (BPS Pro Only): <i>The JTC CAPTCHA Form Input "
5304
  "text box</i>"
5305
  msgstr ""
5306
 
5307
+ #: admin/login/login.php:1005
5308
  msgid ""
5309
  "If you see an error or are unable to save your JTC option settings then "
5310
  "click the Encrypt JTC Code button first and then click the Save Options "
5311
  "button. Mouse over the question mark image to the right for help info."
5312
  msgstr ""
5313
 
5314
+ #: admin/login/login.php:1005
5315
  msgid ""
5316
  "If your web host currently has ModSecurity installed or installs ModSecurity "
5317
  "at a later time then ModSecurity will prevent you from saving your JTC "
5319
  "Encrypt JTC Code button."
5320
  msgstr ""
5321
 
5322
+ #: admin/login/login.php:1005
5323
  msgid ""
5324
  "If you click the Encrypt JTC Code button and then want to edit your CSS code "
5325
  "again click the Decrypt JTC Code button. After you are done editing click "
5326
  "the Encrypt JTC Code button before clicking the Save Options button."
5327
  msgstr ""
5328
 
5329
+ #: admin/login/login.php:1005
5330
  msgid ""
5331
  "Click the JTC Anti-Spam|Anti-Hacker Read Me help button for more help info."
5332
  msgstr ""
5333
 
5334
+ #: admin/login/login.php:1007 admin/login/login.php:1364
5335
+ #: admin/login/login.php:1599 admin/security-log/security-log.php:453
5336
  msgid "Click OK to Proceed or click Cancel."
5337
  msgstr ""
5338
 
5339
+ #: admin/login/login.php:1118
5340
  msgid "Idle Session Logout (ISL) ~ "
5341
  msgstr ""
5342
 
5343
+ #: admin/login/login.php:1118
5344
  msgid "Automatically Logout Idle/Inactive User Accounts"
5345
  msgstr ""
5346
 
5347
+ #: admin/login/login.php:1118
5348
  msgid "Auth Cookie Expiration (ACE) ~ "
5349
  msgstr ""
5350
 
5351
+ #: admin/login/login.php:1118
5352
  msgid "Change the WordPress Authentication Cookie Expiration Time"
5353
  msgstr ""
5354
 
5355
+ #: admin/login/login.php:1139
5356
  msgid "ISL and ACE Forum Topic"
5357
  msgstr ""
5358
 
5359
+ #: admin/login/login.php:1143
5360
  msgid "The Help & FAQ tab pages contain help links."
5361
  msgstr ""
5362
 
5363
+ #: admin/login/login.php:1241
5364
  msgid "Settings Saved. ISL has been turned On."
5365
  msgstr ""
5366
 
5367
+ #: admin/login/login.php:1247
5368
  msgid "Settings Saved. ISL has been turned Off."
5369
  msgstr ""
5370
 
5371
+ #: admin/login/login.php:1259
5372
  msgid "Idle Session Logout (ISL) Settings"
5373
  msgstr ""
5374
 
5375
+ #: admin/login/login.php:1266
5376
  msgid "ISL On"
5377
  msgstr ""
5378
 
5379
+ #: admin/login/login.php:1267
5380
  msgid "ISL Off"
5381
  msgstr ""
5382
 
5383
+ #: admin/login/login.php:1273 admin/login/lsm-help-text.php:22
5384
  msgid "Idle Session Logout Time in Minutes:"
5385
  msgstr ""
5386
 
5387
+ #: admin/login/login.php:1279 admin/login/lsm-help-text.php:22
5388
  msgid "Idle Session Logout Page URL:"
5389
  msgstr ""
5390
 
5391
+ #: admin/login/login.php:1285 admin/login/lsm-help-text.php:22
5392
  msgid "Idle Session Logout Page Login URL:"
5393
  msgstr ""
5394
 
5395
+ #: admin/login/login.php:1286
5396
  msgid ""
5397
  "Enter/Type: \"No\" (without quotes) if you do not want a Login URL displayed."
5398
  msgstr ""
5399
 
5400
+ #: admin/login/login.php:1292 admin/login/lsm-help-text.php:22
5401
  msgid "Idle Session Logout Exclude URLs|URIs:"
5402
  msgstr ""
5403
 
5404
+ #: admin/login/login.php:1293
5405
  msgid "Enter URIs separated by a comma and a space: /some-post/, /some-page/"
5406
  msgstr ""
5407
 
5408
+ #: admin/login/login.php:1300 admin/login/lsm-help-text.php:22
5409
  msgid "Idle Session Logout Page Custom Message:"
5410
  msgstr ""
5411
 
5412
+ #: admin/login/login.php:1307 admin/login/lsm-help-text.php:22
5413
  msgid "Idle Session Logout Page Custom CSS Style:"
5414
  msgstr ""
5415
 
5416
+ #: admin/login/login.php:1324 admin/login/login.php:1569
5417
  #: admin/login/lsm-help-text.php:22
5418
  msgid "User Account Exceptions:"
5419
  msgstr ""
5420
 
5421
+ #: admin/login/login.php:1325 admin/login/login.php:1570
5422
  msgid ""
5423
  "Enter User Account names separated by a comma and a space: johnDoe, janeDoe"
5424
  msgstr ""
5425
 
5426
+ #: admin/login/login.php:1326
5427
  msgid "Idle Session Logout Time Will Not Be Applied For These User Accounts."
5428
  msgstr ""
5429
 
5430
+ #: admin/login/login.php:1332
5431
  msgid "Enable|Disable Idle Session Logouts For These User Roles: "
5432
  msgstr ""
5433
 
5434
+ #: admin/login/login.php:1333 admin/login/login.php:1578
5435
  msgid ""
5436
  "Check to Enable. Uncheck to Disable. See the Read Me help button for details."
5437
  msgstr ""
5438
 
5439
+ #: admin/login/login.php:1358
5440
  msgid "Enable|Disable Idle Session Logouts For TinyMCE Editors: "
5441
  msgstr ""
5442
 
5443
+ #: admin/login/login.php:1359 admin/login/login.php:1563
5444
  msgid ""
5445
  "Check to Disable. Uncheck to Enable. See the Read Me help button for details."
5446
  msgstr ""
5447
 
5448
+ #: admin/login/login.php:1360
5449
  msgid " Enable|Disable ISL For TinyMCE Editor"
5450
  msgstr ""
5451
 
5452
+ #: admin/login/login.php:1362
5453
  msgid ""
5454
  "If you see an error or are unable to save your ISL option settings then "
5455
  "click the Encrypt ISL Code button first and then click the Save Options "
5456
  "button. Mouse over the question mark image to the right for help info."
5457
  msgstr ""
5458
 
5459
+ #: admin/login/login.php:1362
5460
  msgid ""
5461
  "If your web host currently has ModSecurity installed or installs ModSecurity "
5462
  "at a later time then ModSecurity will prevent you from saving your ISL "
5464
  "Encrypt ISL Code button."
5465
  msgstr ""
5466
 
5467
+ #: admin/login/login.php:1362
5468
  msgid ""
5469
  "If you click the Encrypt ISL Code button and then want to edit your CSS code "
5470
  "again click the Decrypt ISL Code button. After you are done editing click "
5471
  "the Encrypt ISL Code button before clicking the Save Options button."
5472
  msgstr ""
5473
 
5474
+ #: admin/login/login.php:1362
5475
  msgid ""
5476
  "Click the Idle Session Logout|Auth Cookie Expiration Read Me help button for "
5477
  "more help info."
5478
  msgstr ""
5479
 
5480
+ #: admin/login/login.php:1469
5481
  msgid "WordPress Authentication Cookie Expiration (ACE) Settings"
5482
  msgstr ""
5483
 
5484
+ #: admin/login/login.php:1520
5485
  msgid "Settings Saved. ACE has been turned On."
5486
  msgstr ""
5487
 
5488
+ #: admin/login/login.php:1526
5489
  msgid "Settings Saved. ACE has been turned Off."
5490
  msgstr ""
5491
 
5492
+ #: admin/login/login.php:1541
5493
  msgid "ACE On"
5494
  msgstr ""
5495
 
5496
+ #: admin/login/login.php:1542
5497
  msgid "ACE Off"
5498
  msgstr ""
5499
 
5500
+ #: admin/login/login.php:1548 admin/login/lsm-help-text.php:22
5501
  msgid "Auth Cookie Expiration Time in Minutes:"
5502
  msgstr ""
5503
 
5504
+ #: admin/login/login.php:1549
5505
  msgid "WP Default setting is 2880 Minutes/2 Days:"
5506
  msgstr ""
5507
 
5508
+ #: admin/login/login.php:1555 admin/login/lsm-help-text.php:22
5509
  msgid "Remember Me Auth Cookie Expiration Time in Minutes:"
5510
  msgstr ""
5511
 
5512
+ #: admin/login/login.php:1556
5513
  msgid "WP Default setting is 20160 Minutes/14 Days:"
5514
  msgstr ""
5515
 
5516
+ #: admin/login/login.php:1562 admin/login/lsm-help-text.php:22
5517
  msgid "Enable|Disable Remember Me Checkbox:"
5518
  msgstr ""
5519
 
5520
+ #: admin/login/login.php:1564
5521
  msgid " Disable & do not display the Remember Me checkbox"
5522
  msgstr ""
5523
 
5524
+ #: admin/login/login.php:1571
5525
  msgid "Auth Cookie Expiration Time Will Not Be Applied To These User Accounts."
5526
  msgstr ""
5527
 
5528
+ #: admin/login/login.php:1577
5529
  msgid "Enable|Disable Auth Cookie Expiration Time For These User Roles: "
5530
  msgstr ""
5531
 
5719
  msgstr ""
5720
 
5721
  #: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:528
5722
+ #: includes/hud-dismiss-functions.php:348
5723
+ #: includes/hud-dismiss-functions.php:391
5724
  msgid "CAUTION: "
5725
  msgstr ""
5726
 
6788
 
6789
  #: admin/maintenance/maintenance.php:376 admin/maintenance/maintenance.php:396
6790
  #: admin/wizard/wizard.php:176 includes/general-functions.php:509
6791
+ #: includes/hud-dismiss-functions.php:348
6792
+ #: includes/hud-dismiss-functions.php:391
6793
+ #: includes/hud-dismiss-functions.php:496
6794
  msgid "Click Here"
6795
  msgstr ""
6796
 
7221
  msgid "Clicking the Stop Scan button stops a scan."
7222
  msgstr ""
7223
 
7224
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:935
7225
  msgid "Hosting Account Root Folders"
7226
  msgstr ""
7227
 
7254
  "than 300 seconds."
7255
  msgstr ""
7256
 
7257
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1019
7258
  msgid "Scan Database"
7259
  msgstr ""
7260
 
7264
  "suspicious code."
7265
  msgstr ""
7266
 
7267
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1025
7268
  msgid "Scan Image Files (Stegosploit|Exif Hack)"
7269
  msgstr ""
7270
 
7275
  "hacks. It is recommended that you do not scan image files."
7276
  msgstr ""
7277
 
7278
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1031
7279
  msgid "Scan Skipped Files Only"
7280
  msgstr ""
7281
 
7287
  "MScan option settings when running a Skipped File scan."
7288
  msgstr ""
7289
 
7290
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1037
7291
  msgid "Automatically Delete /tmp Files"
7292
  msgstr ""
7293
 
7297
  "commonly hide hacker files in the /tmp folder."
7298
  msgstr ""
7299
 
7300
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1043
7301
  msgid "Scheduled Scan Frequency (BPS Pro only)"
7302
  msgstr ""
7303
 
7351
  "using this tool."
7352
  msgstr ""
7353
 
7354
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1106
7355
  msgid "View|Ignore|Delete Suspicious Files"
7356
  msgstr ""
7357
 
7366
  "ignored file it will be scanned in future scans."
7367
  msgstr ""
7368
 
7369
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1443
7370
  msgid "View|Ignore Suspicious DB Entries"
7371
  msgstr ""
7372
 
7473
  "php.ini file."
7474
  msgstr ""
7475
 
7476
+ #: admin/mscan/mscan.php:114 admin/mscan/mscan.php:1725
7477
+ #: admin/mscan/mscan.php:1727
7478
  msgid "MScan Log"
7479
  msgstr ""
7480
 
7494
  "malware scanners: "
7495
  msgstr ""
7496
 
7497
+ #: admin/mscan/mscan.php:125
7498
+ msgid "MScan Disclaimer:"
7499
+ msgstr ""
7500
+
7501
+ #: admin/mscan/mscan.php:125
7502
+ msgid ""
7503
+ "MScan is a very sensitive scanner that will detect hacker's code and files "
7504
+ "that other WordPress malware scanners will not detect, but unfortunately "
7505
+ "that also means that MScan will detect a lot of false-positives. The "
7506
+ "majority of things that MScan detects as suspicious are not going to be "
7507
+ "hacker's code or files and can be ignored using the Ignore File or Ignore DB "
7508
+ "Entry in the View|Ignore|Delete Suspicious Files and View|Ignore Suspicious "
7509
+ "DB Entries Forms below. For additional help information click this link: "
7510
+ msgstr ""
7511
+
7512
+ #: admin/mscan/mscan.php:125 admin/mscan/mscan.php:143
7513
+ #: includes/hud-dismiss-functions.php:680
7514
  msgid "MScan Malware Scanner Guide"
7515
  msgstr ""
7516
 
7517
+ #: admin/mscan/mscan.php:144
7518
  msgid "MScan Troubleshooting & Code Posting"
7519
  msgstr ""
7520
 
7521
+ #: admin/mscan/mscan.php:185
7522
  msgid "The MScan Database Table: "
7523
  msgstr ""
7524
 
7525
+ #: admin/mscan/mscan.php:185
7526
  msgid " data has been deleted."
7527
  msgstr ""
7528
 
7529
+ #: admin/mscan/mscan.php:221
7530
  msgid ""
7531
  "MScan Status option values have been deleted. The Scan Completed timestamp, "
7532
  "Total Scan Time, Total Files Scanned, Skipped Files, Suspicious Files and "
7534
  "display blank or 0"
7535
  msgstr ""
7536
 
7537
+ #: admin/mscan/mscan.php:262 admin/mscan/mscan.php:324
7538
+ #: admin/mscan/mscan.php:553 admin/mscan/mscan.php:818
7539
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7540
  msgstr ""
7541
 
7542
+ #: admin/mscan/mscan.php:266 admin/mscan/mscan.php:328
7543
+ #: admin/mscan/mscan.php:431 admin/mscan/mscan.php:508
7544
+ #: admin/mscan/mscan.php:826
7545
  msgid ""
7546
  "Image file scanning is turned On. On some web hosts scanning image files "
7547
  "will cause the scan to stop/fail."
7548
  msgstr ""
7549
 
7550
+ #: admin/mscan/mscan.php:270
7551
  msgid ""
7552
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7553
  "Scan Time Estimate Tool from calculating estimated scan time."
7554
  msgstr ""
7555
 
7556
+ #: admin/mscan/mscan.php:340
7557
  msgid ""
7558
  "Calculating Scan Time. The default scan time calculation time of 30 seconds "
7559
  "was exceeded. If it takes longer than 30 seconds to calculate total scan "
7566
  "see if the the estimated scan time was successfully logged."
7567
  msgstr ""
7568
 
7569
+ #: admin/mscan/mscan.php:340
7570
  msgid "Refresh"
7571
  msgstr ""
7572
 
7573
+ #: admin/mscan/mscan.php:348
7574
  msgid ""
7575
  "The estimated total scan time is more than the Max Time Limit to Scan option "
7576
  "setting time limit."
7577
  msgstr ""
7578
 
7579
+ #: admin/mscan/mscan.php:348
7580
  msgid ""
7581
  "The scan will automatically end/stop when the Max Time Limit to Scan option "
7582
  "setting time limit is reached."
7583
  msgstr ""
7584
 
7585
+ #: admin/mscan/mscan.php:348
7586
  msgid "Estimated Total Scan Time: "
7587
  msgstr ""
7588
 
7589
+ #: admin/mscan/mscan.php:348
7590
  msgid "Max Time Limit to Scan: "
7591
  msgstr ""
7592
 
7593
+ #: admin/mscan/mscan.php:348
7594
  msgid "Click the MScan Read Me help button for a recommended solution."
7595
  msgstr ""
7596
 
7597
+ #: admin/mscan/mscan.php:354
7598
  msgid ""
7599
  "MScan Scanning has started. You can leave the MScan page while a scan is in "
7600
  "progress and the scan will continue until it is completed or you can open "
7601
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7602
  msgstr ""
7603
 
7604
+ #: admin/mscan/mscan.php:373 admin/mscan/mscan.php:379
7605
  msgid "Suspicious code or files were detected."
7606
  msgstr ""
7607
 
7608
+ #: admin/mscan/mscan.php:373 admin/mscan/mscan.php:379
7609
  msgid ""
7610
  "Click the View|Ignore|Delete Suspicious Files accordion tab to View, Ignore "
7611
  "or Delete suspicious files. For additional help information click the MScan "
7612
  "Read Me help button."
7613
  msgstr ""
7614
 
7615
+ #: admin/mscan/mscan.php:383
7616
  msgid "Suspicious code was detected in your database."
7617
  msgstr ""
7618
 
7619
+ #: admin/mscan/mscan.php:383
7620
  msgid ""
7621
  "Click the View|Ignore Suspicious DB Entries accordion tab to view and ignore "
7622
  "suspicious db entries. For additional help information click the MScan Read "
7623
  "Me help button."
7624
  msgstr ""
7625
 
7626
+ #: admin/mscan/mscan.php:388
7627
  msgid ""
7628
  "MScan Scan has completed. To view extensive details of all scanning phases "
7629
  "view the MScan Log file."
7630
  msgstr ""
7631
 
7632
+ #: admin/mscan/mscan.php:427
7633
  msgid ""
7634
  "Skipped file scanning is turned On. The scan time estimate is for scanning "
7635
  "skipped files only."
7636
  msgstr ""
7637
 
7638
+ #: admin/mscan/mscan.php:435
7639
  msgid ""
7640
  "The total estimated time of an actual scan based on your MScan option "
7641
  "settings is: "
7642
  msgstr ""
7643
 
7644
+ #: admin/mscan/mscan.php:435
7645
  msgid ""
7646
  "Seconds. The MScan Log file contains extensive details about the estimated "
7647
  "scan time. Note: The Scan Time Estimate Tool does not affect or change any "
7649
  "to the estimated scan time."
7650
  msgstr ""
7651
 
7652
+ #: admin/mscan/mscan.php:504
7653
  msgid ""
7654
  "Skipped file scanning is turned On. The scan time estimate will be for "
7655
  "scanning skipped files only."
7656
  msgstr ""
7657
 
7658
+ #: admin/mscan/mscan.php:512
7659
  msgid ""
7660
  "Calculating Estimated Scan Time. Notes: The Scan Time Estimate Tool does not "
7661
  "affect or change any previous scan results except for the Total Scan Time, "
7664
  "the estimated scan time."
7665
  msgstr ""
7666
 
7667
+ #: admin/mscan/mscan.php:557
7668
  msgid ""
7669
  "Calculating Scan Time. You can leave the MScan page while a scan is in "
7670
  "progress and the scan will continue until it is completed or you can open "
7671
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7672
  msgstr ""
7673
 
7674
+ #: admin/mscan/mscan.php:713
7675
  msgid "Click OK to start scanning or click Cancel."
7676
  msgstr ""
7677
 
7678
+ #: admin/mscan/mscan.php:720
7679
  msgid "Click OK to stop scanning or click Cancel."
7680
  msgstr ""
7681
 
7682
+ #: admin/mscan/mscan.php:727
7683
  msgid "MScan Options & Tools"
7684
  msgstr ""
7685
 
7686
+ #: admin/mscan/mscan.php:740
7687
  msgid "Save MScan Options"
7688
  msgstr ""
7689
 
7690
+ #: admin/mscan/mscan.php:822
7691
  msgid ""
7692
  "Skipped file scanning is turned On. There are no skipped files to be "
7693
  "scanned. Either there really are not any skipped files to scan or you have "
7694
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7695
  msgstr ""
7696
 
7697
+ #: admin/mscan/mscan.php:830
7698
  msgid "Warning: "
7699
  msgstr ""
7700
 
7701
+ #: admin/mscan/mscan.php:830
7702
  msgid ""
7703
  "On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
7704
  "\"Automatically Delete /tmp Files\" option setting will cause your website/"
7707
  "has crashed."
7708
  msgstr ""
7709
 
7710
+ #: admin/mscan/mscan.php:834
7711
  msgid "MScan Options saved."
7712
  msgstr ""
7713
 
7714
+ #: admin/mscan/mscan.php:936
7715
  msgid "MScan Options"
7716
  msgstr ""
7717
 
7718
+ #: admin/mscan/mscan.php:937
7719
  msgid "MScan Tools"
7720
  msgstr ""
7721
 
7722
+ #: admin/mscan/mscan.php:950
7723
  msgid "Folder Name"
7724
  msgstr ""
7725
 
7726
+ #: admin/mscan/mscan.php:966
7727
  msgid "Folder is not readable"
7728
  msgstr ""
7729
 
7730
+ #: admin/mscan/mscan.php:979
7731
  msgid ""
7732
  "This folder contains another WordPress website. Click the MScan Read Me help "
7733
  "button above and read the \"Scanning Other WordPress Sites\" help section."
7734
  msgstr ""
7735
 
7736
+ #: admin/mscan/mscan.php:1005
7737
  msgid "Max File Size Limit to Scan:"
7738
  msgstr ""
7739
 
7740
+ #: admin/mscan/mscan.php:1009
7741
  msgid "Max Time Limit to Scan:"
7742
  msgstr ""
7743
 
7744
+ #: admin/mscan/mscan.php:1013
7745
  msgid "Exclude Individual Folders"
7746
  msgstr ""
7747
 
7748
+ #: admin/mscan/mscan.php:1013
7749
  msgid "Enter one folder path per line. Include folder slashes."
7750
  msgstr ""
7751
 
7752
+ #: admin/mscan/mscan.php:1013
7753
  msgid "Example:"
7754
  msgstr ""
7755
 
7756
+ #: admin/mscan/mscan.php:1013 admin/mscan/mscan.php:1031
7757
  msgid "Click the MScan Read Me help button for more help info."
7758
  msgstr ""
7759
 
7760
+ #: admin/mscan/mscan.php:1021
7761
  msgid "Database Scan On"
7762
  msgstr ""
7763
 
7764
+ #: admin/mscan/mscan.php:1022
7765
  msgid "Database Scan Off"
7766
  msgstr ""
7767
 
7768
+ #: admin/mscan/mscan.php:1027
7769
  msgid "Image File Scan Off"
7770
  msgstr ""
7771
 
7772
+ #: admin/mscan/mscan.php:1028
7773
  msgid "Image File Scan On"
7774
  msgstr ""
7775
 
7776
+ #: admin/mscan/mscan.php:1031
7777
  msgid ""
7778
  "When Skipped File Scan is On only skipped files will be scanned. Note: The "
7779
  "only MScan option setting that has any affect while Skipped File Scan is On "
7780
  "is Image File Scan On or Off."
7781
  msgstr ""
7782
 
7783
+ #: admin/mscan/mscan.php:1033
7784
  msgid "Skipped File Scan Off"
7785
  msgstr ""
7786
 
7787
+ #: admin/mscan/mscan.php:1034
7788
  msgid "Skipped File Scan On"
7789
  msgstr ""
7790
 
7791
+ #: admin/mscan/mscan.php:1039
7792
  msgid "Delete Tmp Files Off"
7793
  msgstr ""
7794
 
7795
+ #: admin/mscan/mscan.php:1040
7796
  msgid "Delete Tmp Files On"
7797
  msgstr ""
7798
 
7799
+ #: admin/mscan/mscan.php:1045
7800
  msgid "Scheduled Scan Off"
7801
  msgstr ""
7802
 
7803
+ #: admin/mscan/mscan.php:1046
7804
  msgid "Run Scan Every 60 Minutes"
7805
  msgstr ""
7806
 
7807
+ #: admin/mscan/mscan.php:1047
7808
  msgid "Run Scan Every 3 Hours"
7809
  msgstr ""
7810
 
7811
+ #: admin/mscan/mscan.php:1048
7812
  msgid "Run Scan Every 6 Hours"
7813
  msgstr ""
7814
 
7815
+ #: admin/mscan/mscan.php:1049
7816
  msgid "Run Scan Every 12 Hours"
7817
  msgstr ""
7818
 
7819
+ #: admin/mscan/mscan.php:1050
7820
  msgid "Run Scan Every 24 Hours"
7821
  msgstr ""
7822
 
7823
+ #: admin/mscan/mscan.php:1053
7824
  msgid "Click OK to save MScan Options or click Cancel"
7825
  msgstr ""
7826
 
7827
+ #: admin/mscan/mscan.php:1062
7828
  msgid ""
7829
  "IMPORTANT: You can stop the scan time estimate if it hangs or is taking too "
7830
  "long by clicking the Stop Scan button.\\n"
7843
  "OK to get a scan time estimate or click Cancel"
7844
  msgstr ""
7845
 
7846
+ #: admin/mscan/mscan.php:1067
7847
  msgid ""
7848
  "This tool allows you to delete all of the MScan Status option values.\\n"
7849
  "\\n-------------------------------------------------------------\\n\\nThe "
7855
  "OK to delete scan status option values or click Cancel"
7856
  msgstr ""
7857
 
7858
+ #: admin/mscan/mscan.php:1072
7859
  msgid ""
7860
  "Deleting all database scan data is a reset that deletes any/all changes you "
7861
  "have made and saved using the View|Ignore|Delete Suspicious Files and View|"
7864
  "OK to delete all database Scan Data or click Cancel"
7865
  msgstr ""
7866
 
7867
+ #: admin/mscan/mscan.php:1220
7868
  msgid " has been deleted."
7869
  msgstr ""
7870
 
7871
+ #: admin/mscan/mscan.php:1241
7872
  msgid ""
7873
  " Current Status has been changed to Ignored File and this file will not be "
7874
  "scanned in any future MScan Scans."
7875
  msgstr ""
7876
 
7877
+ #: admin/mscan/mscan.php:1262
7878
  msgid ""
7879
  " Ignored File Status has been removed. The previous Status of the file will "
7880
  "be displayed again and this file will be scanned in future MScan scans."
7881
  msgstr ""
7882
 
7883
+ #: admin/mscan/mscan.php:1284 admin/mscan/mscan.php:1293
7884
  msgid "Close File"
7885
  msgstr ""
7886
 
7887
+ #: admin/mscan/mscan.php:1284 admin/mscan/mscan.php:1293
7888
+ #: admin/mscan/mscan.php:1590
7889
  msgid "MScan Pattern Match"
7890
  msgstr ""
7891
 
7892
+ #: admin/mscan/mscan.php:1284
7893
  msgid ""
7894
  "Only the MScan Pattern Match is displayed for images instead of the image "
7895
  "file code."
7896
  msgstr ""
7897
 
7898
+ #: admin/mscan/mscan.php:1284
7899
  msgid ""
7900
  "Opening image files to view image file code does not work well in a Browser."
7901
  msgstr ""
7902
 
7903
+ #: admin/mscan/mscan.php:1284
7904
  msgid ""
7905
  "You can download suspicious image files and use a code editor like Notepad++ "
7906
  "to check image file code for any malicious code."
7907
  msgstr ""
7908
 
7909
+ #: admin/mscan/mscan.php:1284 admin/mscan/mscan.php:1293
7910
+ #: admin/mscan/mscan.php:1590
7911
  msgid ""
7912
  "If you are not sure what to check for or what is and is not malicious code "
7913
  "then click the MScan Read Me help button."
7914
  msgstr ""
7915
 
7916
+ #: admin/mscan/mscan.php:1293
7917
  msgid ""
7918
  "You can use your Browser's Search or Find feature to search the file "
7919
  "contents/code displayed below using the MScan Pattern Match above for the "
7920
  "suspicious code that was detected by MScan."
7921
  msgstr ""
7922
 
7923
+ #: admin/mscan/mscan.php:1293
7924
  msgid ""
7925
  "You can download suspicious files if you would like to check the file "
7926
  "contents/code more extensively with a code editor like Notepad++."
7927
  msgstr ""
7928
 
7929
+ #: admin/mscan/mscan.php:1321 admin/mscan/mscan.php:1612
7930
  msgid "Current Status"
7931
  msgstr ""
7932
 
7933
+ #: admin/mscan/mscan.php:1322
7934
  msgid "View<br>File"
7935
  msgstr ""
7936
 
7937
+ #: admin/mscan/mscan.php:1323
7938
  msgid "Ignore<br>File"
7939
  msgstr ""
7940
 
7941
+ #: admin/mscan/mscan.php:1324
7942
  msgid "Unignore<br>File"
7943
  msgstr ""
7944
 
7945
+ #: admin/mscan/mscan.php:1325
7946
  msgid "Delete<br>File"
7947
  msgstr ""
7948
 
7949
+ #: admin/mscan/mscan.php:1326 admin/system-info/system-info.php:933
7950
+ #: admin/system-info/system-info.php:973
7951
  msgid "File Path"
7952
  msgstr ""
7953
 
7954
+ #: admin/mscan/mscan.php:1327 admin/mscan/mscan.php:1619
7955
  msgid "Pattern<br>Match"
7956
  msgstr ""
7957
 
7958
+ #: admin/mscan/mscan.php:1328 admin/mscan/mscan.php:1620
7959
  msgid "Scan<br>Time"
7960
  msgstr ""
7961
 
7962
+ #: admin/mscan/mscan.php:1341
7963
  msgid "Skipped File"
7964
  msgstr ""
7965
 
7966
+ #: admin/mscan/mscan.php:1341
7967
  msgid "Not Scanned"
7968
  msgstr ""
7969
 
7970
+ #: admin/mscan/mscan.php:1345 admin/mscan/mscan.php:1352
7971
  msgid "Ignored File"
7972
  msgstr ""
7973
 
7974
+ #: admin/mscan/mscan.php:1357
7975
  msgid "Suspicious File"
7976
  msgstr ""
7977
 
7978
+ #: admin/mscan/mscan.php:1363 admin/mscan/mscan.php:1641
7979
  msgid "View"
7980
  msgstr ""
7981
 
7982
+ #: admin/mscan/mscan.php:1364 admin/mscan/mscan.php:1642
7983
  msgid "Ignore"
7984
  msgstr ""
7985
 
7986
+ #: admin/mscan/mscan.php:1366 admin/mscan/mscan.php:1643
7987
  msgid "Unignore"
7988
  msgstr ""
7989
 
7990
+ #: admin/mscan/mscan.php:1377
7991
  msgid "No Suspicious Files were detected"
7992
  msgstr ""
7993
 
7994
+ #: admin/mscan/mscan.php:1391
7995
  msgid ""
7996
  "View File Option: Selecting the View File Checkbox Form option will display "
7997
  "the contents of the file that you have selected to view.\\n"
8011
  "OK to proceed or click Cancel"
8012
  msgstr ""
8013
 
8014
+ #: admin/mscan/mscan.php:1547
8015
  msgid "Current Status has been changed to Ignored for DB Row ID"
8016
  msgstr ""
8017
 
8018
+ #: admin/mscan/mscan.php:1547 admin/mscan/mscan.php:1566
8019
  msgid "in DB Column"
8020
  msgstr ""
8021
 
8022
+ #: admin/mscan/mscan.php:1547
8023
  msgid "This DB Entry will not be scanned in any future MScan Scans."
8024
  msgstr ""
8025
 
8026
+ #: admin/mscan/mscan.php:1566
8027
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
8028
  msgstr ""
8029
 
8030
+ #: admin/mscan/mscan.php:1566
8031
  msgid ""
8032
  "The previous Status of the DB Entry will be displayed again and this DB "
8033
  "Entry will be scanned in future MScan scans."
8034
  msgstr ""
8035
 
8036
+ #: admin/mscan/mscan.php:1585 admin/mscan/mscan.php:1590
8037
  msgid "Close"
8038
  msgstr ""
8039
 
8040
+ #: admin/mscan/mscan.php:1585
8041
  msgid "Pharma Hack DB Table and Column"
8042
  msgstr ""
8043
 
8044
+ #: admin/mscan/mscan.php:1585
8045
  msgid "Pharma Hack cleanup/removal steps"
8046
  msgstr ""
8047
 
8048
+ #: admin/mscan/mscan.php:1585
8049
  msgid "Edit your theme's header.php file and delete this code: "
8050
  msgstr ""
8051
 
8052
+ #: admin/mscan/mscan.php:1585
8053
  msgid ""
8054
  "Delete this file in your theme's root folder: nav.php. Login to your web "
8055
  "host control panel, login to your WP Database using phpMyAdmin and delete "
8058
  "any that you do see."
8059
  msgstr ""
8060
 
8061
+ #: admin/mscan/mscan.php:1590
8062
  msgid "DB Table, Column and Row ID"
8063
  msgstr ""
8064
 
8065
+ #: admin/mscan/mscan.php:1590
8066
  msgid "Steps to view the database data that MScan detected as suspicious"
8067
  msgstr ""
8068
 
8069
+ #: admin/mscan/mscan.php:1590
8070
  msgid ""
8071
  "Login to your web host control panel, login to your WP Database using "
8072
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
8073
  "above. Note: Look for code that matches the MScan Pattern Match."
8074
  msgstr ""
8075
 
8076
+ #: admin/mscan/mscan.php:1613
8077
  msgid "View<br>DB Entry"
8078
  msgstr ""
8079
 
8080
+ #: admin/mscan/mscan.php:1614
8081
  msgid "Ignore<br>DB Entry"
8082
  msgstr ""
8083
 
8084
+ #: admin/mscan/mscan.php:1615
8085
  msgid "Unignore<br>DB Entry"
8086
  msgstr ""
8087
 
8088
+ #: admin/mscan/mscan.php:1616
8089
  msgid "DB Table"
8090
  msgstr ""
8091
 
8092
+ #: admin/mscan/mscan.php:1617
8093
  msgid "DB Column"
8094
  msgstr ""
8095
 
8096
+ #: admin/mscan/mscan.php:1618
8097
  msgid "DB Row ID"
8098
  msgstr ""
8099
 
8100
+ #: admin/mscan/mscan.php:1631
8101
  msgid "Ignored DB Entry"
8102
  msgstr ""
8103
 
8104
+ #: admin/mscan/mscan.php:1636
8105
  msgid "Suspicious DB Entry"
8106
  msgstr ""
8107
 
8108
+ #: admin/mscan/mscan.php:1654
8109
  msgid "No Suspicious DB Entries were detected"
8110
  msgstr ""
8111
 
8112
+ #: admin/mscan/mscan.php:1669
8113
  msgid ""
8114
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
8115
  "display the contents of the DB Table, Column and Row ID that you have "
8127
  "OK to proceed or click Cancel"
8128
  msgstr ""
8129
 
8130
+ #: admin/mscan/mscan.php:1720
8131
  msgid "MScan Log ~ "
8132
  msgstr ""
8133
 
8134
+ #: admin/mscan/mscan.php:1720
8135
  msgid ""
8136
  "Logs MScan Settings, Completion Time, Memory Usage, Zip Backup File Name, "
8137
  "Timestamp..."
8138
  msgstr ""
8139
 
8140
+ #: admin/mscan/mscan.php:1751
8141
  msgid "Click the Reset Last Modified Time in DB button"
8142
  msgstr ""
8143
 
8144
+ #: admin/mscan/mscan.php:1751
8145
  msgid "to set the"
8146
  msgstr ""
8147
 
8148
+ #: admin/mscan/mscan.php:1756 admin/mscan/mscan.php:1761
8149
  msgid "Last Modified Time in DB:"
8150
  msgstr ""
8151
 
8152
+ #: admin/mscan/mscan.php:1774 admin/mscan/mscan.php:1777
8153
  msgid "MScan Log File Size: "
8154
  msgstr ""
8155
 
8156
+ #: admin/mscan/mscan.php:1777
8157
  msgid ""
8158
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
8159
  "size."
8160
  msgstr ""
8161
 
8162
+ #: admin/mscan/mscan.php:1777
8163
  msgid ""
8164
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
8165
  "computer and save it."
8166
  msgstr ""
8167
 
8168
+ #: admin/mscan/mscan.php:1788
8169
  msgid "MScan Log Last Modified Time:"
8170
  msgstr ""
8171
 
8172
+ #: admin/mscan/mscan.php:1790
8173
  msgid "Last Modified Time in File:"
8174
  msgstr ""
8175
 
8176
+ #: admin/mscan/mscan.php:1809
8177
  msgid ""
8178
  "Success! Your MScan Log has been deleted and replaced with a new blank MScan "
8179
  "Log file."
8180
  msgstr ""
8181
 
8182
+ #: admin/mscan/mscan.php:1819
8183
  msgid "Clicking OK will delete the contents of your MScan Log file."
8184
  msgstr ""
8185
 
8186
+ #: admin/mscan/mscan.php:1838
8187
  msgid ""
8188
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
8189
  msgstr ""
8190
 
8191
+ #: admin/mscan/mscan.php:1838
8192
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
8193
  msgstr ""
8194
 
8195
+ #: admin/mscan/mscan.php:1857
8196
  msgid "File Open and Write test successful! Your MScan Log file is writable."
8197
  msgstr ""
8198
 
8199
+ #: admin/mscan/mscan.php:1869 admin/mscan/mscan.php:1873
8200
  msgid "Success! Your MScan Log file has been updated."
8201
  msgstr ""
8202
 
8812
  msgid "/bps-backup/logs/http_error_log.txt and is named correctly."
8813
  msgstr ""
8814
 
8815
+ #: admin/security-log/security-log.php:756
8816
  msgid ""
8817
  "File Open and Write test successful! Your Security Log file is writable. "
8818
  "Click the View Log button."
8819
  msgstr ""
8820
 
8821
+ #: admin/security-log/security-log.php:778
8822
+ #: admin/security-log/security-log.php:782
8823
  msgid "Success! Your Security Log file has been updated."
8824
  msgstr ""
8825
 
8960
  msgid "SQL Database Info|WordPress Site Info|Misc Checks"
8961
  msgstr ""
8962
 
8963
+ #: admin/system-info/system-info.php:210 admin/system-info/system-info.php:213
8964
+ #: admin/system-info/system-info.php:216
8965
  msgid "Server|Website IP Address: "
8966
  msgstr ""
8967
 
8968
+ #: admin/system-info/system-info.php:227
8969
  msgid "HTTP_CLIENT_IP IP Address: "
8970
  msgstr ""
8971
 
8972
+ #: admin/system-info/system-info.php:230
8973
  msgid "Proxy X-Forwarded-For IP Address: "
8974
  msgstr ""
8975
 
8976
+ #: admin/system-info/system-info.php:233
8977
  msgid "Public Internet IP Address (ISP): "
8978
  msgstr ""
8979
 
8980
+ #: admin/system-info/system-info.php:272
8981
  msgid "Must-Use Plugins"
8982
  msgstr ""
8983
 
8984
+ #: admin/system-info/system-info.php:282
8985
  msgid "Installed"
8986
  msgstr ""
8987
 
8988
+ #: admin/system-info/system-info.php:353
8989
  msgid "Website Root URL"
8990
  msgstr ""
8991
 
8992
+ #: admin/system-info/system-info.php:354
8993
  msgid "Document Root Path"
8994
  msgstr ""
8995
 
8996
+ #: admin/system-info/system-info.php:355
8997
  msgid "WP ABSPATH"
8998
  msgstr ""
8999
 
9000
+ #: admin/system-info/system-info.php:356
9001
  msgid "Parent Directory"
9002
  msgstr ""
9003
 
9004
+ #: admin/system-info/system-info.php:358
9005
  msgid "Host by Address"
9006
  msgstr ""
9007
 
9008
+ #: admin/system-info/system-info.php:359
9009
  msgid "DNS Name Server"
9010
  msgstr ""
9011
 
9012
+ #: admin/system-info/system-info.php:362
9013
  msgid "DNS Name Server Not Available"
9014
  msgstr ""
9015
 
9016
+ #: admin/system-info/system-info.php:375
9017
  msgid "Server Type"
9018
  msgstr ""
9019
 
9020
+ #: admin/system-info/system-info.php:376
9021
  msgid "Operating System"
9022
  msgstr ""
9023
 
9024
+ #: admin/system-info/system-info.php:377
9025
  msgid "WP Filesystem API Method"
9026
  msgstr ""
9027
 
9028
+ #: admin/system-info/system-info.php:379
9029
  msgid "Script Owner ID"
9030
  msgstr ""
9031
 
9032
+ #: admin/system-info/system-info.php:380
9033
  msgid "File Owner ID"
9034
  msgstr ""
9035
 
9036
+ #: admin/system-info/system-info.php:383
9037
  msgid "Script Owner Name"
9038
  msgstr ""
9039
 
9040
+ #: admin/system-info/system-info.php:385
9041
  msgid "Server API"
9042
  msgstr ""
9043
 
9044
+ #: admin/system-info/system-info.php:389
9045
  msgid " CGI Host Server Type"
9046
  msgstr ""
9047
 
9048
+ #: admin/system-info/system-info.php:391
9049
  msgid " DSO Host Server Type"
9050
  msgstr ""
9051
 
9052
+ #: admin/system-info/system-info.php:398
9053
  msgid "cURL"
9054
  msgstr ""
9055
 
9056
+ #: admin/system-info/system-info.php:400
9057
  msgid "cURL Extension is Loaded Version: "
9058
  msgstr ""
9059
 
9060
+ #: admin/system-info/system-info.php:403
9061
  msgid "cURL OpenSSL Version (Used by PayPal, etc.)"
9062
  msgstr ""
9063
 
9064
+ #: admin/system-info/system-info.php:406
9065
  msgid "cURL Extension is Not Loaded"
9066
  msgstr ""
9067
 
9068
+ #: admin/system-info/system-info.php:409
9069
  msgid "OpenSSL Library"
9070
  msgstr ""
9071
 
9072
+ #: admin/system-info/system-info.php:414
9073
  msgid "Zend Engine Version"
9074
  msgstr ""
9075
 
9076
+ #: admin/system-info/system-info.php:415
9077
  msgid "Zend Guard|Optimizer"
9078
  msgstr ""
9079
 
9080
+ #: admin/system-info/system-info.php:417
9081
  msgid "Zend Optimizer+ Extension is Loaded and Enabled"
9082
  msgstr ""
9083
 
9084
+ #: admin/system-info/system-info.php:420
9085
  msgid "Zend Optimizer Extension is Loaded"
9086
  msgstr ""
9087
 
9088
+ #: admin/system-info/system-info.php:423
9089
  msgid "Zend Guard Loader Extension is Loaded"
9090
  msgstr ""
9091
 
9092
+ #: admin/system-info/system-info.php:426
9093
  msgid "A Zend Extension is Not Loaded"
9094
  msgstr ""
9095
 
9096
+ #: admin/system-info/system-info.php:433
9097
  msgid "Zend OPcache"
9098
  msgstr ""
9099
 
9100
+ #: admin/system-info/system-info.php:436
9101
  msgid "Zend OPcache is Enabled"
9102
  msgstr ""
9103
 
9104
+ #: admin/system-info/system-info.php:436 admin/system-info/system-info.php:445
9105
+ #: admin/system-info/system-info.php:639 admin/system-info/system-info.php:651
9106
  msgid "Version: "
9107
  msgstr ""
9108
 
9109
+ #: admin/system-info/system-info.php:438
9110
  msgid "Zend OPcache is Not Enabled"
9111
  msgstr ""
9112
 
9113
+ #: admin/system-info/system-info.php:443
9114
  msgid "ionCube Loader"
9115
  msgstr ""
9116
 
9117
+ #: admin/system-info/system-info.php:445
9118
  msgid "ionCube Loader Extension is Loaded "
9119
  msgstr ""
9120
 
9121
+ #: admin/system-info/system-info.php:447
9122
  msgid "ionCube Loader Extension is Not Loaded"
9123
  msgstr ""
9124
 
9125
+ #: admin/system-info/system-info.php:450
9126
  msgid "Suhosin"
9127
  msgstr ""
9128
 
9129
+ #: admin/system-info/system-info.php:454
9130
  msgid "The Suhosin-Patch is installed"
9131
  msgstr ""
9132
 
9133
+ #: admin/system-info/system-info.php:457
9134
  msgid "Suhosin-Extension is Loaded"
9135
  msgstr ""
9136
 
9137
+ #: admin/system-info/system-info.php:459
9138
  msgid "Suhosin is Not Installed|Loaded"
9139
  msgstr ""
9140
 
9141
+ #: admin/system-info/system-info.php:462
9142
  msgid "APC"
9143
  msgstr ""
9144
 
9145
+ #: admin/system-info/system-info.php:464
9146
  msgid "APC Extension is Loaded and Enabled"
9147
  msgstr ""
9148
 
9149
+ #: admin/system-info/system-info.php:467
9150
  msgid "APC Extension is Loaded but Not Enabled"
9151
  msgstr ""
9152
 
9153
+ #: admin/system-info/system-info.php:469
9154
  msgid "APC Extension is Not Loaded"
9155
  msgstr ""
9156
 
9157
+ #: admin/system-info/system-info.php:472
9158
  msgid "eAccelerator"
9159
  msgstr ""
9160
 
9161
+ #: admin/system-info/system-info.php:474
9162
  msgid "eAccelerator Extension is Loaded and Enabled"
9163
  msgstr ""
9164
 
9165
+ #: admin/system-info/system-info.php:477
9166
  msgid "eAccelerator Extension is Loaded but Not Enabled"
9167
  msgstr ""
9168
 
9169
+ #: admin/system-info/system-info.php:479
9170
  msgid "eAccelerator Extension is Not Loaded"
9171
  msgstr ""
9172
 
9173
+ #: admin/system-info/system-info.php:482
9174
  msgid "XCache"
9175
  msgstr ""
9176
 
9177
+ #: admin/system-info/system-info.php:484
9178
  msgid "XCache Extension is Loaded and Enabled"
9179
  msgstr ""
9180
 
9181
+ #: admin/system-info/system-info.php:487
9182
  msgid "XCache Extension is Loaded but Not Enabled"
9183
  msgstr ""
9184
 
9185
+ #: admin/system-info/system-info.php:489
9186
  msgid "XCache Extension is Not Loaded"
9187
  msgstr ""
9188
 
9189
+ #: admin/system-info/system-info.php:492
9190
  msgid "Varnish"
9191
  msgstr ""
9192
 
9193
+ #: admin/system-info/system-info.php:494
9194
  msgid "Varnish Extension is Loaded"
9195
  msgstr ""
9196
 
9197
+ #: admin/system-info/system-info.php:496
9198
  msgid "Varnish Extension is Not Loaded"
9199
  msgstr ""
9200
 
9201
+ #: admin/system-info/system-info.php:499
9202
  msgid "Memcache"
9203
  msgstr ""
9204
 
9205
+ #: admin/system-info/system-info.php:501
9206
  msgid "Memcache Extension is Loaded"
9207
  msgstr ""
9208
 
9209
+ #: admin/system-info/system-info.php:503
9210
  msgid "Memcache Extension is Not Loaded"
9211
  msgstr ""
9212
 
9213
+ #: admin/system-info/system-info.php:506
9214
  msgid "Memcached"
9215
  msgstr ""
9216
 
9217
+ #: admin/system-info/system-info.php:508
9218
  msgid "Memcached Extension is Loaded"
9219
  msgstr ""
9220
 
9221
+ #: admin/system-info/system-info.php:510
9222
  msgid "Memcached Extension is Not Loaded"
9223
  msgstr ""
9224
 
9225
+ #: admin/system-info/system-info.php:523
9226
  msgid "MySQL DB Info is not displayed on Network/Multisite subsites"
9227
  msgstr ""
9228
 
9229
+ #: admin/system-info/system-info.php:544 includes/general-functions.php:283
9230
  msgid "Not Set"
9231
  msgstr ""
9232
 
9233
+ #: admin/system-info/system-info.php:550
9234
  msgid "MySQL Database Server Version: "
9235
  msgstr ""
9236
 
9237
+ #: admin/system-info/system-info.php:550
9238
  msgid "MySQL Client Version: "
9239
  msgstr ""
9240
 
9241
+ #: admin/system-info/system-info.php:550
9242
  msgid "MySQL Database Server: "
9243
  msgstr ""
9244
 
9245
+ #: admin/system-info/system-info.php:550
9246
  msgid "Your MySQL Database: "
9247
  msgstr ""
9248
 
9249
+ #: admin/system-info/system-info.php:550
9250
  msgid "SQL Mode: "
9251
  msgstr ""
9252
 
9253
+ #: admin/system-info/system-info.php:555 admin/system-info/system-info.php:558
9254
  msgid "MySQL Extension: "
9255
  msgstr ""
9256
 
9257
+ #: admin/system-info/system-info.php:555 admin/system-info/system-info.php:563
9258
  msgid "Installed|Enabled"
9259
  msgstr ""
9260
 
9261
+ #: admin/system-info/system-info.php:558 admin/system-info/system-info.php:566
9262
  msgid "NOT Installed|Enabled"
9263
  msgstr ""
9264
 
9265
+ #: admin/system-info/system-info.php:563 admin/system-info/system-info.php:566
9266
  msgid "MySQLi Extension: "
9267
  msgstr ""
9268
 
9269
+ #: admin/system-info/system-info.php:573
9270
  msgid "WordPress Installation Folder"
9271
  msgstr ""
9272
 
9273
+ #: admin/system-info/system-info.php:576
9274
  msgid "WordPress Installation Type"
9275
  msgstr ""
9276
 
9277
+ #: admin/system-info/system-info.php:578
9278
  msgid "Standard|GWIOD Site Type"
9279
  msgstr ""
9280
 
9281
+ #: admin/system-info/system-info.php:580
9282
  msgid "Network|Multisite"
9283
  msgstr ""
9284
 
9285
+ #: admin/system-info/system-info.php:582
9286
  msgid "BuddyPress"
9287
  msgstr ""
9288
 
9289
+ #: admin/system-info/system-info.php:584
9290
  msgid "bbPress"
9291
  msgstr ""
9292
 
9293
+ #: admin/system-info/system-info.php:586
9294
  msgid "Plugins Folder"
9295
  msgstr ""
9296
 
9297
+ #: admin/system-info/system-info.php:590
9298
  msgid "Uploads Folder"
9299
  msgstr ""
9300
 
9301
+ #: admin/system-info/system-info.php:596
9302
  msgid "UPLOADS Constant"
9303
  msgstr ""
9304
 
9305
+ #: admin/system-info/system-info.php:600
9306
  msgid "WP Permalink Structure"
9307
  msgstr ""
9308
 
9309
+ #: admin/system-info/system-info.php:605 admin/system-info/system-info.php:607
9310
  msgid "DISABLE_WP_CRON constant"
9311
  msgstr ""
9312
 
9313
+ #: admin/system-info/system-info.php:605
9314
  msgid "Standard WP Crons are disabled on your website."
9315
  msgstr ""
9316
 
9317
+ #: admin/system-info/system-info.php:607
9318
  msgid "Standard WP Crons are not disabled on your website."
9319
  msgstr ""
9320
 
9321
+ #: admin/system-info/system-info.php:610
9322
  msgid "Total Plugins Installed"
9323
  msgstr ""
9324
 
9325
+ #: admin/system-info/system-info.php:612
9326
  msgid "Total Must-Use Plugins Installed"
9327
  msgstr ""
9328
 
9329
+ #: admin/system-info/system-info.php:614
9330
  msgid "Total Plugins Activated"
9331
  msgstr ""
9332
 
9333
+ #: admin/system-info/system-info.php:617
9334
  msgid "Total Plugins Network Activated"
9335
  msgstr ""
9336
 
9337
+ #: admin/system-info/system-info.php:623 admin/system-info/system-info.php:625
9338
  msgid "Get Plugins List"
9339
  msgstr ""
9340
 
9341
+ #: admin/system-info/system-info.php:626
9342
  msgid "This window is draggable (top) and resizable (bottom right corner)"
9343
  msgstr ""
9344
 
9345
+ #: admin/system-info/system-info.php:631
9346
  msgid "Browser Compression Supported"
9347
  msgstr ""
9348
 
9349
+ #: admin/system-info/system-info.php:634
9350
  msgid "GD Library"
9351
  msgstr ""
9352
 
9353
+ #: admin/system-info/system-info.php:639
9354
  msgid "GD Extension is Loaded - "
9355
  msgstr ""
9356
 
9357
+ #: admin/system-info/system-info.php:642
9358
  msgid "GD Extension is Not Loaded"
9359
  msgstr ""
9360
 
9361
+ #: admin/system-info/system-info.php:645
9362
  msgid "ImageMagick"
9363
  msgstr ""
9364
 
9365
+ #: admin/system-info/system-info.php:651
9366
  msgid "ImageMagick Extension is Loaded - "
9367
  msgstr ""
9368
 
9369
+ #: admin/system-info/system-info.php:654
9370
  msgid "ImageMagick Extension is Not Loaded"
9371
  msgstr ""
9372
 
9373
+ #: admin/system-info/system-info.php:669
9374
  msgid "PHP Server|PHP.ini Info"
9375
  msgstr ""
9376
 
9377
+ #: admin/system-info/system-info.php:671
9378
  msgid ""
9379
  "File|Folder Permissions (CGI or DSO)|Script Owner User ID (UID)|File Owner "
9380
  "User ID"
9381
  msgstr ""
9382
 
9383
+ #: admin/system-info/system-info.php:679
9384
  msgid "PHP Version"
9385
  msgstr ""
9386
 
9387
+ #: admin/system-info/system-info.php:680
9388
  msgid "PHP Memory Usage"
9389
  msgstr ""
9390
 
9391
+ #: admin/system-info/system-info.php:680
9392
  msgid " MB"
9393
  msgstr ""
9394
 
9395
+ #: admin/system-info/system-info.php:681
9396
  msgid "WordPress Admin Memory Limit"
9397
  msgstr ""
9398
 
9399
+ #: admin/system-info/system-info.php:684
9400
  msgid "WordPress Base Memory Limit"
9401
  msgstr ""
9402
 
9403
+ #: admin/system-info/system-info.php:692 admin/system-info/system-info.php:698
9404
+ #: admin/system-info/system-info.php:701 admin/system-info/system-info.php:704
9405
  msgid "PHP Actual Configuration Memory Limit: "
9406
  msgstr ""
9407
 
9408
+ #: admin/system-info/system-info.php:692
9409
  msgid "The Memory Limit value is not available from your Server."
9410
  msgstr ""
9411
 
9412
+ #: admin/system-info/system-info.php:701 admin/system-info/system-info.php:704
9413
+ msgid ""
9414
+ " Recommendation: Increase Memory Limit to at least 128M, 256M is even better."
9415
  msgstr ""
9416
 
9417
+ #: admin/system-info/system-info.php:712 admin/system-info/system-info.php:714
9418
  msgid "PHP Configuration File (php.ini)"
9419
  msgstr ""
9420
 
9421
+ #: admin/system-info/system-info.php:714
9422
  msgid "None/Not in use"
9423
  msgstr ""
9424
 
9425
+ #: admin/system-info/system-info.php:727
9426
  msgid "WP Temp Dir: "
9427
  msgstr ""
9428
 
9429
+ #: admin/system-info/system-info.php:730
9430
  msgid "The WP_TEMP_DIR constant is being used in wp-config.php file"
9431
  msgstr ""
9432
 
9433
+ #: admin/system-info/system-info.php:736 admin/system-info/system-info.php:738
9434
  msgid "PHP Temp Dir: "
9435
  msgstr ""
9436
 
9437
+ #: admin/system-info/system-info.php:738 admin/system-info/system-info.php:749
9438
+ #: admin/system-info/system-info.php:757
9439
  msgid "Not set/defined or directory is not writable"
9440
  msgstr ""
9441
 
9442
+ #: admin/system-info/system-info.php:747 admin/system-info/system-info.php:749
9443
  msgid "PHP Upload Temp Dir: "
9444
  msgstr ""
9445
 
9446
+ #: admin/system-info/system-info.php:755 admin/system-info/system-info.php:757
9447
  msgid "Session Save Path: "
9448
  msgstr ""
9449
 
9450
+ #: admin/system-info/system-info.php:762
9451
  msgid "Cycles: "
9452
  msgstr ""
9453
 
9454
+ #: admin/system-info/system-info.php:766
9455
  msgid "Garbage Collector: "
9456
  msgstr ""
9457
 
9458
+ #: admin/system-info/system-info.php:769
9459
  msgid "PHP Max Upload Size"
9460
  msgstr ""
9461
 
9462
+ #: admin/system-info/system-info.php:772
9463
  msgid "PHP Max Post Size"
9464
  msgstr ""
9465
 
9466
+ #: admin/system-info/system-info.php:775
9467
  msgid "PHP Safe Mode"
9468
  msgstr ""
9469
 
9470
+ #: admin/system-info/system-info.php:784
9471
  msgid "PHP Allow URL fopen"
9472
  msgstr ""
9473
 
9474
+ #: admin/system-info/system-info.php:792
9475
  msgid "PHP Allow URL Include"
9476
  msgstr ""
9477
 
9478
+ #: admin/system-info/system-info.php:800
9479
  msgid "PHP Display Errors"
9480
  msgstr ""
9481
 
9482
+ #: admin/system-info/system-info.php:808
9483
  msgid "PHP Display Startup Errors"
9484
  msgstr ""
9485
 
9486
+ #: admin/system-info/system-info.php:816
9487
  msgid "PHP Expose PHP"
9488
  msgstr ""
9489
 
9490
+ #: admin/system-info/system-info.php:824
9491
  msgid "PHP Register Globals"
9492
  msgstr ""
9493
 
9494
+ #: admin/system-info/system-info.php:832
9495
  msgid "PHP MySQL Allow Persistent Connections"
9496
  msgstr ""
9497
 
9498
+ #: admin/system-info/system-info.php:840
9499
  msgid "PHP Output Buffering"
9500
  msgstr ""
9501
 
9502
+ #: admin/system-info/system-info.php:848
9503
  msgid "PHP Max Script Execution Time"
9504
  msgstr ""
9505
 
9506
+ #: admin/system-info/system-info.php:851
9507
  msgid "PHP Magic Quotes GPC"
9508
  msgstr ""
9509
 
9510
+ #: admin/system-info/system-info.php:859
9511
  msgid "PHP open_basedir"
9512
  msgstr ""
9513
 
9514
+ #: admin/system-info/system-info.php:864
9515
  msgid "Off/Not in use"
9516
  msgstr ""
9517
 
9518
+ #: admin/system-info/system-info.php:866
9519
  msgid "PHP XML Support"
9520
  msgstr ""
9521
 
9522
+ #: admin/system-info/system-info.php:868 admin/system-info/system-info.php:876
9523
+ #: admin/system-info/system-info.php:884
9524
  msgid "Yes"
9525
  msgstr ""
9526
 
9527
+ #: admin/system-info/system-info.php:871 admin/system-info/system-info.php:879
9528
+ #: admin/system-info/system-info.php:887
9529
  msgid "No"
9530
  msgstr ""
9531
 
9532
+ #: admin/system-info/system-info.php:874
9533
  msgid "PHP IPTC Support"
9534
  msgstr ""
9535
 
9536
+ #: admin/system-info/system-info.php:882
9537
  msgid "PHP Exif Support"
9538
  msgstr ""
9539
 
9540
+ #: admin/system-info/system-info.php:895
9541
  msgid "PHP Disable Functions"
9542
  msgstr ""
9543
 
9544
+ #: admin/system-info/system-info.php:899
9545
  msgid "No PHP functions are disabled."
9546
  msgstr ""
9547
 
9548
+ #: admin/system-info/system-info.php:904
9549
  msgid "PHP Suhosin Function Blacklist"
9550
  msgstr ""
9551
 
9552
+ #: admin/system-info/system-info.php:908
9553
  msgid "No PHP functions are blacklisted."
9554
  msgstr ""
9555
 
9556
+ #: admin/system-info/system-info.php:930
9557
  msgid "CGI File and Folder Permissions|Recommendations"
9558
  msgstr ""
9559
 
9560
+ #: admin/system-info/system-info.php:933 admin/system-info/system-info.php:973
9561
  msgid "Folder Path"
9562
  msgstr ""
9563
 
9564
+ #: admin/system-info/system-info.php:934 admin/system-info/system-info.php:974
9565
  msgid "Recommended"
9566
  msgstr ""
9567
 
9568
+ #: admin/system-info/system-info.php:934 admin/system-info/system-info.php:935
9569
+ #: admin/system-info/system-info.php:974 admin/system-info/system-info.php:975
9570
  msgid "Permissions"
9571
  msgstr ""
9572
 
9573
+ #: admin/system-info/system-info.php:935 admin/system-info/system-info.php:975
9574
  msgid "Current"
9575
  msgstr ""
9576
 
9577
+ #: admin/system-info/system-info.php:936 admin/system-info/system-info.php:976
9578
  msgid "Script Owner"
9579
  msgstr ""
9580
 
9581
+ #: admin/system-info/system-info.php:936 admin/system-info/system-info.php:976
9582
  msgid " User ID (UID)"
9583
  msgstr ""
9584
 
9585
+ #: admin/system-info/system-info.php:937 admin/system-info/system-info.php:977
9586
  msgid "File Owner"
9587
  msgstr ""
9588
 
9589
+ #: admin/system-info/system-info.php:937 admin/system-info/system-info.php:977
9590
  msgid " User ID"
9591
  msgstr ""
9592
 
9593
+ #: admin/system-info/system-info.php:970
9594
  msgid "DSO File and Folder Permissions|Recommendations"
9595
  msgstr ""
9596
 
9597
+ #: admin/system-info/system-info.php:1015
9598
  msgid "System Info Processing Completion Time: "
9599
  msgstr ""
9600
 
9601
+ #: admin/system-info/system-info.php:1048
9602
  msgid "Website Headers Check Tool ~ "
9603
  msgstr ""
9604
 
9605
+ #: admin/system-info/system-info.php:1048
9606
+ #: admin/system-info/system-info.php:1055
9607
  msgid ""
9608
  "Check your website Headers or another website's Headers by making a GET "
9609
  "Request"
9610
  msgstr ""
9611
 
9612
+ #: admin/system-info/system-info.php:1072
9613
  msgid "GET Request Headers: "
9614
  msgstr ""
9615
 
9616
+ #: admin/system-info/system-info.php:1087
9617
  msgid ""
9618
  "Error: The WordPress wp_remote_get function is not available or is blocked "
9619
  "on your website/server."
9620
  msgstr ""
9621
 
9622
+ #: admin/system-info/system-info.php:1097
9623
  msgid "Enter a Website URL - Example: "
9624
  msgstr ""
9625
 
9626
+ #: admin/system-info/system-info.php:1100
9627
  msgid ""
9628
  "This Headers check makes a GET Request using the WordPress wp_remote_get "
9629
  "function."
9630
  msgstr ""
9631
 
9632
+ #: admin/system-info/system-info.php:1100
9633
  msgid ""
9634
  "You can use the Check Headers HEAD Request tool to check headers using HEAD "
9635
  "instead of GET."
9736
  "to the default setting: Load Only The Default WP Toolbar."
9737
  msgstr ""
9738
 
9739
+ #: admin/theme-skin/theme-skin.php:110 admin/theme-skin/theme-skin.php:211
9740
  msgid "Script|Style Loader Filter (SLF) In BPS Plugin Pages:"
9741
  msgstr ""
9742
 
9747
  "scripts and cause BPS plugin pages to display visually broken."
9748
  msgstr ""
9749
 
9750
+ #: admin/theme-skin/theme-skin.php:110 admin/theme-skin/theme-skin.php:225
9751
  msgid "BPS UI|UX|AutoFix Debug:"
9752
  msgstr ""
9753
 
9814
  msgid "jQuery ScrollTop Animation Off"
9815
  msgstr ""
9816
 
9817
+ #: admin/theme-skin/theme-skin.php:171 admin/theme-skin/theme-skin.php:212
9818
+ #: admin/theme-skin/theme-skin.php:226
9819
  msgid "Click the Read Me help button for information"
9820
  msgstr ""
9821
 
9827
  msgid "Load WP Toolbar With All Menu Items"
9828
  msgstr ""
9829
 
9830
+ #: admin/theme-skin/theme-skin.php:197
9831
+ msgid "SLF Option settings saved"
9832
+ msgstr ""
9833
+
9834
+ #: admin/theme-skin/theme-skin.php:214
9835
  msgid "SLF On"
9836
  msgstr ""
9837
 
9838
+ #: admin/theme-skin/theme-skin.php:215
9839
  msgid "SLF Off"
9840
  msgstr ""
9841
 
9842
+ #: admin/theme-skin/theme-skin.php:228
9843
  msgid "Debug Off"
9844
  msgstr ""
9845
 
9846
+ #: admin/theme-skin/theme-skin.php:229
9847
  msgid "Debug On"
9848
  msgstr ""
9849
 
10648
  #: admin/wizard/wizard-functions.php:808 admin/wizard/wizard.php:644
10649
  #: admin/wizard/wizard.php:682 admin/wizard/wizard.php:740
10650
  #: admin/wizard/wizard.php:780 admin/wizard/wizard.php:829
10651
+ #: includes/general-functions.php:995
10652
  msgid " DB Option created or updated Successfully!"
10653
  msgstr ""
10654
 
10724
  "file, but was NOT found in BPS Custom Code. "
10725
  msgstr ""
10726
 
10727
+ #: admin/wizard/wizard.php:176 includes/hud-dismiss-functions.php:348
10728
  msgid ""
10729
  " for the steps to fix this Wordfence problem before running the Setup Wizard."
10730
  msgstr ""
10795
 
10796
  #: admin/wizard/wizard.php:253
10797
  msgid ""
10798
+ "It is recommended that you increase your memory limit to at least 128M, 256M "
10799
+ "is even better. Contact your Web Host and ask them to increase your memory "
10800
+ "limit to the maximum memory limit setting allowed by your Host."
10801
  msgstr ""
10802
 
10803
  #: admin/wizard/wizard.php:256
11366
  msgid " JTC DB Options created or updated Successfully!"
11367
  msgstr ""
11368
 
11369
+ #: bulletproof-security.php:149
11370
  msgid "Uninstall Options"
11371
  msgstr ""
11372
 
11373
+ #: bulletproof-security.php:171
11374
  msgid "Forum - Support"
11375
  msgstr ""
11376
 
11377
+ #: bulletproof-security.php:172
11378
  msgid "Upgrade"
11379
  msgstr ""
11380
 
11416
 
11417
  #: includes/functions.php:345 includes/functions.php:583
11418
  #: includes/functions.php:650 includes/hud-autofix-setup.php:69
11419
+ #: includes/hud-dismiss-functions.php:547
11420
  msgid "Go to the "
11421
  msgstr ""
11422
 
11462
  msgstr ""
11463
 
11464
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11465
+ #: includes/hud-dismiss-functions.php:69 includes/hud-dismiss-functions.php:103
11466
+ #: includes/hud-dismiss-functions.php:136
11467
+ #: includes/hud-dismiss-functions.php:348
11468
+ #: includes/hud-dismiss-functions.php:353
11469
+ #: includes/hud-dismiss-functions.php:391
11470
+ #: includes/hud-dismiss-functions.php:396
11471
+ #: includes/hud-dismiss-functions.php:454
11472
+ #: includes/hud-dismiss-functions.php:496
11473
+ #: includes/hud-dismiss-functions.php:652
11474
  msgid ""
11475
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
11476
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Custom "
11478
  msgstr ""
11479
 
11480
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11481
+ #: includes/hud-dismiss-functions.php:69 includes/hud-dismiss-functions.php:103
11482
+ #: includes/hud-dismiss-functions.php:136
11483
+ #: includes/hud-dismiss-functions.php:201
11484
+ #: includes/hud-dismiss-functions.php:216
11485
+ #: includes/hud-dismiss-functions.php:222
11486
+ #: includes/hud-dismiss-functions.php:228
11487
+ #: includes/hud-dismiss-functions.php:234
11488
+ #: includes/hud-dismiss-functions.php:248
11489
+ #: includes/hud-dismiss-functions.php:254
11490
+ #: includes/hud-dismiss-functions.php:259
11491
+ #: includes/hud-dismiss-functions.php:348
11492
+ #: includes/hud-dismiss-functions.php:353
11493
+ #: includes/hud-dismiss-functions.php:391
11494
+ #: includes/hud-dismiss-functions.php:396
11495
+ #: includes/hud-dismiss-functions.php:454
11496
+ #: includes/hud-dismiss-functions.php:496
11497
+ #: includes/hud-dismiss-functions.php:585
11498
+ #: includes/hud-dismiss-functions.php:652
11499
+ #: includes/hud-dismiss-functions.php:680
11500
+ #: includes/hud-dismiss-functions.php:717
11501
+ #: includes/hud-dismiss-functions.php:760
11502
+ #: includes/hud-dismiss-functions.php:798
11503
+ #: includes/hud-dismiss-functions.php:831
11504
+ #: includes/hud-dismiss-functions.php:883
11505
  msgid "Dismiss Notice"
11506
  msgstr ""
11507
 
11938
  "file."
11939
  msgstr ""
11940
 
11941
+ #: includes/general-functions.php:996
11942
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11943
  msgstr ""
11944
 
12680
  msgstr ""
12681
 
12682
  #: includes/hud-autofix-whitelist.php:761
12683
+ #: includes/hud-dismiss-functions.php:831
12684
  msgid "Click this "
12685
  msgstr ""
12686
 
12712
  msgid "No Plugin or Theme AutoFix Custom Code Whitelist Rules were found"
12713
  msgstr ""
12714
 
12715
+ #: includes/hud-dismiss-functions.php:47
12716
  msgid ""
12717
  "WARNING! BPS requires at least PHP5 to function correctly. Your PHP version "
12718
  "is: "
12719
  msgstr ""
12720
 
12721
+ #: includes/hud-dismiss-functions.php:47
12722
  msgid "BPS Guide - PHP5 Solution"
12723
  msgstr ""
12724
 
12725
+ #: includes/hud-dismiss-functions.php:47
12726
  msgid ""
12727
  "The BPS Guide will open in a new browser window. You will not be directed "
12728
  "away from your WordPress Dashboard."
12729
  msgstr ""
12730
 
12731
+ #: includes/hud-dismiss-functions.php:69
12732
  msgid ""
12733
  "WARNING! BPS has detected that Safe Mode is set to On in your php.ini file."
12734
  msgstr ""
12735
 
12736
+ #: includes/hud-dismiss-functions.php:69
12737
  msgid ""
12738
  "If you see errors that BPS was unable to automatically create the backup "
12739
  "folders this is probably the reason why."
12740
  msgstr ""
12741
 
12742
+ #: includes/hud-dismiss-functions.php:103
12743
  msgid "HUD Check: Custom Permalinks are NOT being used."
12744
  msgstr ""
12745
 
12746
+ #: includes/hud-dismiss-functions.php:103
12747
  msgid "It is recommended that you use Custom Permalinks: "
12748
  msgstr ""
12749
 
12750
+ #: includes/hud-dismiss-functions.php:103
12751
  msgid "How to setup Custom Permalinks"
12752
  msgstr ""
12753
 
12754
+ #: includes/hud-dismiss-functions.php:136
12755
  msgid ""
12756
  "WARNING! BPS has detected that your Server is a Windows IIS Server that does "
12757
  "not support htaccess rewriting."
12758
  msgstr ""
12759
 
12760
+ #: includes/hud-dismiss-functions.php:136
12761
  msgid "Do NOT activate BulletProof Modes unless you know what you are doing."
12762
  msgstr ""
12763
 
12764
+ #: includes/hud-dismiss-functions.php:136
12765
  msgid "Your Server Type is: "
12766
  msgstr ""
12767
 
12768
+ #: includes/hud-dismiss-functions.php:136
12769
  msgid "WordPress Codex - Using Permalinks - see IIS section"
12770
  msgstr ""
12771
 
12772
+ #: includes/hud-dismiss-functions.php:159
12773
+ #: includes/hud-dismiss-functions.php:164
12774
  msgid "WARNING! BPS was unable to automatically create the /"
12775
  msgstr ""
12776
 
12777
+ #: includes/hud-dismiss-functions.php:159
12778
  msgid "/bps-backup folder."
12779
  msgstr ""
12780
 
12781
+ #: includes/hud-dismiss-functions.php:159
12782
+ #: includes/hud-dismiss-functions.php:164
12783
  msgid "You will need to create the /"
12784
  msgstr ""
12785
 
12786
+ #: includes/hud-dismiss-functions.php:159
12787
  msgid ""
12788
  "/bps-backup folder manually via FTP. The folder permissions for the bps-"
12789
  "backup folder need to be set to 755 in order to successfully perform "
12790
  "permanent online backups."
12791
  msgstr ""
12792
 
12793
+ #: includes/hud-dismiss-functions.php:159
12794
+ #: includes/hud-dismiss-functions.php:164
12795
  msgid "To remove this message permanently click "
12796
  msgstr ""
12797
 
12798
+ #: includes/hud-dismiss-functions.php:159
12799
+ #: includes/hud-dismiss-functions.php:164
12800
  msgid "here."
12801
  msgstr ""
12802
 
12803
+ #: includes/hud-dismiss-functions.php:164
12804
  msgid "/bps-backup/master-backups folder."
12805
  msgstr ""
12806
 
12807
+ #: includes/hud-dismiss-functions.php:164
12808
  msgid ""
12809
  "/bps-backup/master-backups folder manually via FTP. The folder permissions "
12810
  "for the master-backups folder need to be set to 755 in order to successfully "
12811
  "perform permanent online backups."
12812
  msgstr ""
12813
 
12814
+ #: includes/hud-dismiss-functions.php:198
12815
+ #: includes/hud-dismiss-functions.php:210
12816
  msgid "Bonus Custom Code:"
12817
  msgstr ""
12818
 
12819
+ #: includes/hud-dismiss-functions.php:198
12820
+ #: includes/hud-dismiss-functions.php:210
12821
  msgid ""
12822
  "Click the links below to get Bonus Custom Code or click the Dismiss Notice "
12823
  "links or click this "
12824
  msgstr ""
12825
 
12826
+ #: includes/hud-dismiss-functions.php:198
12827
+ #: includes/hud-dismiss-functions.php:210
12828
  msgid "Dismiss All Notices"
12829
  msgstr ""
12830
 
12831
+ #: includes/hud-dismiss-functions.php:198
12832
+ #: includes/hud-dismiss-functions.php:210
12833
  msgid ""
12834
  " link. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices "
12835
  "button on the Custom Code page."
12836
  msgstr ""
12837
 
12838
+ #: includes/hud-dismiss-functions.php:201
12839
+ #: includes/hud-dismiss-functions.php:216
12840
+ #: includes/hud-dismiss-functions.php:222
12841
+ #: includes/hud-dismiss-functions.php:228
12842
+ #: includes/hud-dismiss-functions.php:234
12843
+ #: includes/hud-dismiss-functions.php:248
12844
+ #: includes/hud-dismiss-functions.php:254
12845
+ #: includes/hud-dismiss-functions.php:259
12846
  msgid "Get "
12847
  msgstr ""
12848
 
12849
+ #: includes/hud-dismiss-functions.php:201
12850
+ #: includes/hud-dismiss-functions.php:248
12851
  msgid "POST Request Attack Protection Code"
12852
  msgstr ""
12853
 
12854
+ #: includes/hud-dismiss-functions.php:201
12855
+ #: includes/hud-dismiss-functions.php:216
12856
+ #: includes/hud-dismiss-functions.php:222
12857
+ #: includes/hud-dismiss-functions.php:228
12858
+ #: includes/hud-dismiss-functions.php:234
12859
+ #: includes/hud-dismiss-functions.php:248
12860
+ #: includes/hud-dismiss-functions.php:254
12861
+ #: includes/hud-dismiss-functions.php:259
12862
  msgid " or "
12863
  msgstr ""
12864
 
12865
+ #: includes/hud-dismiss-functions.php:216
12866
  msgid "Brute Force Login Protection Code"
12867
  msgstr ""
12868
 
12869
+ #: includes/hud-dismiss-functions.php:222
12870
  msgid "Speed Boost Cache Code"
12871
  msgstr ""
12872
 
12873
+ #: includes/hud-dismiss-functions.php:228
12874
  msgid "Author Enumeration BOT Probe Code"
12875
  msgstr ""
12876
 
12877
+ #: includes/hud-dismiss-functions.php:234
12878
  msgid "XML-RPC DDoS Protection Code"
12879
  msgstr ""
12880
 
12881
+ #: includes/hud-dismiss-functions.php:254
12882
  msgid "Mime Sniffing|Drive-by Download Attack Protection Code"
12883
  msgstr ""
12884
 
12885
+ #: includes/hud-dismiss-functions.php:259
12886
  msgid "External iFrame|Clickjacking Protection Code"
12887
  msgstr ""
12888
 
12889
+ #: includes/hud-dismiss-functions.php:348
12890
+ #: includes/hud-dismiss-functions.php:391
12891
  msgid "HUD Check: Wordfence PHP/php.ini handler htaccess code detected"
12892
  msgstr ""
12893
 
12894
+ #: includes/hud-dismiss-functions.php:348
12895
+ #: includes/hud-dismiss-functions.php:391
12896
  msgid ""
12897
  "Wordfence PHP/php.ini handler htaccess code was found in your root .htaccess "
12898
  "file, but was NOT found in BPS Custom Code."
12899
  msgstr ""
12900
 
12901
+ #: includes/hud-dismiss-functions.php:348
12902
+ #: includes/hud-dismiss-functions.php:391
12903
  msgid ""
12904
  "Using the Wordfence WAF Firewall may cause serious/critical problems for "
12905
  "your website and BPS."
12906
  msgstr ""
12907
 
12908
+ #: includes/hud-dismiss-functions.php:353
12909
+ #: includes/hud-dismiss-functions.php:396
12910
  msgid "HUD Check: PHP/php.ini handler htaccess code check"
12911
  msgstr ""
12912
 
12913
+ #: includes/hud-dismiss-functions.php:353
12914
+ #: includes/hud-dismiss-functions.php:396
12915
  msgid ""
12916
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
12917
  "was NOT found in BPS Custom Code."
12918
  msgstr ""
12919
 
12920
+ #: includes/hud-dismiss-functions.php:353
12921
+ #: includes/hud-dismiss-functions.php:396
12922
  msgid "To automatically fix this click here: "
12923
  msgstr ""
12924
 
12925
+ #: includes/hud-dismiss-functions.php:353
12926
+ #: includes/hud-dismiss-functions.php:396
12927
  msgid ""
12928
  "The Setup Wizard Pre-Installation Checks feature will automatically fix this "
12929
  "just by visiting the Setup Wizard page."
12930
  msgstr ""
12931
 
12932
+ #: includes/hud-dismiss-functions.php:391
12933
  msgid " for the steps to fix this Wordfence problem."
12934
  msgstr ""
12935
 
12936
+ #: includes/hud-dismiss-functions.php:454
12937
  msgid ""
12938
  "An htaccess file has been detected in the wp-content folder that breaks BPS "
12939
  "features and functionality"
12940
  msgstr ""
12941
 
12942
+ #: includes/hud-dismiss-functions.php:454
12943
  msgid ""
12944
  "If you have or had the Sucuri, Defender or iThemes Security plugins "
12945
  "installed, they create a wp-content htaccess file that breaks several things "
12946
  "in BPS Pro and other plugins as well."
12947
  msgstr ""
12948
 
12949
+ #: includes/hud-dismiss-functions.php:454
12950
  msgid ""
12951
  "To fix the Sucuri problem go to the Sucuri Settings page, click the "
12952
  "Hardening tab and click the Revert Hardening button for the Block PHP Files "
12953
  "in WP-CONTENT Directory option setting."
12954
  msgstr ""
12955
 
12956
+ #: includes/hud-dismiss-functions.php:454
12957
  msgid ""
12958
  "To fix the Defender Security problem go to the Security Tweaks page, click "
12959
  "the PHP Execution option setting and click the Revert button."
12960
  msgstr ""
12961
 
12962
+ #: includes/hud-dismiss-functions.php:454
12963
  msgid ""
12964
  "o fix the iThemes problem go to the System Tweaks page, uncheck the Disable "
12965
  "PHP in Plugins option setting."
12966
  msgstr ""
12967
 
12968
+ #: includes/hud-dismiss-functions.php:496
12969
  msgid "The WordPress Firewall 2 plugin is installed and activated"
12970
  msgstr ""
12971
 
12972
+ #: includes/hud-dismiss-functions.php:496
12973
  msgid "It is recommended that you delete the WordPress Firewall 2 plugin."
12974
  msgstr ""
12975
 
12976
+ #: includes/hud-dismiss-functions.php:496
12977
  msgid " for more information."
12978
  msgstr ""
12979
 
12980
+ #: includes/hud-dismiss-functions.php:528
12981
  msgid "Notice: BPS Query String Exploits Code Changes"
12982
  msgstr ""
12983
 
12984
+ #: includes/hud-dismiss-functions.php:528
12985
  msgid ""
12986
  "Older BPS Query String Exploits code was found in BPS Custom Code. Several "
12987
  "Query String Exploits rules were changed/added/modified in the root ."
12988
  "htaccess file in BPS .49.6, .50.2 & .50.3."
12989
  msgstr ""
12990
 
12991
+ #: includes/hud-dismiss-functions.php:528
12992
  msgid ""
12993
  "Copy the new Query String Exploits section of code from your root .htaccess "
12994
  "file and paste it into this BPS Custom Code text box: CUSTOM CODE BPSQSE BPS "
12995
  "QUERY STRING EXPLOITS and click the Save Root Custom Code button."
12996
  msgstr ""
12997
 
12998
+ #: includes/hud-dismiss-functions.php:528
12999
  msgid ""
13000
  "This Notice will go away once you have copied the new Query String Exploits "
13001
  "code to BPS Custom Code and clicked the Save Root Custom Code button."
13002
  msgstr ""
13003
 
13004
+ #: includes/hud-dismiss-functions.php:547
13005
  msgid "BPS Alert! A BPS htaccess file was NOT found in the BPS Backup folder: "
13006
  msgstr ""
13007
 
13008
+ #: includes/hud-dismiss-functions.php:547
13009
  msgid " and click the BPS Backup Folder BulletProof Mode Activate button."
13010
  msgstr ""
13011
 
13012
+ #: includes/hud-dismiss-functions.php:585
13013
  msgid "New Improved BPS Speed Boost Cache Code"
13014
  msgstr ""
13015
 
13016
+ #: includes/hud-dismiss-functions.php:585
13017
  msgid ""
13018
  "Older BPS Speed Boost Cache Code was found saved in this BPS Custom Code "
13019
  "text box: CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
13020
  msgstr ""
13021
 
13022
+ #: includes/hud-dismiss-functions.php:585
13023
  msgid ""
13024
  "Newer improved BPS Speed Boost Cache Code has been created, which should "
13025
  "improve website load speed performance even more."
13026
  msgstr ""
13027
 
13028
+ #: includes/hud-dismiss-functions.php:585
13029
  msgid "Get The New Improved BPS Speed Boost Cache Code"
13030
  msgstr ""
13031
 
13032
+ #: includes/hud-dismiss-functions.php:585
13033
  msgid ". To dismiss this Notice click the Dismiss Notice button below."
13034
  msgstr ""
13035
 
13036
+ #: includes/hud-dismiss-functions.php:585
13037
  msgid ""
13038
  "To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on "
13039
  "the Custom Code page."
13040
  msgstr ""
13041
 
13042
+ #: includes/hud-dismiss-functions.php:592
13043
  msgid "BPS Speed Boost Cache Custom Code Notice"
13044
  msgstr ""
13045
 
13046
+ #: includes/hud-dismiss-functions.php:592
13047
  msgid ""
13048
  "BPS Speed Boost Cache Code was found in this BPS Custom Code text box: "
13049
  "CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
13050
  msgstr ""
13051
 
13052
+ #: includes/hud-dismiss-functions.php:592
13053
  msgid ""
13054
  "and another caching plugin's Marker text was also found in this BPS Custom "
13055
  "Code text box."
13056
  msgstr ""
13057
 
13058
+ #: includes/hud-dismiss-functions.php:592
13059
  msgid "Click this link: "
13060
  msgstr ""
13061
 
13062
+ #: includes/hud-dismiss-functions.php:592
13063
  msgid "BPS Speed Boost Cache Custom Code Notice Forum Topic"
13064
  msgstr ""
13065
 
13066
+ #: includes/hud-dismiss-functions.php:592
13067
  msgid " for help information on what this Notice means and what to do next."
13068
  msgstr ""
13069
 
13070
+ #: includes/hud-dismiss-functions.php:652
13071
  msgid "BPS Plugin Automatic Update Notice"
13072
  msgstr ""
13073
 
13074
+ #: includes/hud-dismiss-functions.php:652
13075
  msgid ""
13076
  "Would you like to have BPS plugin updates installed automatically? Click "
13077
  "this link: "
13078
  msgstr ""
13079
 
13080
+ #: includes/hud-dismiss-functions.php:652
13081
  msgid " and click the BPS MU Tools Enable BPS Plugin AutoUpdates link."
13082
  msgstr ""
13083
 
13084
+ #: includes/hud-dismiss-functions.php:680
13085
  msgid "MScan First Run Notice"
13086
  msgstr ""
13087
 
13088
+ #: includes/hud-dismiss-functions.php:680
13089
  msgid ""
13090
  "Please take a few minutes to read the \"Basic Info|Recommendations|"
13091
  "Limitations|Restrictions\" help section in the"
13092
  msgstr ""
13093
 
13094
+ #: includes/hud-dismiss-functions.php:680
13095
  msgid "before running a scan."
13096
  msgstr ""
13097
 
13098
+ #: includes/hud-dismiss-functions.php:680
13099
  msgid ""
13100
  "It is highly recommended that you use the Scan Time Estimate Tool before "
13101
  "running an actual scan. The Scan Time Estimate Tool calculates the total "
13105
  "Notices button on the BPS Custom Code page."
13106
  msgstr ""
13107
 
13108
+ #: includes/hud-dismiss-functions.php:717
13109
  msgid "BPS New Feature Notice: JTC-Lite"
13110
  msgstr ""
13111
 
13112
+ #: includes/hud-dismiss-functions.php:717
13113
  msgid ""
13114
  "JTC-Lite protects the WordPress Login page Form against automated SpamBot "
13115
  "and HackerBot Brute Force Login attacks"
13116
  msgstr ""
13117
 
13118
+ #: includes/hud-dismiss-functions.php:717
13119
  msgid ""
13120
  "and also prevents User Accounts from being locked repeatedly by Brute Force "
13121
  "Login Bot attacks on your Login page Form."
13122
  msgstr ""
13123
 
13124
+ #: includes/hud-dismiss-functions.php:717
13125
  msgid "To enable/turn On JTC-Lite, click this "
13126
  msgstr ""
13127
 
13128
+ #: includes/hud-dismiss-functions.php:717
13129
  msgid ""
13130
  ". Click/check the Login Form Checkbox and click the Save Options button."
13131
  msgstr ""
13132
 
13133
+ #: includes/hud-dismiss-functions.php:717
13134
+ #: includes/hud-dismiss-functions.php:798
13135
+ #: includes/hud-dismiss-functions.php:831
13136
+ #: includes/hud-dismiss-functions.php:883
13137
  msgid ""
13138
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
13139
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the BPS "
13140
  "Custom Code page."
13141
  msgstr ""
13142
 
13143
+ #: includes/hud-dismiss-functions.php:760
13144
  msgid "BPS Plugin Star Rating Request"
13145
  msgstr ""
13146
 
13147
+ #: includes/hud-dismiss-functions.php:760
13148
  msgid ""
13149
  "A BPS star rating only takes a couple of minutes and would be very much "
13150
  "appreciated. We are looking for 5 star ratings and not \"fancy\" reviews."
13151
  msgstr ""
13152
 
13153
+ #: includes/hud-dismiss-functions.php:760
13154
  msgid ""
13155
  "A simple review like \"works great\" or \"has been protecting my website for "
13156
  "X months or X years\" is perfect."
13157
  msgstr ""
13158
 
13159
+ #: includes/hud-dismiss-functions.php:760
13160
  msgid "Click this link to submit a BPS Plugin Star Rating: "
13161
  msgstr ""
13162
 
13163
+ #: includes/hud-dismiss-functions.php:760
13164
  msgid "BPS Plugin Star Rating"
13165
  msgstr ""
13166
 
13167
+ #: includes/hud-dismiss-functions.php:760
13168
  msgid ""
13169
  "login to the WordPress.org site and scroll to the bottom of the Reviews page."
13170
  msgstr ""
13171
 
13172
+ #: includes/hud-dismiss-functions.php:760
13173
  msgid ""
13174
  "To Dismiss this one-time Notice click the Dismiss Notice button below. To "
13175
  "Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the "
13176
  "BPS Custom Code page."
13177
  msgstr ""
13178
 
13179
+ #: includes/hud-dismiss-functions.php:798
13180
  msgid "BPS Notice: Mod Security Module is Loaded|Enabled"
13181
  msgstr ""
13182
 
13183
+ #: includes/hud-dismiss-functions.php:798
13184
  msgid "Please take a minute to view this Mod Security help forum topic: "
13185
  msgstr ""
13186
 
13187
+ #: includes/hud-dismiss-functions.php:798
13188
  msgid "Mod Security Common Known Problems"
13189
  msgstr ""
13190
 
13191
+ #: includes/hud-dismiss-functions.php:798
13192
  msgid ""
13193
  "If you are not experiencing any of the problems listed in the Mod Security "
13194
  "help forum topic then you can dismiss this Dismiss Notice."
13195
  msgstr ""
13196
 
13197
+ #: includes/hud-dismiss-functions.php:831
13198
  msgid "BPS GDPR Compliance Notice"
13199
  msgstr ""
13200
 
13201
+ #: includes/hud-dismiss-functions.php:831
13202
  msgid ""
13203
  "A new Setup Wizard Option has been created which allows you to turn off all "
13204
  "IP address logging in BPS to make your website GDPR Compliant."
13205
  msgstr ""
13206
 
13207
+ #: includes/hud-dismiss-functions.php:831
13208
  msgid "GDPR Compliance Setup Wizard Option link"
13209
  msgstr ""
13210
 
13211
+ #: includes/hud-dismiss-functions.php:831
13212
  msgid "Choose the GDPR Compliance On setting."
13213
  msgstr ""
13214
 
13215
+ #: includes/hud-dismiss-functions.php:831
13216
  msgid "For more information about GDPR Compliance click this "
13217
  msgstr ""
13218
 
13219
+ #: includes/hud-dismiss-functions.php:831
13220
  msgid "GDPR Compliance Forum Topic link"
13221
  msgstr ""
13222
 
13223
+ #: includes/hud-dismiss-functions.php:883
13224
+ msgid "BPS wp-config.php file WP Automatic Update constants detected"
13225
+ msgstr ""
13226
+
13227
+ #: includes/hud-dismiss-functions.php:883
13228
+ msgid ""
13229
+ "You are using the BPS MU Tools plugin option settings to handle WP Automatic "
13230
+ "Updates. BPS detected that you are also using one or both of these WP "
13231
+ "Automatic Update constants in your wp-config.php file: WP_AUTO_UPDATE_CORE "
13232
+ "and/or AUTOMATIC_UPDATER_DISABLED. Either comment out these constants in "
13233
+ "your wp-config.php file or delete these constants. If you choose to comment "
13234
+ "out these constants instead of deleting them then dismiss this Dismiss "
13235
+ "Notice after you have commented them out."
13236
+ msgstr ""
13237
+
13238
  #: includes/login-security.php:123 includes/login-security.php:129
13239
  #: includes/login-security.php:342 includes/login-security.php:484
13240
  #: includes/login-security.php:490 includes/login-security.php:616
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-secur
4
  Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 5.5
7
- Stable tag: 4.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -34,7 +34,8 @@ https://www.youtube.com/watch?v=FMv58aLUMT0
34
  * HTTP Error Logging
35
  * FrontEnd|BackEnd Maintenance Mode
36
  * UI Theme Skin Changer (3 Theme Skins)
37
- * Extensive System Info
 
38
 
39
  = BulletProof Security Pro Feature Highlights =
40
 
@@ -67,7 +68,8 @@ https://www.youtube.com/watch?v=FMv58aLUMT0
67
  * Pro Tools: 16 mini-plugins
68
  * Heads Up Dashboard Status Display
69
  * UI Theme Skin Changer (3 Theme Skins)
70
- * Extensive System Info
 
71
  * <a href="https://www.ait-pro.com/bps-features/" title="BulletProof Security Features" rel="nofollow" target="_blank">View All BulletProof Security Pro Feature Details</a>
72
 
73
  = BulletProof Security Recommended Video Tutorials =
@@ -180,6 +182,10 @@ Security plugin features and frequently asked questions see the FAQ section belo
180
  * BPS has a GDPR Compliance Setup Wizard Options setting, which allows someone to turn IP address logging On or Off throughout all BPS plugin features by choosing the GDPR Compliance On option setting on the Setup Wizard Options page: BPS Features affected: Security Logging, Login Security Logging, and Maintenance Mode Logging. Note: For simplicity and ease of use there is only one option setting that needs to be set instead of creating individual option settings in all BPS features that perform IP address logging.
181
  * <a href="https://forum.ait-pro.com/forums/topic/bps-gdpr-compliance/" title="BPS GDPR Compliance Forum Topic" rel="nofollow" target="_blank">BPS GDPR Compliance Forum Topic</a>
182
 
 
 
 
 
183
  = BulletProof Security Bonus Custom Code =
184
 
185
  * <a href="https://forum.ait-pro.com/forums/topic/protect-login-page-from-brute-force-login-attacks/" title="Brute Force Login Protection .htaccess code" rel="nofollow" target="_blank">Brute Force Login Protection .htaccess Code</a>
4
  Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 5.5
7
+ Stable tag: 4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
34
  * HTTP Error Logging
35
  * FrontEnd|BackEnd Maintenance Mode
36
  * UI Theme Skin Changer (3 Theme Skins)
37
+ * Extensive System Info (System Info page)
38
+ * WordPress Automatic Update Options
39
 
40
  = BulletProof Security Pro Feature Highlights =
41
 
68
  * Pro Tools: 16 mini-plugins
69
  * Heads Up Dashboard Status Display
70
  * UI Theme Skin Changer (3 Theme Skins)
71
+ * Extensive System Info (System Info page)
72
+ * WordPress Automatic Update Options
73
  * <a href="https://www.ait-pro.com/bps-features/" title="BulletProof Security Features" rel="nofollow" target="_blank">View All BulletProof Security Pro Feature Details</a>
74
 
75
  = BulletProof Security Recommended Video Tutorials =
182
  * BPS has a GDPR Compliance Setup Wizard Options setting, which allows someone to turn IP address logging On or Off throughout all BPS plugin features by choosing the GDPR Compliance On option setting on the Setup Wizard Options page: BPS Features affected: Security Logging, Login Security Logging, and Maintenance Mode Logging. Note: For simplicity and ease of use there is only one option setting that needs to be set instead of creating individual option settings in all BPS features that perform IP address logging.
183
  * <a href="https://forum.ait-pro.com/forums/topic/bps-gdpr-compliance/" title="BPS GDPR Compliance Forum Topic" rel="nofollow" target="_blank">BPS GDPR Compliance Forum Topic</a>
184
 
185
+ = WordPress Automatic Update Options =
186
+ The BPS plugin comes with a must-use plugin called BPS MU Tools. The BPS MU Tools must-use plugin is located on the WordPress Plugins page under the Must-Use link at the top of the WordPress Plugins page. The BPS MU Tools plugin has 6 WP Automatic Update option settings: Disable all Updates: On = All WordPress Automatic Updates: Core, Plugins, Themes and Translations will be disabled | Disable all Core Updates: On = All WordPress Core Automatic Updates: Development, Minor and Major versions are disabled | Enable all Core Updates: On = All WordPress Core Automatic Updates: Development, Minor and Major versions are enabled | Enable Development Updates: On = WordPress Core Automatic Updates are enabled for Development WP versions | Enable Minor Updates: On = WordPress Core Automatic Updates are enabled for Minor WP versions | Enable Major Updates: On = WordPress Core Automatic Updates are enabled for Major WP versions. For more extensive help information click the WordPress Automatic Update Help Forum Topic link below.
187
+ * <a href="https://forum.ait-pro.com/forums/topic/wordpress-automatic-update-help-forum-topic-bps-must-use-plugin/" title="WordPress Automatic Update Help Forum Topic" rel="nofollow" target="_blank">WordPress Automatic Update Help Forum Topic</a>
188
+
189
  = BulletProof Security Bonus Custom Code =
190
 
191
  * <a href="https://forum.ait-pro.com/forums/topic/protect-login-page-from-brute-force-login-attacks/" title="Brute Force Login Protection .htaccess code" rel="nofollow" target="_blank">Brute Force Login Protection .htaccess Code</a>