<?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>Server Management Tips by SupportPRO &#187; Server Tweaking</title>
	<atom:link href="http://blog.supportpro.com/category/server-tweaking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.supportpro.com</link>
	<description>SupportPRO Blog</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:47:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to fix error &#8220;PHP has encountered an Access Violation at 7D611952&#8243;</title>
		<link>http://blog.supportpro.com/2011/07/how-to-fix-error-php-has-encountered-an-access-violation-at-7d611952/</link>
		<comments>http://blog.supportpro.com/2011/07/how-to-fix-error-php-has-encountered-an-access-violation-at-7d611952/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 10:00:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Tweaking]]></category>

		<guid isPermaLink="false">http://blog.supportpro.com/?p=498</guid>
		<description><![CDATA[You can fix this by correcting the PATH in Environment variables. 
PATH   %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\system32\wbem;C:\Program Files\Intel\DMIX;C:\Program Files\ClarisoftTechnologies\iMonitorPC;C:\Program Files\QuickTime\QTSystem
Change the above line as bellow
PATH  C:\php;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\system32\wbem;C:\Program Files\Intel\DMIX;C:\Program Files\ClarisoftTechnologies\iMonitorPC;C:\Program Files\QuickTime\QTSystem
]]></description>
		<wfw:commentRss>http://blog.supportpro.com/2011/07/how-to-fix-error-php-has-encountered-an-access-violation-at-7d611952/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix “/bin/mv: Argument list too long” error</title>
		<link>http://blog.supportpro.com/2011/04/how-to-fix-%e2%80%9cbinmv-argument-list-too-long%e2%80%9d-error/</link>
		<comments>http://blog.supportpro.com/2011/04/how-to-fix-%e2%80%9cbinmv-argument-list-too-long%e2%80%9d-error/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 05:47:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Tweaking]]></category>

		<guid isPermaLink="false">http://blog.supportpro.com/?p=485</guid>
		<description><![CDATA[If you are trying to move large number of files such as more than 50000 files using the command mv, you will get the error given below.
[root@server /]# mv * /path/to/move
&#8220;/bin/mv: Argument list too long&#8221;
In such cases, you can use the command given below to avoid this error ,
find /path/to/file -type f &#124; xargs -i [...]]]></description>
		<wfw:commentRss>http://blog.supportpro.com/2011/04/how-to-fix-%e2%80%9cbinmv-argument-list-too-long%e2%80%9d-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable IP rotation in exim</title>
		<link>http://blog.supportpro.com/2011/04/how-to-enable-ip-rotation-in-exim/</link>
		<comments>http://blog.supportpro.com/2011/04/how-to-enable-ip-rotation-in-exim/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 05:06:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Tweaking]]></category>

		<guid isPermaLink="false">http://blog.supportpro.com/?p=483</guid>
		<description><![CDATA[If your server are having multiple IP address and you want to send each emails in different IP, then please follow the steps. This is used to maintain the ip reputation. Also, please make sure that this is not used for spamming.
1. vi /etc/exim.conf
2. Search for the line : interface =
3. Replace this line with [...]]]></description>
		<wfw:commentRss>http://blog.supportpro.com/2011/04/how-to-enable-ip-rotation-in-exim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear Cache Memory in Linux Without Rebooting</title>
		<link>http://blog.supportpro.com/2011/04/clear-cache-memory-in-linux-without-rebooting/</link>
		<comments>http://blog.supportpro.com/2011/04/clear-cache-memory-in-linux-without-rebooting/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 04:41:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Tweaking]]></category>

		<guid isPermaLink="false">http://blog.supportpro.com/?p=481</guid>
		<description><![CDATA[You can forcefully clear the Cache in Ram using the syctl.
root@twenty ~]# sync &#038;&#038; sudo sysctl -w vm.drop_caches=3 &#038;&#038; sudo sysctl -w vm.drop_caches=0
1. sync &#8211;>  Pending cache is flushed onto disk
2. sysctl -w vm.drop_caches = 3 &#8211;>  Clear all caches
3. sysctl -w vm.drop_caches = 0 &#8211;> Reset the drop_caches to no clearing
]]></description>
		<wfw:commentRss>http://blog.supportpro.com/2011/04/clear-cache-memory-in-linux-without-rebooting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Issue with Rvsitebuilder</title>
		<link>http://blog.supportpro.com/2011/03/issue-with-rvsitebuilder/</link>
		<comments>http://blog.supportpro.com/2011/03/issue-with-rvsitebuilder/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 10:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Server Tweaking]]></category>

		<guid isPermaLink="false">http://blog.supportpro.com/?p=461</guid>
		<description><![CDATA[If you are getting error while accessing the Rvsitebuilder from cpanel
====================
Fatal error:
The encoded file /var/cpanel/rvglobalsoft/rvsitebuilder/www/ionctestlicense.php requires a license file.
The license file /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic has expired. in Unknown on line 0
=====================
Then Please login to the server through root and execute.
========
root@server[#]rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic
root@server[#] rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder-pro.lic
root@server[#] perl /usr/local/cpanel/whostmgr/docroot/cgi/rvsitebuilderinstaller/autoinstaller.cgi
========
This will fix the issue
]]></description>
		<wfw:commentRss>http://blog.supportpro.com/2011/03/issue-with-rvsitebuilder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

