WP Hide & Security Enhancer - Version 1.5.8.2

Version Description

Ensure base slug (e.g. base_slug/slug ) is not being used for another option to prevent rewrite conflicts Return correct home path when using own directory for WordPress and hosting account use the same slug in the path. Relocated get_default_variables() function on a higher priority execution level, to get default system details. Switched Yes / No options selection, to outputs first No then Yes ( more logical )

Download this release

Release Info

Developer nsp-code
Plugin Icon 128x128 WP Hide & Security Enhancer
Version 1.5.8.2
Comparing to
See all releases

Code changes from version 1.5.8 to 1.5.8.2

include/functions.class.php CHANGED
@@ -100,6 +100,9 @@
100
  //update the settings
101
  $this->update_settings( $settings );
102
 
 
 
 
103
  //trigger the settings changed action
104
  do_action('wph/settings_changed', null, null);
105
 
@@ -205,6 +208,19 @@
205
  }
206
 
207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  $reserved_values = apply_filters('wp-hide/interface/process/reserved_values', array(
209
  'wp'
210
  ));
@@ -223,6 +239,23 @@
223
  'message' => __('Value', 'wp-hide-security-enhancer') . ' <b>' . $data['value'] .'</b> ' . __('set for', 'wp-hide-security-enhancer') . ' ' . __($data['module_name'], 'wp-hide-security-enhancer') . ' ' . __('already in use for another option.', 'wp-hide-security-enhancer')
224
  );
225
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
  //put the value back
228
  $_settings_[ $field_name ] = $data['value'];
@@ -403,7 +436,13 @@
403
  $siteurl = set_url_scheme( get_option( 'siteurl' ), 'http' );
404
  if ( ! empty( $home ) && 0 !== strcasecmp( $home, $siteurl ) )
405
  {
406
- $wp_path_rel_to_home = str_ireplace( $home, '', $siteurl ); /* $siteurl - $home */
 
 
 
 
 
 
407
  $pos = strripos( str_replace( '\\', '/', $_SERVER['SCRIPT_FILENAME'] ), trailingslashit( $wp_path_rel_to_home ) );
408
 
409
  if($pos !== FALSE)
@@ -421,6 +460,8 @@
421
  $home_path = substr( $real_apth, 0, $pos );
422
  $home_path = trim( $home_path , '/\\') . DIRECTORY_SEPARATOR;
423
  }
 
 
424
  }
425
  else
426
  {
100
  //update the settings
101
  $this->update_settings( $settings );
102
 
103
+ //udpate the cass settings as well
104
+ $this->wph->settings = $settings;
105
+
106
  //trigger the settings changed action
107
  do_action('wph/settings_changed', null, null);
108
 
208
  }
209
 
210
 
211
+ //ensure the base slug is not being used by another option
212
+ // e.g. skin skin/module
213
+ $_settings_for_regex = array();
214
+ foreach ( $_settings_ as $field_name => $option_value )
215
+ {
216
+ if ( ! is_string( $option_value ) )
217
+ continue;
218
+
219
+ $parts = explode("/", $option_value);
220
+
221
+ $_settings_for_regex[ $field_name ] = $parts[0];
222
+ }
223
+
224
  $reserved_values = apply_filters('wp-hide/interface/process/reserved_values', array(
225
  'wp'
226
  ));
239
  'message' => __('Value', 'wp-hide-security-enhancer') . ' <b>' . $data['value'] .'</b> ' . __('set for', 'wp-hide-security-enhancer') . ' ' . __($data['module_name'], 'wp-hide-security-enhancer') . ' ' . __('already in use for another option.', 'wp-hide-security-enhancer')
240
  );
241
  }
242
+ else
243
+ {
244
+
245
+ //check for base slug e.g. skin/module
246
+ $parts = explode ( "/" , $data['value'] );
247
+ $_settings_to_search = $_settings_for_regex;
248
+ unset( $_settings_to_search[ $field_name ] );
249
+ if( array_search( $parts[0] , $_settings_to_search ) !== FALSE )
250
+ {
251
+ $errors = TRUE;
252
+ $process_interface_save_errors[] = array( 'type' => 'error',
253
+ 'message' => __('Value', 'wp-hide-security-enhancer') . ' <b>' . $data['value'] .'</b> ' . __('set for', 'wp-hide-security-enhancer') . ' ' . __($data['module_name'], 'wp-hide-security-enhancer') . ' ' . __('use the same base slug ', 'wp-hide-security-enhancer') . '<b>' . $parts[0] . '</b> ' . __('used for another option.', 'wp-hide-security-enhancer')
254
+ );
255
+ }
256
+
257
+
258
+ }
259
 
260
  //put the value back
261
  $_settings_[ $field_name ] = $data['value'];
436
  $siteurl = set_url_scheme( get_option( 'siteurl' ), 'http' );
437
  if ( ! empty( $home ) && 0 !== strcasecmp( $home, $siteurl ) )
