• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Switch all domains to use dedicated application pools

It was not tested but I think that it should work fine for Plesk 11.
 
Just a FYI, Step B "switch_all_subscriptions_to_dedicated_pool"...
This script has a syntax error on line 8 (states "and and").

change the code from this:
Code:
mysql -uadmin -p%p% -P8306 psa -Ne"select d.name,d.id from domains d, dom_param dp where dp.dom_id=d.id and and dp.param='iis_app_pool' and dp.val='false'" > "c:\dom_params.sql"

to this, to make it work:
Code:
mysql -uadmin -p%p% -P8306 psa -Ne"select d.name,d.id from domains d, dom_param dp where dp.dom_id=d.id and dp.param='iis_app_pool' and dp.val='false'" > "c:\dom_params.sql"

(Note: This does appear to work with Plesk 11)
 
Back
Top