• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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