438
  {
439
+
440
+ $home_path = str_replace( '\\', '/', $_SERVER['DOCUMENT_ROOT'] );
441
+ $home_path = rtrim( $home_path , '/');
442
+ $home_path .= $this->wph->default_variables['site_relative_path'];
443
+
444
+ /*
445
+ $wp_path_rel_to_home = str_ireplace( $home, '', $siteurl );
446
  $pos = strripos( str_replace( '\\', '/', $_SERVER['SCRIPT_FILENAME'] ), trailingslashit( $wp_path_rel_to_home ) );
447
 
448
  if($pos !== FALSE)
460
  $home_path = substr( $real_apth, 0, $pos );
461
  $home_path = trim( $home_path , '/\\') . DIRECTORY_SEPARATOR;
462
  }
463
+
464
+ */
465
  }
466
  else
467
  {
include/wph.class.php CHANGED
@@ -53,6 +53,8 @@
53
  $this->urls_replacement['normal'] = array();
54
  $this->urls_replacement['low'] = array();
55
 
 
 
56
  //set whatever the server use htaccess or web.config configuration file
57
  $this->server_htaccess_config = $this->functions->server_use_htaccess_config_file();
58
  $this->server_web_config = $this->functions->server_use_web_config_file();
@@ -72,12 +74,10 @@
72
  //check if WPEngine
73
  if ( getenv('IS_WPE') == "1" || getenv('IS_WPE_SNAPSHOT') == "1" )
74
  $this->disable_filters = TRUE;
75
-
76
  //check for permalink issues
77
  $this->custom_permalinks_applied = $this->functions->rewrite_rules_applied();
78
 
79
- $this->get_default_variables();
80
-
81
  $this->_load_modules();
82
 
83
  $this->is_initialised = TRUE;
@@ -1036,7 +1036,7 @@
1036
  {
1037
 
1038
  $field_id = $module_setting['id'];
1039
- $saved_field_value = isset($this->settings['module_settings'][ $field_id ]) ? $this->settings['module_settings'][ $field_id ] : '';
1040
 
1041
  $_class_instance = isset($module_setting['class_instance']) ? $module_setting['class_instance'] : $module;
1042
  $_callback = isset($module_setting['callback_saved']) ? $module_setting['callback_saved'] : '';
53
  $this->urls_replacement['normal'] = array();
54
  $this->urls_replacement['low'] = array();
55
 
56
+ $this->get_default_variables();
57
+
58
  //set whatever the server use htaccess or web.config configuration file
59
  $this->server_htaccess_config = $this->functions->server_use_htaccess_config_file();
60
  $this->server_web_config = $this->functions->server_use_web_config_file();
74
  //check if WPEngine
75
  if ( getenv('IS_WPE') == "1" || getenv('IS_WPE_SNAPSHOT') == "1" )
76
  $this->disable_filters = TRUE;
77
+
78
  //check for permalink issues
79
  $this->custom_permalinks_applied = $this->functions->rewrite_rules_applied();
80
 
 
 
81
  $this->_load_modules();
82
 
83
  $this->is_initialised = TRUE;
1036
  {
1037
 
1038
  $field_id = $module_setting['id'];
1039
+ $saved_field_value = isset( $this->settings['module_settings'][ $field_id ]) ? $this->settings['module_settings'][ $field_id ] : '';
1040
 
1041
  $_class_instance = isset($module_setting['class_instance']) ? $module_setting['class_instance'] : $module;
1042
  $_callback = isset($module_setting['callback_saved']) ? $module_setting['callback_saved'] : '';
modules/components/admin-admin_url.php CHANGED
@@ -33,8 +33,8 @@
33
  ),
34
  'input_type' => 'radio',
35
  'options' => array(
36
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
37
  'no' => __('No', 'wp-hide-security-enhancer'),
 
38
  ),
39
  'default_value' => 'no',
40
 
33
  ),
34
  'input_type' => 'radio',
35
  'options' => array(
 
36
  'no' => __('No', 'wp-hide-security-enhancer'),
37
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
38
  ),
39
  'default_value' => 'no',
40
 
modules/components/admin-new_wp_login_php.php CHANGED
@@ -34,8 +34,8 @@
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
37
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
38
  'no' => __('No', 'wp-hide-security-enhancer'),
 
39
  ),
40
  'default_value' => 'no',
41
 
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
 
37
  'no' => __('No', 'wp-hide-security-enhancer'),
38
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
39
  ),
40
  'default_value' => 'no',
41
 
modules/components/general-admin-bar.php CHANGED
@@ -41,8 +41,8 @@
41
 
42
  'input_type' => 'radio',
43
  'options' => array(
44
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
45
  'no' => __('No', 'wp-hide-security-enhancer'),
 
46
  ),
47
  'default_value' => 'no',
48
 
41
 
42
  'input_type' => 'radio',
43
  'options' => array(
 
44
  'no' => __('No', 'wp-hide-security-enhancer'),
45
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
46
  ),
47
  'default_value' => 'no',
48
 
modules/components/general-feed.php CHANGED
@@ -18,8 +18,8 @@
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
21
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
22
  'no' => __('No', 'wp-hide-security-enhancer'),
 
