• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

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