• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Number of Web presence builder used

SalvadorS

Regular Pleskian
Hello,

I have a Plesk 12.0 license and 10 web presence builder licenses as add-on. But I don't know how many are used and how many are free in order to update the license or not. Where I can know this?

Thanks a lot
 
In Plesk database you can see number of your WPB sites with following SQL query:

mysql> select count(*) from SBSites;
 
Are you sure that you run correct command?

[root@ppu12-0 ~]# plesk db
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 833
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> select count(*) from SBSites;
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.00 sec)
 
Back
Top