23
  ),
24
  'default_value' => 'no',
25
 
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
 
21
  'no' => __('No', 'wp-hide-security-enhancer'),
22
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  ),
24
  'default_value' => 'no',
25
 
modules/components/general-headers.php CHANGED
@@ -20,8 +20,8 @@
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
23
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
24
  'no' => __('No', 'wp-hide-security-enhancer'),
 
25
  ),
26
  'default_value' => 'no',
27
 
@@ -38,8 +38,8 @@
38
 
39
  'input_type' => 'radio',
40
  'options' => array(
41
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
42
  'no' => __('No', 'wp-hide-security-enhancer'),
 
43
  ),
44
  'default_value' => 'no',
45
 
@@ -55,8 +55,8 @@
55
 
56
  'input_type' => 'radio',
57
  'options' => array(
58
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
59
  'no' => __('No', 'wp-hide-security-enhancer'),
 
60
  ),
61
  'default_value' => 'no',
62
 
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
 
23
  'no' => __('No', 'wp-hide-security-enhancer'),
24
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
25
  ),
26
  'default_value' => 'no',
27
 
38
 
39
  'input_type' => 'radio',
40
  'options' => array(
 
41
  'no' => __('No', 'wp-hide-security-enhancer'),
42
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
43
  ),
44
  'default_value' => 'no',
45
 
55
 
56
  'input_type' => 'radio',
57
  'options' => array(
 
58
  'no' => __('No', 'wp-hide-security-enhancer'),
59
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
60
  ),
61
  'default_value' => 'no',
62
 
modules/components/general-html.php CHANGED
@@ -23,8 +23,8 @@
23
 
24
  'input_type' => 'radio',
25
  'options' => array(
26
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
27
  'no' => __('No', 'wp-hide-security-enhancer'),
 
28
  ),
29
  'default_value' => 'no',
30
 
