Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-content/plugins/really-simple-ssl/security
NameTypeSizeActions
📁 .. Folder -
📄 class-rsssl-htaccess-file-manager.php File 20985
Edit Download
📄 cron.php File 4169
Edit Download
📄 deactivate-integration.php File 1611
Edit Download
📄 firewall-manager.php File 22754
Edit Download
📄 functions.php File 20506
Edit Download
📄 hardening.php File 2260
Edit Download
📁 includes Folder -
📄 index.php File 32
Edit Download
📄 integrations.php File 4813
Edit Download
📄 notices.php File 6174
Edit Download
📄 security.php File 1805
Edit Download
📁 server Folder -
📄 sync-settings.php File 2860
Edit Download
📁 tests Folder -
📄 tests.php File 13704
Edit Download
📁 wordpress Folder -
'default', 'title' => __( "Debug.log", 'really-simple-ssl' ), 'text' => __( "Changed debug.log location to:", 'really-simple-ssl' ) . $location, ]; } } } if ( $field_id === 'disable_indexing' ) { if ( ! rsssl_directory_indexing_allowed() && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'disable_anyone_can_register' ) { if ( ! get_option( 'users_can_register' ) && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'disable_http_methods' ) { if ( ! rsssl_http_methods_allowed() && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'disable_file_editing' ) { if ( defined( 'DISALLOW_FILE_EDIT' ) && DISALLOW_FILE_EDIT && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'block_code_execution_uploads' ) { if ( ! rsssl_code_execution_allowed() && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'disable_xmlrpc' ) { if ( ! rsssl_xmlrpc_enabled() && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } if ( $field_id === 'rename_db_prefix' ) { if ( ! rsssl_is_default_wp_prefix() && ! ( $field['value'] ?? false ) ) { $field['value'] = true; $field['disabled'] = true; } } return $field; } add_filter('rsssl_field', 'rsssl_disable_fields', 10, 2);