<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install PHP 7.4 on on Rocky Linux and AlmaLinux	</title>
	<atom:link href="https://www.tecmint.com/install-php-7-on-rocky-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-php-7-on-rocky-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 27 Jun 2024 04:27:45 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-2184536</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 27 Jun 2024 04:27:45 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=43233#comment-2184536</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-2184385&quot;&gt;sib&lt;/a&gt;.

@Sib

&lt;strong&gt;PHP 7&lt;/strong&gt; has reached its end of life (EOL). As of November 28, 2022, &lt;strong&gt;PHP 7.4&lt;/strong&gt;, the last release in the PHP 7 series, is no longer receiving security updates or support. 

This means it&#039;s recommended to upgrade to &lt;strong&gt;PHP 8.x&lt;/strong&gt; for continued security updates and support.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-2184385">sib</a>.</p>
<p>@Sib</p>
<p><strong>PHP 7</strong> has reached its end of life (EOL). As of November 28, 2022, <strong>PHP 7.4</strong>, the last release in the PHP 7 series, is no longer receiving security updates or support. </p>
<p>This means it&#8217;s recommended to upgrade to <strong>PHP 8.x</strong> for continued security updates and support.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sib		</title>
		<link>https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-2184385</link>

		<dc:creator><![CDATA[sib]]></dc:creator>
		<pubDate>Wed, 26 Jun 2024 13:10:15 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=43233#comment-2184385</guid>

					<description><![CDATA[&lt;code&gt;dnf module list php&lt;/code&gt; shows only &lt;strong&gt;PHP 8.1&lt;/strong&gt; and &lt;strong&gt;8.2&lt;/strong&gt;, no version 7 anymore.]]></description>
			<content:encoded><![CDATA[<p><code>dnf module list php</code> shows only <strong>PHP 8.1</strong> and <strong>8.2</strong>, no version 7 anymore.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-1603357</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 06 Oct 2021 04:51:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=43233#comment-1603357</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-1603058&quot;&gt;Cris&lt;/a&gt;.

@Cris,

Thanks for the useful tip.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-1603058">Cris</a>.</p>
<p>@Cris,</p>
<p>Thanks for the useful tip.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Cris		</title>
		<link>https://www.tecmint.com/install-php-7-on-rocky-linux/comment-page-1/#comment-1603058</link>

		<dc:creator><![CDATA[Cris]]></dc:creator>
		<pubDate>Tue, 05 Oct 2021 21:04:22 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=43233#comment-1603058</guid>

					<description><![CDATA[You may get an error like this:

 [user@localhost ~]$ sudo dnf module enable php:7.4                                                                       
 Last metadata expiration check: 2:14:26 ago on Tue 05 Oct 2021 08:30:16 PM CEST.                                                   
 Dependencies resolved.                                                                                                            
 The operation would result in the switching of module &#039;php&#039; stream &#039;7.2&#039; to stream &#039;7.4&#039;                                               
 Error: It is not possible to switch enabled streams of a module.          
                                                      
It is recommended to remove all installed content from the module, and reset the module using the &#039;dnf module reset &#039; command. After you reset the module, you can install the other stream.

If you do, you can fix it with these commands:
&lt;pre&gt;
 [user@localhost ~]$ sudo dnf module reset php
 [user@localhost ~]$ sudo dnf module enable php:7.4
 [user@localhost ~]$ sudo dnf module switch-to php:7.4
&lt;/pre&gt;
Hope this helps]]></description>
			<content:encoded><![CDATA[<p>You may get an error like this:</p>
<p> [user@localhost ~]$ sudo dnf module enable php:7.4<br />
 Last metadata expiration check: 2:14:26 ago on Tue 05 Oct 2021 08:30:16 PM CEST.<br />
 Dependencies resolved.<br />
 The operation would result in the switching of module &#8216;php&#8217; stream &#8216;7.2&#8217; to stream &#8216;7.4&#8217;<br />
 Error: It is not possible to switch enabled streams of a module.          </p>
<p>It is recommended to remove all installed content from the module, and reset the module using the &#8216;dnf module reset &#8216; command. After you reset the module, you can install the other stream.</p>
<p>If you do, you can fix it with these commands:</p>
<pre>
 [user@localhost ~]$ sudo dnf module reset php
 [user@localhost ~]$ sudo dnf module enable php:7.4
 [user@localhost ~]$ sudo dnf module switch-to php:7.4
</pre>
<p>Hope this helps</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