@@ -57,8 +57,8 @@
57
  'description' => __('Remove general classes from body tag.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
58
  'input_type' => 'radio',
59
  'options' => array(
60
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
61
  'no' => __('No', 'wp-hide-security-enhancer'),
 
62
  ),
63
  'default_value' => 'no',
64
 
@@ -72,8 +72,8 @@
72
  'description' => __('Remove ID attribute from all menu items.', 'wp-hide-security-enhancer'). '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
73
  'input_type' => 'radio',
74
  'options' => array(
75
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
76
  'no' => __('No', 'wp-hide-security-enhancer'),
 
77
  ),
78
  'default_value' => 'no',
79
 
@@ -88,8 +88,8 @@
88
 
89
  'input_type' => 'radio',
90
  'options' => array(
91
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
92
  'no' => __('No', 'wp-hide-security-enhancer'),
 
93
  ),
94
  'default_value' => 'no',
95
 
@@ -103,8 +103,8 @@
103
  'description' => __('Remove general classes from post.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
104
  'input_type' => 'radio',
105
  'options' => array(
106
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
107
  'no' => __('No', 'wp-hide-security-enhancer'),
 
108
  ),
109
  'default_value' => 'no',
110
 
@@ -118,8 +118,8 @@
118
  'description' => __('Remove general classes from media tags.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
119
  'input_type' => 'radio',
120
  'options' => array(
121
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
122
  'no' => __('No', 'wp-hide-security-enhancer'),
 
123
  ),
124
  'default_value' => 'no',
125
 
23
 
24
  'input_type' => 'radio',
25
  'options' => array(
 
26
  'no' => __('No', 'wp-hide-security-enhancer'),
27
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
28
  ),
29
  'default_value' => 'no',
30
 
57
  'description' => __('Remove general classes from body tag.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
58
  'input_type' => 'radio',
59
  'options' => array(
 
60
  'no' => __('No', 'wp-hide-security-enhancer'),
61
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
62
  ),
63
  'default_value' => 'no',
64
 
72
  'description' => __('Remove ID attribute from all menu items.', 'wp-hide-security-enhancer'). '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
73
  'input_type' => 'radio',
74
  'options' => array(
 
75
  'no' => __('No', 'wp-hide-security-enhancer'),
76
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
77
  ),
78
  'default_value' => 'no',
79
 
88
 
89
  'input_type' => 'radio',
90
  'options' => array(
 
91
  'no' => __('No', 'wp-hide-security-enhancer'),
92
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
93
  ),
94
  'default_value' => 'no',
95
 
103
  'description' => __('Remove general classes from post.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
104
  'input_type' => 'radio',
105
  'options' => array(
 
106
  'no' => __('No', 'wp-hide-security-enhancer'),
107
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
108
  ),
109
  'default_value' => 'no',
110
 
118
  'description' => __('Remove general classes from media tags.', 'wp-hide-security-enhancer') . '<br /><span class="info"> '. __('This can produce layout issues with certain themes, if something break this should be turned off.', 'wp-hide-security-enhancer') . '</span>',
119
  'input_type' => 'radio',
120
  'options' => array(
 
121
  'no' => __('No', 'wp-hide-security-enhancer'),
122
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
123
  ),
124
  'default_value' => 'no',
125
 
modules/components/general-meta.php CHANGED
@@ -19,8 +19,8 @@
19
 
20
  'input_type' => 'radio',
21
  'options' => array(
22
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  'no' => __('No', 'wp-hide-security-enhancer'),
 
24
  ),
25
  'default_value' => 'no',
26
 
@@ -35,8 +35,8 @@
35
 
36
  'input_type' => 'radio',
37
  'options' => array(
38
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
39
  'no' => __('No', 'wp-hide-security-enhancer'),
 
40
  ),
41
  'default_value' => 'no',
42
 
@@ -51,8 +51,8 @@
51
 
52
  'input_type' => 'radio',
53
  'options' => array(
54
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
55
  'no' => __('No', 'wp-hide-security-enhancer'),
 
56
  ),
57
  'default_value' => 'no',
58
 
@@ -67,8 +67,8 @@
67
 
68
  'input_type' => 'radio',
69
  'options' => array(
70
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
71
  'no' => __('No', 'wp-hide-security-enhancer'),
 
72
  ),
73
  'default_value' => 'no',
74
 
@@ -83,8 +83,8 @@
83
 
84
  'input_type' => 'radio',
85
  'options' => array(
86
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
87
  'no' => __('No', 'wp-hide-security-enhancer'),
 
88
  ),
89
  'default_value' => 'no',
90
 
@@ -99,8 +99,8 @@
99
 
100
  'input_type' => 'radio',
101
  'options' => array(
102
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
103
  'no' => __('No', 'wp-hide-security-enhancer'),
 
104
  ),
105
  'default_value' => 'no',
106
 
@@ -116,8 +116,8 @@
116
 
117
  'input_type' => 'radio',
118
  'options' => array(
119
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
120
  'no' => __('No', 'wp-hide-security-enhancer'),
 
121
  ),
122
  'default_value' => 'no',
123
 
@@ -135,8 +135,8 @@
135
 
136
  'input_type' => 'radio',
137
  'options' => array(
138
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
139
  'no' => __('No', 'wp-hide-security-enhancer'),
 
140
  ),
141
  'default_value' => 'no',
142
 
@@ -153,8 +153,8 @@
153
 
154
  'input_type' => 'radio',
155
  'options' => array(
156
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
157
  'no' => __('No', 'wp-hide-security-enhancer'),
 
158
  ),
159
  'default_value' => 'no',
160
 
@@ -169,8 +169,8 @@
169
 
170
  'input_type' => 'radio',
171
  'options' => array(
172
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
173
  'no' => __('No', 'wp-hide-security-enhancer'),
 
174
  ),
175
  'default_value' => 'no',
176
 
@@ -185,8 +185,8 @@
185
 
186
  'input_type' => 'radio',
187
  'options' => array(
188
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
189
  'no' => __('No', 'wp-hide-security-enhancer'),
 
190
  ),
191
  'default_value' => 'no',
192
 
19
 
20
  'input_type' => 'radio',
21
  'options' => array(
 
22
  'no' => __('No', 'wp-hide-security-enhancer'),
23
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
24
  ),
25
  'default_value' => 'no',
26
 
35
 
36
  'input_type' => 'radio',
37
  'options' => array(
 
38
  'no' => __('No', 'wp-hide-security-enhancer'),
39
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
40
  ),
41
  'default_value' => 'no',
42
 
51
 
52
  'input_type' => 'radio',
53
  'options' => array(
 
54
  'no' => __('No', 'wp-hide-security-enhancer'),
55
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
56
  ),
57
  'default_value' => 'no',
58
 
67
 
68
  'input_type' => 'radio',
69
  'options' => array(
 
70
  'no' => __('No', 'wp-hide-security-enhancer'),
71
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
72
  ),
73
  'default_value' => 'no',
74
 
83
 
84
  'input_type' => 'radio',
85
  'options' => array(
 
86
  'no' => __('No', 'wp-hide-security-enhancer'),
87
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
88
  ),
89
  'default_value' => 'no',
90
 
99
 
100
  'input_type' => 'radio',
101
  'options' => array(
 
102
  'no' => __('No', 'wp-hide-security-enhancer'),
103
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
104
  ),
105
  'default_value' => 'no',
106
 
116
 
117
  'input_type' => 'radio',
118
  'options' => array(
 
119
  'no' => __('No', 'wp-hide-security-enhancer'),
120
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
121
  ),
122
  'default_value' => 'no',
123
 
135
 
136
  'input_type' => 'radio',
137
  'options' => array(
 
138
  'no' => __('No', 'wp-hide-security-enhancer'),
139
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
140
  ),
141
  'default_value' => 'no',
142
 
153
 
154
  'input_type' => 'radio',
155
  'options' => array(
 
156
  'no' => __('No', 'wp-hide-security-enhancer'),
157
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
158
  ),
159
  'default_value' => 'no',
160
 
169
 
170
  'input_type' => 'radio',
171
  'options' => array(
 
172
  'no' => __('No', 'wp-hide-security-enhancer'),
173
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
174
  ),
175
  'default_value' => 'no',
176
 
185
 
186
  'input_type' => 'radio',
187
  'options' => array(
 
188
  'no' => __('No', 'wp-hide-security-enhancer'),
189
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
190
  ),
191
  'default_value' => 'no',
192
 
modules/components/general-oembed.php CHANGED
@@ -19,8 +19,8 @@
19
 
20
  'input_type' => 'radio',
21
  'options' => array(
22
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  'no' => __('No', 'wp-hide-security-enhancer'),
 
24
  ),
25
  'default_value' => 'no',
26
 
19
 
20
  'input_type' => 'radio',
21
  'options' => array(
 
22
  'no' => __('No', 'wp-hide-security-enhancer'),
23
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
24
  ),
25
  'default_value' => 'no',
26
 
modules/components/general-robots-txt.php CHANGED
@@ -18,8 +18,8 @@
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
21
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
22
  'no' => __('No', 'wp-hide-security-enhancer'),
 
23
  ),
24
  'default_value' => 'no',
25
 
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
 
21
  'no' => __('No', 'wp-hide-security-enhancer'),
22
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  ),
24
  'default_value' => 'no',
25
 
modules/components/general-scripts.php CHANGED
@@ -18,8 +18,8 @@
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
21
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
22
  'no' => __('No', 'wp-hide-security-enhancer'),
 
23
  ),
24
  'default_value' => 'no',
25
 
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
 
21
  'no' => __('No', 'wp-hide-security-enhancer'),
22
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  ),
24
  'default_value' => 'no',
25
 
modules/components/general-styles.php CHANGED
@@ -18,8 +18,8 @@
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
21
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
22
  'no' => __('No', 'wp-hide-security-enhancer'),
 
23
  ),
