• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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