• I am using your plugin and, after evaluating all features, I think they could be improved, as follows:

    SETTINGS (DATABASE BACKUP)
    You should have an option, here, to backup the entire database of the multisite installation. Presently, the backup is “per site” only.

    SETTINGS (.HTACCESS AND WP-CONFIG)
    I don’t understand why the backup process is different for the two files, .htaccess and wp-config. Perhaps would be a good idea if we could have both options (backup on the server and download), for both files.

    SETTINGS (WP Meta Info)
    WP Meta Info “hiding” needs to be configured for every site, in a multisite installation. I think it would be better if we had to configure it once, on the main/root site (like many others configurations).

    Besides, this configuration is not enough to hide WordPress version info: I can still see this information, when I press Ctrl+U and take a look at the source code of the page, even with this feature turned on. I can hide completely the version information, if I edit the functions.php file of the theme, and add the following lines:

    // remove wp version meta tag and from rss feed
    function at_remove_wp_ver_meta_rss() {
    return ”;
    }
    add_filter( ‘the_generator’, ‘at_remove_wp_ver_meta_rss’ );
    // remove wp version param from any enqueued scripts
    function at_remove_wp_ver_css_js( $src ) {
    if ( strpos( $src, ‘ver=’ ) )
    $src = remove_query_arg( ‘ver’, $src );
    return $src;
    }
    add_filter( ‘style_loader_src’, ‘at_remove_wp_ver_css_js’, 9999 );
    add_filter( ‘script_loader_src’, ‘at_remove_wp_ver_css_js’, 9999 );

    LOGIN LOCKDOWN
    I have a site, with a social network/forum built with BuddyPress. So, many users need to login on the site (not only the administrator). So, blocking an entire IP range has terrible effects, in this case: many user are blocked at the same time, for the error of one!. So, I think it would be better if we have an option to block just the guilty IP, an not the entire range. Of course, you could let “blocking an entire range” as the default of the configs (for most users, this is the better choice).

    WHOIS LOOKUP
    This service is being blocked by the proxy server of my corporation. If you indicate on the page the address of this service, perhaps I could ask them to release the access to this specific address.

    FIREWALL SETTINGS
    The “Limit file upload size (10MB).” should be optional or, alternatively, the file size should be adjustable by the user. If, for any reason, I must have a limit of 20MB, I am obligated to deprive myself of using all others settings (1, 2 and 4), as this settings are a “combo”

    MAINTENANCE PAGE
    You should have an option to show a maintenance page for the entire network (and not only for one site).

    More: I realized some tests with this resource and, I noticed that the maintenance page remains being shown, even when I disable this option, and even after a browser cache deleting.

    https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Feature request/suggestions’ is closed to new replies.