24
  'default_value' => 'no',
25
 
@@ -34,8 +34,8 @@
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
37
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
38
  'no' => __('No', 'wp-hide-security-enhancer'),
 
39
  ),
40
  'default_value' => 'no',
41
 
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
 
21
  'no' => __('No', 'wp-hide-security-enhancer'),
22
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  ),
24
  'default_value' => 'no',
25
 
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
 
37
  'no' => __('No', 'wp-hide-security-enhancer'),
38
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
39
  ),
40
  'default_value' => 'no',
41
 
modules/components/general-wpemoji.php CHANGED
@@ -18,8 +18,8 @@
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
21
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
22
  'no' => __('No', 'wp-hide-security-enhancer'),
 
23
  ),
24
  'default_value' => 'no',
25
 
@@ -34,8 +34,8 @@
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
37
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
38
  'no' => __('No', 'wp-hide-security-enhancer'),
 
39
  ),
40
  'default_value' => 'no',
41
 
18
 
19
  'input_type' => 'radio',
20
  'options' => array(
 
21
  'no' => __('No', 'wp-hide-security-enhancer'),
22
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
23
  ),
24
  'default_value' => 'no',
25
 
34
 
35
  'input_type' => 'radio',
36
  'options' => array(
 
37
  'no' => __('No', 'wp-hide-security-enhancer'),
38
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
39
  ),
40
  'default_value' => 'no',
41
 
modules/components/rewrite-author.php CHANGED
@@ -31,8 +31,8 @@
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
34
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
35
  'no' => __('No', 'wp-hide-security-enhancer'),
 
36
  ),
37
  'default_value' => 'no',
38
 
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
 
34
  'no' => __('No', 'wp-hide-security-enhancer'),
35
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  ),
37
  'default_value' => 'no',
38
 
modules/components/rewrite-comments.php CHANGED
@@ -31,8 +31,8 @@
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
34
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
35
  'no' => __('No', 'wp-hide-security-enhancer'),
 
36
  ),
37
  'default_value' => 'no',
38
 
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
 
34
  'no' => __('No', 'wp-hide-security-enhancer'),
35
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  ),
37
  'default_value' => 'no',
38
 
modules/components/rewrite-json-rest.php CHANGED
@@ -20,8 +20,8 @@
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
23
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
24
  'no' => __('No', 'wp-hide-security-enhancer'),
 
25
  ),
26
  'default_value' => 'no',
27
 
@@ -38,8 +38,8 @@
38
 
39
  'input_type' => 'radio',
40
  'options' => array(
41
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
42
  'no' => __('No', 'wp-hide-security-enhancer'),
 
43
  ),
44
  'default_value' => 'no',
45
 
@@ -62,8 +62,8 @@
62
 
63
  'input_type' => 'radio',
64
  'options' => array(
65
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
66
  'no' => __('No', 'wp-hide-security-enhancer'),
 
67
  ),
68
  'default_value' => 'no',
69
 
@@ -86,8 +86,8 @@
86
 
87
  'input_type' => 'radio',
88
  'options' => array(
89
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
90
  'no' => __('No', 'wp-hide-security-enhancer'),
 
91
  ),
