Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Last active February 18, 2024 21:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save AkashRajvanshi/42b8a0045092f036c57bb2fca91defbb to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/42b8a0045092f036c57bb2fca91defbb to your computer and use it in GitHub Desktop.
# Proxmox 6.2 and UP
# STEP1 - ssh to your proxmox server
# STEP2 - go to this dir
$ cd /usr/share/javascript/proxmox-widget-toolkit/
# STEP3 - create a backup of you proxmoxlib.js
$ cp proxmoxlib.js proxmoxlib.js.bak
# STEP3 - now edit proxmoxlib.js
$ vim proxmoxlib.js
# Search for
Ext.Msg.show({
title: gettext('No valid subscription'),
# Replace with
void({
title: gettext('No valid subscription'),
# STEP4 - Restart preproxy service
$ systemctl restart pveproxy.service
# To Check ( it'ss working or not )
$ grep -n -B 1 'No valid sub' proxmoxlib.js
# Note: After this clear browser cache and restart the browser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment