Jun 11, 2025

Proxmox VE : Turn Off "No Valid Subscription" Message

This "No Valid Subscription" message will be displayed on each login in Proxmox VE server. Some Hobbyist may find it annoying at times.

Disabling this message is NOT recommended for Users with valid subscriptions and on Production servers. It is only for Home Lab environment.


1. First, login via SSH to Proxmox VE server.


2. Change the working directory to :-

cd /usr/share/javascript/proxmox-widget-toolkit


3. Make a backup of the following file.

cp proxmoxlib.js proxmoxlib.js.bak


4. Search for the following block of code.


if (res === null || undefined || !res || res
     .data.status.toLowerCase() !== 'active') {
     Ext.Msg.show({
               title: gettext('No valid subscription'),
               icon: Ext.Msg.WARNING,
               message: Proxmox.Utils.getNoSubKeyHtml(res.data.url),
               buttons: Ext.Msg.OK,
               callback: function(btn) {
                     if (btn !== 'ok') {
                          return;



5. Modify the block of code as show below.


if (false) {
     Ext.Msg.show({
               title: gettext('No valid subscription'),
               icon: Ext.Msg.WARNING,
               message: Proxmox.Utils.getNoSubKeyHtml(res.data.url),
               buttons: Ext.Msg.OK,
               callback: function(btn) {
                     if (btn !== 'ok') {
                          return;



6. Proceed to save the configuration and exit.


7. Now, restart PVE service as shown below.

systemctl restart pveproxy


8. Next, login back to Proxmox VE Web UI and upon successful login, the "No Valid Subscription" message is longer displayed.








!!! HAPPY COMPUTING !!!