• 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

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