This document contains the content of /resources/docs/text/remove_pve_no_sub.txt. Download the file by setting the ?act=download parameter, or access the raw file at either srcs.cc or src.cerium.cc.
1 2 3 4 5 6 7 8 # This removes the "No valid subscription" notice from appearing after signing in to Proxmox VE web UI. # Tested on Proxmox VE 8.3.2. # Replaces JavaScript function with void to prevent displaying notice # Or use nano to search for "No valid subscription", then replace "Ext.Msg.show" on the previous line with "void" sed -i "/Ext.Msg.show({/{N;s/Ext.Msg.show\(({\s\+title:\s\+gettext('No valid subscription')\)/void\1/}" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js # Restarts service systemctl restart pveproxy.service More resources