Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
To continue sharing your ideas and feedback, please visit features.plesk.com
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"