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.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
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"