<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Alexis Nieto</title>
    <description>The latest articles on DEV Community by Alexis Nieto (@alexis-nieto).</description>
    <link>https://dev.to/alexis-nieto</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3085845%2Fb1bbd543-d041-4a56-a7e9-75449901fc09.jpeg</url>
      <title>DEV Community: Alexis Nieto</title>
      <link>https://dev.to/alexis-nieto</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alexis-nieto"/>
    <language>en</language>
    <item>
      <title>Disable the "No Valid Subscription" Pop-Up in Proxmox VE 8.4.1</title>
      <dc:creator>Alexis Nieto</dc:creator>
      <pubDate>Thu, 24 Apr 2025 19:55:05 +0000</pubDate>
      <link>https://dev.to/alexis-nieto/disable-the-no-valid-subscription-pop-up-in-proxmox-ve-841-5fao</link>
      <guid>https://dev.to/alexis-nieto/disable-the-no-valid-subscription-pop-up-in-proxmox-ve-841-5fao</guid>
      <description>&lt;h2&gt;
  
  
  Intro
&lt;/h2&gt;

&lt;p&gt;While the steps outlined in this guide can help home users suppress the "No valid subscription" pop-up, it is important to note that subscribing to Proxmox supports the ongoing development and improvement of the platform.&lt;/p&gt;

&lt;p&gt;By subscribing, home users benefit from a reliable tool for managing virtual machines and containers, along with the peace of mind that comes from professional support and regular updates.&lt;/p&gt;

&lt;p&gt;Supporting Proxmox with an authentic subscription is vital for maintaining a stable and secure virtualization environment, especially for home users.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.proxmox.com/en/products/proxmox-virtual-environment/pricing" rel="noopener noreferrer"&gt;Proxmox Subscription Plans&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Steps
&lt;/h2&gt;

&lt;p&gt;When an active subscription is not present, the Proxmox VE 8.4.1 interface displays a persistent "No valid subscription" pop-up. To disable this notification, follow the steps below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbghw1y5czpn831h3mt0m.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbghw1y5czpn831h3mt0m.png" alt="Image 1" width="800" height="173"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Connect to Your Proxmox Server via SSH:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Establish an SSH connection to your Proxmox server using the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ssh &lt;span class="o"&gt;[&lt;/span&gt;user]@[server-ip]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Edit the JavaScript File:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Locate and edit the &lt;code&gt;/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js&lt;/code&gt; file. Before making any changes, create a backup of the original file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cp /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js~
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open the file with a text editor such as nano or vim:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;vim /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Modify the JavaScript Code:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Search for the string &lt;code&gt;No valid&lt;/code&gt;. This will guide you to the relevant section of the code. Specifically, locate the line containing:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.data.status.toLowerCase() !== 'active') {&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;As of 2025-04-24, this is line #565&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa1979avlbjq9goqjli4f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa1979avlbjq9goqjli4f.png" alt="Image 2" width="568" height="94"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Modify this line by removing the exclamation mark, changing it to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;status&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toLowerCase&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;active&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save changes and exit.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Reload the Web Interface:&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Reload or reopen the Proxmox web interface. The "No valid subscription" message should no longer appear.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/JRe7RhB-GBY" rel="noopener noreferrer"&gt;Source: "Jeff's Computer Service" Youtube Video&lt;/a&gt;&lt;/p&gt;

</description>
      <category>virtualmachine</category>
      <category>devops</category>
      <category>tutorial</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
