Posts

Showing posts from July, 2024

Remove Proxmox Subscription Popup

Image
  remove the alert popup message without buying it Promox: No valid subscription message popup Intro Sometimes, the popup message — “No valid subscription” bothers me. Fortunately, the popup window only show up only during the initial login. Today, I got curios if there is a way what brings up the popup? In the javascript, ` /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js `, there is a logic checking the subscription by making API call to Proxmox. If there is no valid subscription, then “No valid subscription” will popup. Here is the logic in the  proxmoxlib.js checked_command : function ( orig_cmd ) { Proxmox . Utils . API2Request ( { url : '/nodes/localhost/subscription' , method : 'GET' , failure : function ( response, opts ) { Ext . Msg . alert ( gettext ( 'Error' ), response. htmlStatus ); }, success : function ( response, o