• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Question Disable Smart static files processing

Wes

New Pleskian
Hi,

Is it possible to disable Smart static files processing for all domains on a plesk server?

I am having some issues with nginx and want to troubleshoot the problem.

To troubleshoot I need to activate NGINX but that will result in downtime of some websites.

So to minimize the downtime, I want to disable Smart static files processing for all the websites.
 
I found this topic while looking for a solution to this question on Plesk 17. It is not very attractive to click through every domain to update this setting.

Here is one way to automate this. YMMV:

- Tools & Settings
- Database Servers
- On the right side of the "Databases" column, click on the tools icon. phpMyAdmin will open.
- Select the SQL tab.

execute: UPDATE `psa`.`WebServerSettingsParameters` SET value = 'false' WHERE name = 'nginxTransparentMode'

- Open a command line (SSH).

run: /usr/local/psa/admin/sbin/httpdmng --reconfigure-all

Please be certain of what you are doing before you run SQL or command-line programs.
 
I think that "UPDATE `psa`.`WebServerSettingsParameters` SET value = 'false' WHERE name = 'nginxTransparentMode' " is not the way, because if I run a select query to see which domains are with this field equal to "true", there are none. And I have all the domains with Smart static files processing.
 
Back
Top