• 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

Question Commandline utilities

Just use this SQL query:

select clients.login, domains.name from domains,clients where domains.cl_id=clients.id and type='reseller';
 
Or you can get a list of domains belonging to a specific reseller:

select clients.pname, domains.name from domains,clients where domains.cl_id=clients.id and type='reseller'and pname='John Doe';
 
Back
Top