That's a little tricky...
If you want *all* your domains to automatically open in the Home page rather than in the Desktop page, you could try to do a sql sentence to modify the parameters.
Here comes the explanation...
There is a table called Permissions in your psa table. For each client, there are two options related to the Desktop and the Home page.
Example one: Client number 3 can access both the Desktop and the Home page. There should be two records in Permissions that look like this
id --- permission --- value
3 --- dashboard --- true
3 --- stdgui --- true
Example two: Client number 2 can access the Desktop but not the Home page. Then, those two records would appear:
id --- permission --- value
2 --- dashboard --- true
2 --- stdgui --- false
That is, the
dashboard permission makes reference to the Desktop page while the
stdgui permission makes reference to the Home page. So all you have to do is modify those two values for each of your clients.
If you want *all* your clients to have direct access to the Home page while not being able to see the Desktop page.
PHP:
update Permissions set value='true' where permission='stdgui'
update Permissions set value='false' where permission='dashboard'
You could add a statement to the where clausule like
to modify the clients number 1, 2 and 7
or a statement like
to modify the clients from 1 to 150
Disclaimer: Remember that, no matter how may I know or ignore about Plesk, this solution comes with no warranty. Also, remember that dealing with the database to modify the options in Plesk is the most dangerous way to deal with Plesk. Last, but not least, take in care that I am not part of Plesk. I'm just a user like you