92
  'default_value' => 'no',
93
 
@@ -104,8 +104,8 @@
104
 
105
  'input_type' => 'radio',
106
  'options' => array(
107
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
108
  'no' => __('No', 'wp-hide-security-enhancer'),
 
109
  ),
110
  'default_value' => 'no',
111
 
@@ -121,8 +121,8 @@
121
 
122
  'input_type' => 'radio',
123
  'options' => array(
124
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
125
  'no' => __('No', 'wp-hide-security-enhancer'),
 
126
  ),
127
  'default_value' => 'no',
128
 
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
 
23
  'no' => __('No', 'wp-hide-security-enhancer'),
24
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
25
  ),
26
  'default_value' => 'no',
27
 
38
 
39
  'input_type' => 'radio',
40
  'options' => array(
 
41
  'no' => __('No', 'wp-hide-security-enhancer'),
42
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
43
  ),
44
  'default_value' => 'no',
45
 
62
 
63
  'input_type' => 'radio',
64
  'options' => array(
 
65
  'no' => __('No', 'wp-hide-security-enhancer'),
66
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
67
  ),
68
  'default_value' => 'no',
69
 
86
 
87
  'input_type' => 'radio',
88
  'options' => array(
 
89
  'no' => __('No', 'wp-hide-security-enhancer'),
90
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
91
  ),
92
  'default_value' => 'no',
93
 
104
 
105
  'input_type' => 'radio',
106
  'options' => array(
 
107
  'no' => __('No', 'wp-hide-security-enhancer'),
108
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
109
  ),
110
  'default_value' => 'no',
111
 
121
 
122
  'input_type' => 'radio',
123
  'options' => array(
 
124
  'no' => __('No', 'wp-hide-security-enhancer'),
125
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
126
  ),
127
  'default_value' => 'no',
128
 
modules/components/rewrite-new_include_path.php CHANGED
@@ -31,8 +31,8 @@
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
34
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
35
  'no' => __('No', 'wp-hide-security-enhancer'),
 
36
  ),
37
  'default_value' => 'no',
38
 
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
 
34
  'no' => __('No', 'wp-hide-security-enhancer'),
35
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  ),
37
  'default_value' => 'no',
38
 
modules/components/rewrite-new_plugin_path.php CHANGED
@@ -32,8 +32,8 @@
32
 
33
  'input_type' => 'radio',
34
  'options' => array(
35
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  'no' => __('No', 'wp-hide-security-enhancer'),
 
37
  ),
38
  'default_value' => 'no',
39
 
32
 
33
  'input_type' => 'radio',
34
  'options' => array(
 
35
  'no' => __('No', 'wp-hide-security-enhancer'),
36
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
37
  ),
38
  'default_value' => 'no',
39
 
modules/components/rewrite-new_theme_path.php CHANGED
@@ -57,8 +57,8 @@
57
 
58
  'input_type' => 'radio',
59
  'options' => array(
60
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
61
  'no' => __('No', 'wp-hide-security-enhancer'),
 
62
  ),
63
  'default_value' => 'no',
64
 
@@ -113,8 +113,8 @@
113
  ),
114
  'input_type' => 'radio',
115
  'options' => array(
116
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
117
  'no' => __('No', 'wp-hide-security-enhancer'),
 
118
  ),
119
  'default_value' => 'no',
120
 
57
 
58
  'input_type' => 'radio',
59
  'options' => array(
 
60
  'no' => __('No', 'wp-hide-security-enhancer'),
61
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
62
  ),
63
  'default_value' => 'no',
64
 
113
  ),
114
  'input_type' => 'radio',
115
  'options' => array(
 
116
  'no' => __('No', 'wp-hide-security-enhancer'),
117
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
118
  ),
119
  'default_value' => 'no',
120
 
modules/components/rewrite-new_upload_path.php CHANGED
@@ -32,8 +32,8 @@
32
 
33
  'input_type' => 'radio',
34
  'options' => array(
35
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  'no' => __('No', 'wp-hide-security-enhancer'),
 
37
  ),
38
  'default_value' => 'no',
39
 
32
 
33
  'input_type' => 'radio',
34
  'options' => array(
 
35
  'no' => __('No', 'wp-hide-security-enhancer'),
36
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
37
  ),
38
  'default_value' => 'no',
39
 
modules/components/rewrite-new_xml-rpc-path.php CHANGED
@@ -31,8 +31,8 @@
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
34
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
35
  'no' => __('No', 'wp-hide-security-enhancer'),
 
36
  ),
37
  'default_value' => 'no',
38
 
@@ -48,8 +48,8 @@
48
 
49
  'input_type' => 'radio',
50
  'options' => array(
51
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
52
  'no' => __('No', 'wp-hide-security-enhancer'),
 
53
  ),
54
  'default_value' => 'no',
55
 
@@ -65,8 +65,8 @@
65
 
66
  'input_type' => 'radio',
67
  'options' => array(
68
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
69
  'no' => __('No', 'wp-hide-security-enhancer'),
 
70
  ),
