• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Wordpress tools security problem

fd_paz

Basic Pleskian
Hi,
I have Plesk Onyx Version 17.8.11 Update #37 with WordPress Toolkit Version: 3.5.5-1377.

Two days ago I clicked on "Secure" button to solve security problems of my website. Since I did this, my site backend and even frontend do not display properly, especially the images are not displayed and Media Library does not work properly.
I checked the permissions, and all the folders are 755 and the files 644. I also did "Revert" security (all fields available), but the site does not work.
I cloned the same content and the same db on another domain and everything worked.
I would like to know what the problem is and how can I fix it?

Thank you
 
Please try to add this line BEFORE the first occurance of a "require_once()" in wp-config.php:
Code:
define('CONCATENATE_SCRIPTS', false);
 
Please try to add this line BEFORE the first occurance of a "require_once()" in wp-config.php:
Code:
define('CONCATENATE_SCRIPTS', false);

Please try to add this line BEFORE the first occurance of a "require_once()" in wp-config.php:
Code:
define('CONCATENATE_SCRIPTS', false);
thank you.
adding "define('CONCATENATE_SCRIPTS', false);" doesn't work. But adding "define('CONCATENATE_SCRIPTS', true);" works partially backend. Media Library is not displayed at all and frontend is brocked.
 
This type of issue is normally caused by unsecure or faulty plugins. When you activate all the security settings, they also include things like prohibiting PHP code execution from the wp-content and wp-include directories. When a plugin with malware or simply one that is not properly developed for Wordpress is used, it will discontinue to work, because its code cannot be executed any longer. I think the only way to solve it is to disable all plugins and re-activate them one by one to find out, which one is causing the problem. There is a chance, too, that the theme you are using is causing the issues. Please also see this article on it: WordPress theme customization is shown without CSS
 
Back
Top