TagDiv Composer Conflicts with Host Security Settings

Posted in: Newspaper
Post count: 364

Hi,

Security settings at my host (nginx server) cause a conflict with Tagdiv Composer (text editor not working anymore). Can you please tell me which of the following rules will conflict with Tagdiv Composer:

## WP Defender

# Stop php access except to needed files in wp-includes
location ~* ^/{FOLDER}wp-includes/.*(?<!(js/tinymce/wp-tinymce))\.php$ {
internal; #internal allows ms-files.php rewrite in multisite to work
}

# Specifically locks down upload directories in case full wp-content rule below is skipped
location ~* /{FOLDER}(?:uploads|files)/.*\.php$ {
deny all;
}

# Deny direct access to .php files in the /wp-content/ directory (including sub-folders). # Note this can break some poorly coded plugins/themes, replace the plugin or remove this block if it causes trouble
location ~* ^/{FOLDER}wp-content/.*\.php$ {
deny all;
}

# Turn off directory indexing
autoindex off;

# Kills the LetsEncrypt acme challenge
# # Deny access to htaccess and other hidden files
# location ~ /{FOLDER}\. {
# deny all;
# }

# Deny access to wp-config.php file
location = /{FOLDER}wp-config.php {
deny all;
}

# Deny access to revealing or potentially dangerous files in the /wp-content/ directory (including sub-folders)
location ~* ^/{FOLDER}wp-content/.*\.(md|exe|sh|bak|inc|pot|po|mo|log|sql)$ {
deny all;
}

## WP Defender - End ##

Thanks!

Post count: 21065

Hello!

Give it a test, try to modify and remove first rule.
If the problem is still there, then you can contact us via email at contact@tagdiv.com and provide the following:
– admin url and credentials
– cPanel url and credentials
– a link to this topic in order to identify you
Our team will take a look !

Thank you!

Post count: 6

Hi do you find solution?

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.