71
  'default_value' => 'no',
72
 
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
 
34
  'no' => __('No', 'wp-hide-security-enhancer'),
35
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  ),
37
  'default_value' => 'no',
38
 
48
 
49
  'input_type' => 'radio',
50
  'options' => array(
 
51
  'no' => __('No', 'wp-hide-security-enhancer'),
52
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
53
  ),
54
  'default_value' => 'no',
55
 
65
 
66
  'input_type' => 'radio',
67
  'options' => array(
 
68
  'no' => __('No', 'wp-hide-security-enhancer'),
69
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
70
  ),
71
  'default_value' => 'no',
72
 
modules/components/rewrite-root-files.php CHANGED
@@ -21,8 +21,8 @@
21
 
22
  'input_type' => 'radio',
23
  'options' => array(
24
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
25
  'no' => __('No', 'wp-hide-security-enhancer'),
 
26
  ),
27
  'default_value' => 'no',
28
 
@@ -37,8 +37,8 @@
37
 
38
  'input_type' => 'radio',
39
  'options' => array(
40
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
41
  'no' => __('No', 'wp-hide-security-enhancer'),
 
42
  ),
43
  'default_value' => 'no',
44
 
@@ -53,8 +53,8 @@
53
 
54
  'input_type' => 'radio',
55
  'options' => array(
56
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
57
  'no' => __('No', 'wp-hide-security-enhancer'),
 
58
  ),
59
  'default_value' => 'no',
60
 
@@ -80,8 +80,8 @@
80
 
81
  'input_type' => 'radio',
82
  'options' => array(
83
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
84
  'no' => __('No', 'wp-hide-security-enhancer'),
 
85
  ),
86
  'default_value' => 'no',
87
 
@@ -96,8 +96,8 @@
96
 
97
  'input_type' => 'radio',
98
  'options' => array(
99
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
100
  'no' => __('No', 'wp-hide-security-enhancer'),
 
101
  ),
102
  'default_value' => 'no',
103
 
@@ -113,8 +113,8 @@
113
 
114
  'input_type' => 'radio',
115
  'options' => array(
116
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
117
  'no' => __('No', 'wp-hide-security-enhancer'),
 
118
  ),
119
  'default_value' => 'no',
120
 
@@ -130,8 +130,8 @@
130
 
131
  'input_type' => 'radio',
132
  'options' => array(
133
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
134
  'no' => __('No', 'wp-hide-security-enhancer'),
 
135
  ),
136
  'default_value' => 'no',
137
 
21
 
22
  'input_type' => 'radio',
23
  'options' => array(
 
24
  'no' => __('No', 'wp-hide-security-enhancer'),
25
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
26
  ),
27
  'default_value' => 'no',
28
 
37
 
38
  'input_type' => 'radio',
39
  'options' => array(
 
40
  'no' => __('No', 'wp-hide-security-enhancer'),
41
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
42
  ),
43
  'default_value' => 'no',
44
 
53
 
54
  'input_type' => 'radio',
55
  'options' => array(
 
56
  'no' => __('No', 'wp-hide-security-enhancer'),
57
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
58
  ),
59
  'default_value' => 'no',
60
 
80
 
81
  'input_type' => 'radio',
82
  'options' => array(
 
83
  'no' => __('No', 'wp-hide-security-enhancer'),
84
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
85
  ),
86
  'default_value' => 'no',
87
 
96
 
97
  'input_type' => 'radio',
98
  'options' => array(
 
99
  'no' => __('No', 'wp-hide-security-enhancer'),
100
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
101
  ),
102
  'default_value' => 'no',
103
 
113
 
114
  'input_type' => 'radio',
115
  'options' => array(
 
116
  'no' => __('No', 'wp-hide-security-enhancer'),
117
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
118
  ),
119
  'default_value' => 'no',
120
 
130
 
131
  'input_type' => 'radio',
132
  'options' => array(
 
133
  'no' => __('No', 'wp-hide-security-enhancer'),
134
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
135
  ),
136
  'default_value' => 'no',
137
 
modules/components/rewrite-search.php CHANGED
@@ -31,8 +31,8 @@
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
34
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
35
  'no' => __('No', 'wp-hide-security-enhancer'),
 
36
  ),
37
  'default_value' => 'no',
38
 
31
 
32
  'input_type' => 'radio',
33
  'options' => array(
 
34
  'no' => __('No', 'wp-hide-security-enhancer'),
35
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
36
  ),
37
  'default_value' => 'no',
38
 
modules/components/rewrite-slash.php CHANGED
@@ -20,8 +20,8 @@
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
23
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
24
  'no' => __('No', 'wp-hide-security-enhancer'),
 
25
  ),
26
 
27
  'default_value' => 'no',
20
 
21
  'input_type' => 'radio',
22
  'options' => array(
 
23
  'no' => __('No', 'wp-hide-security-enhancer'),
24
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
25
  ),
26
 
27
  'default_value' => 'no',
modules/components/rewrite-wp_content_path.php CHANGED
@@ -33,8 +33,8 @@
33
 
