<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WHM - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/whm/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/whm/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Wed, 09 Sep 2020 18:34:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>WHM - identity design</title>
	<link>https://blog.identitydesign.us/category/whm/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</title>
		<link>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/</link>
					<comments>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 09 Sep 2020 07:11:35 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WHM]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1292</guid>

					<description><![CDATA[<p>Upgrading your PHP version might be a requirement, when upgrading your WordPress to the latest version or any related plugins. My firewall tool recommended me to upgrade my WordPress, which I did, and I saw this warning message (below) with the website being down. I was proceeding PHP upgrade from version 5.6 to 7.4 using [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Upgrading your PHP version might be a requirement, when upgrading your WordPress to the latest version or any related plugins. My firewall tool recommended me to upgrade my WordPress, which I did, and I saw this warning message (below) with the website being down. I was proceeding PHP upgrade from version 5.6 to 7.4 using the MultiPHP Manager in Cpanel.</p>
<pre>Warning: Use of undefined constant WP_CONTENT_DIR – assumed ‘WP_CONTENT_DIR’ (this will throw an Error in a future version of PHP) in /home/XXXXX/public_html/wp-includes/load.php on line 115</pre>
<p>Let me get to the point straight. The error was occurred by the auto-generated PHP handler (ver 7.4) from .htaccess that was conflicting with another PHP handler (ver 5.6) that was running simultaneously in the server.  </p>
<h2>My old PHP handler looks like this:</h2>
<pre># Use PHP56 as default
AddHandler application/x-httpd-php56 .php
&lt;IfModule mod_suphp.c&gt;
    suPHP_ConfigPath /opt/php56/lib
&lt;/IfModule&gt;
</pre>
<h2>My new PHP handler looks like this:</h2>
<pre>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php74” package as the default “PHP” programming language.
&lt;IfModule mime_module&gt;
  AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
&lt;/IfModule&gt;
# php -- END cPanel-generated handler, do not edit
</pre>
<p>In my case, the upgrade from the MultiPHP Manager was generating the 7.4 PHP handler in the <code>public_html</code> folder, and my old PHP version 5.6 handler was already existed in the folder above <code>public_html</code> which is above the root directory. That was the reason it was causing the error. You can&#8217;t run multiple PHP handlers for a single website.</p>

<div class="clear"></div>
<p><strong>My solution</strong> was to simply remove (or rename if you don&#8217;t want to delete the file) the <code>.htaccess</code> file (PHP 5.6) from one level above the root directory. Now it works like a charm!</p><p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Temporarily Disable / Make a Website Offline in WHM</title>
		<link>https://blog.identitydesign.us/disable-website-whm/</link>
					<comments>https://blog.identitydesign.us/disable-website-whm/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 19 Jul 2020 06:07:09 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WHM]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1259</guid>

					<description><![CDATA[<p>Did you still not get paid yet? Are you going to end it up disabling your client&#8217;s website temporarily in WHM? Take one of your or multiple website down using a feature called &#8220;Manage Account Suspension&#8221; under &#8220;Account Functions&#8221;. Temporarily Disabling a Website in Steps Select the website you wish to disable temporarily Click &#8220;Suspend&#8221;. [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/disable-website-whm/">Temporarily Disable / Make a Website Offline in WHM</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/disable-website-whm/">Temporarily Disable / Make a Website Offline in WHM</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Did you still not get paid yet? Are you going to end it up disabling your client&#8217;s website temporarily in WHM? Take one of your or multiple website down using a feature called &#8220;Manage Account Suspension&#8221; under &#8220;Account Functions&#8221;.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM.jpg" rel="attachment wp-att-1262"><img fetchpriority="high" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM.jpg" alt="Managed Suspension" width="779" height="359" class="alignnone size-full wp-image-1262" srcset="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM.jpg 779w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM-300x138.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM-768x354.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.04-PM-624x288.jpg 624w" sizes="(max-width: 779px) 100vw, 779px" /></a></p>
<h2>Temporarily Disabling a Website in Steps</h2>
<ol>
<li>Select the website you wish to disable temporarily</li>
<li>Click &#8220;Suspend&#8221;.</li>
<li>If you wish to unsuspend the website, go to &#8220;List Suspended Accounts&#8221; under &#8220;Account Information&#8221; and click &#8220;Unsuspend&#8221;.</li>
</ol>

<div class="clear"></div>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM.jpg" rel="attachment wp-att-1261"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM.jpg" alt="Suspended Accounts" width="929" height="197" class="alignnone size-full wp-image-1261" srcset="https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM.jpg 929w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM-300x64.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM-768x163.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2020/07/Screen-Shot-2020-07-18-at-10.56.49-PM-624x132.jpg 624w" sizes="(max-width: 929px) 100vw, 929px" /></a></p><p>The post <a href="https://blog.identitydesign.us/disable-website-whm/">Temporarily Disable / Make a Website Offline in WHM</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/disable-website-whm/">Temporarily Disable / Make a Website Offline in WHM</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/disable-website-whm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