34
  'input_type' => 'radio',
35
  'options' => array(
36
- 'yes' => __('Yes', 'wp-hide-security-enhancer'),
37
  'no' => __('No', 'wp-hide-security-enhancer'),
 
38
  ),
39
  'default_value' => 'no',
40
 
33
 
34
  'input_type' => 'radio',
35
  'options' => array(
 
36
  'no' => __('No', 'wp-hide-security-enhancer'),
37
+ 'yes' => __('Yes', 'wp-hide-security-enhancer'),
38
  ),
39
  'default_value' => 'no',
40
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.nsp-code.com/
4
  Tags: wordpress hide, hide, security, improve security, hacking, wp hide, custom login, wp-loging.php, wp-admin, admin hide, login change,
5
  Requires at least: 2.8
6
  Tested up to: 5.2.2
7
- Stable tag: 1.5.8
8
  License: GPLv2 or later
9
 
10
  Hide and increase Security for your WordPress site using smart techniques. No files are changed on your server. Change default admin and wp-login urls
@@ -17,7 +17,7 @@ The **easy way to completely hide your WordPress** core files, login page, theme
17
  No file and directory is being changed anywhere, everything is processed virtually! The plugin code use URL rewrite techniques and WordPress filters to apply all internal functionality and features. Everything is done automatically, there's no user intervention require at all.
18
 
19
  **Real hide of WordPress core files and plugins**
20
- The plugin not only allow to change default urls of you WordPress, but it hide/block defaults! Many similar code, just change the slugs, but the default are still accessible, obliviously revealing WordPress as CMS
21
 
22
  Change the default WordPress login urls from wp-admin and wp-login.php to something totally arbitrary. No one will ever know where to try to guess a login and hack into your site. Totally invisible !!
23
 
@@ -292,6 +292,12 @@ Please get in touch with us and we'll do our best to include it for a next versi
292
 
293
  == Changelog ==
294
 
 
 
 
 
 
 
295
  = 1.5.8 =
296
  * Add reserved option names to avoid conflicts e.g. wp
297
  * Always clear any code plugin cache when plugin update
4
  Tags: wordpress hide, hide, security, improve security, hacking, wp hide, custom login, wp-loging.php, wp-admin, admin hide, login change,
5
  Requires at least: 2.8
6
  Tested up to: 5.2.2
7
+ Stable tag: 1.5.8.2
8
  License: GPLv2 or later
9
 
10
  Hide and increase Security for your WordPress site using smart techniques. No files are changed on your server. Change default admin and wp-login urls
17
  No file and directory is being changed anywhere, everything is processed virtually! The plugin code use URL rewrite techniques and WordPress filters to apply all internal functionality and features. Everything is done automatically, there's no user intervention require at all.
18
 
19
  **Real hide of WordPress core files and plugins**
20
+ The plugin not only allow to change default urls of you WordPress, but it hide/block defaults! Other similar plugins, just change the slugs, but the default are still accessible, obliviously revealing WordPress as CMS
21
 
22
  Change the default WordPress login urls from wp-admin and wp-login.php to something totally arbitrary. No one will ever know where to try to guess a login and hack into your site. Totally invisible !!
23
 
292
 
293
  == Changelog ==
294
 
295
+ = 1.5.8.2 =
296
+ Ensure base slug (e.g. base_slug/slug ) is not being used for another option to prevent rewrite conflicts
297
+ Return correct home path when using own directory for WordPress and hosting account use the same slug in the path.
298
+ Relocated get_default_variables() function on a higher priority execution level, to get default system details.
299
+ Switched Yes / No options selection, to outputs first No then Yes ( more logical )
300
+
301
  = 1.5.8 =
302
  * Add reserved option names to avoid conflicts e.g. wp
303
  * Always clear any code plugin cache when plugin update
router/environment.php CHANGED
@@ -1,2 +1,2 @@
1
  <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
- $environment_variable = '{"theme":{"folder_name":"dani","mapped_name":"eereer2"},"allowed_paths":["F:\/htdocs\/wp-hide.dev\/wp-content\/themes"],"cache_path":"F:\/htdocs\/wp-hide.dev\/wp-content\/cache\/wph\/","wordpress_directory":"","site_relative_path":"\/"}' ?>
1
  <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2
+ $environment_variable = '{"theme":{"folder_name":"dani","mapped_name":"skin"},"allowed_paths":["F:\/htdocs\/wp-hide.dev\/wp-content\/themes"],"cache_path":"F:\/htdocs\/wp-hide.dev\/wp-content\/cache\/wph\/","wordpress_directory":"","site_relative_path":"\/"}' ?>
wp-hide.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://www.wp-hide.com/
5
  Description: Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
- Version: 1.5.8
9
  Text Domain: wp-hide-security-enhancer
10
  Domain Path: /languages/
11
  */
5
  Description: Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
+ Version: 1.5.8.2
9
  Text Domain: wp-hide-security-enhancer
10
  Domain Path: /languages/
11
  */