<?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>Support facility &#187; Install</title>
	<atom:link href="http://www.supportfacility.com/blog/category/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportfacility.com/blog</link>
	<description>Your outsourcing partner!</description>
	<lastBuildDate>Wed, 02 Nov 2011 14:26:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Install PDFlib PHP on cPanel Dedicated server</title>
		<link>http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/</link>
		<comments>http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 10:43:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=94</guid>
		<description><![CDATA[One web developer contacted us and requested us to install PDFlib on their cPanel dedicated server which has PHP 5. As you must be knowing that PDFlib is not supported in the current cPanel easyapache, and especially with PHP 5 so we installed PDFlib Lite manually for him. Here is how we had installed it [...]]]></description>
			<content:encoded><![CDATA[<p>One web developer contacted us and requested us to install PDFlib on their cPanel dedicated server which has PHP 5. As you must be knowing that PDFlib is not supported in the current cPanel easyapache, and especially with PHP 5 so we installed PDFlib Lite manually for him. Here is how we had installed it for them:</p>
<p>Download the pacakge, their official site is www.pdflib.com</p>
<pre><code>root@server# wget http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-7.0.3.tar.gz
root@server#  tar xvzf PDFlib-Lite-7.0.3.tar.gz
root@server#  cd PDFlib-Lite-7.0.3
root@server#  ./configure --prefix=$HOME/usr --without-java
root@server#  make
root@server#  make install</code></pre>
<p>Once this is done, we built PDFlib DSO by the below commands:</p>
<pre><code>root@server#  cd ~/tmp
root@server#  pecl download pdflib
root@server#  tar xvzf pdflib-*.tgz
root@server#  cd pdflib-*
root@server#  phpize
root@server#  ./configure --with-pdflib=$HOME/usr
root@server#  make
root@server#  make test</code></pre>
<p>Then, copied the PDFlib extensions to a seperate directory:</p>
<pre><code>root@server#  cd ~
root@server#  mkdir extensions
root@server#  cp ~/tmp/pdflib-*/modules/pdf.so ~/extensions</code></pre>
<p>Added the extensions in the php.ini using the below steps:</p>
<pre><code>root@server#   php -i | grep php.ini
Configuration File (php.ini) Path =&gt; /usr/local/lib
Loaded Configuration File =&gt; /usr/local/lib/php.ini</code></pre>
<p>Add the below line in php.ini</p>
<pre><code>root@server#  nano /usr/local/lib/php.ini

extension_dir = "/root/extensions"
extension = "pdf.so"</code></pre>
<p>Save php.ini file<br />
Create a test PHP file under your domain to check if it works, below is the test code:</p>
<blockquote><p><code><br />
&lt;?php</code></p>
<p>try {<br />
$p = new PDFlib();</p>
<p>/*  open new PDF file; insert a file name to create the PDF on disk */<br />
if ($p-&gt;begin_document(&#8220;&#8221;, &#8220;&#8221;) == 0) {<br />
die(&#8220;Error: &#8221; . $p-&gt;get_errmsg());<br />
}</p>
<p>$p-&gt;set_info(&#8220;Creator&#8221;, &#8220;hello.php&#8221;);<br />
$p-&gt;set_info(&#8220;Author&#8221;, &#8220;Rainer Schaaf&#8221;);<br />
$p-&gt;set_info(&#8220;Title&#8221;, &#8220;Hello world (PHP)!&#8221;);</p>
<p>$p-&gt;begin_page_ext(595, 842, &#8220;&#8221;);</p>
<p>$font = $p-&gt;load_font(&#8220;Helvetica-Bold&#8221;, &#8220;winansi&#8221;, &#8220;&#8221;);</p>
<p>$p-&gt;setfont($font, 24.0);<br />
$p-&gt;set_text_pos(50, 700);<br />
$p-&gt;show(&#8220;Hello world!&#8221;);<br />
$p-&gt;continue_text(&#8220;(says PHP)&#8221;);<br />
$p-&gt;end_page_ext(&#8220;&#8221;);</p>
<p>$p-&gt;end_document(&#8220;&#8221;);</p>
<p>$buf = $p-&gt;get_buffer();<br />
$len = strlen($buf);</p>
<p>header(&#8220;Content-type: application/pdf&#8221;);<br />
header(&#8220;Content-Length: $len&#8221;);<br />
header(&#8220;Content-Disposition: inline; filename=hello.pdf&#8221;);<br />
print $buf;<br />
}<br />
catch (PDFlibException $e) {<br />
die(&#8220;PDFlib exception occurred in hello sample:\n&#8221; .<br />
&#8220;[" . $e-&gt;get_errnum() . "] &#8221; . $e-&gt;get_apiname() . &#8220;: &#8221; .<br />
$e-&gt;get_errmsg() . &#8220;\n&#8221;);<br />
}<br />
catch (Exception $e) {<br />
die($e);<br />
}<br />
$p = 0;<br />
?&gt;</p></blockquote>
<p>You need to get the below output in PDF format within your browser.</p>
<pre>Hello world!
(Says PHP)</pre>
<p><img src="http://supportfacility.com/images/php-pdf.jpg" alt="" width="420" height="245" /></p>
<p>Let us know if this was helpful for you?</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+PDFlib+PHP+on+cPanel+Dedicated+server+-+http://tinyurl.com/2eq4nqk" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;amp;t=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install PDFlib PHP on cPanel Dedicated server...&body=One web developer contacted us and requested us to install PDFlib on their cPanel dedicated server which has PHP 5. As you must be knowing that PDFlib is not supported in the current cPanel easyapache, and especially with PHP 5 so we installed PDFlib[..] - http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;Title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+PDFlib+PHP+on+cPanel+Dedicated+server&amp;u=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+PDFlib+PHP+on+cPanel+Dedicated+server&amp;u=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;amp;t=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&amp;amp;title=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&title=Install+PDFlib+PHP+on+cPanel+Dedicated+server&summary=One+web+developer+contacted+us+and+requested+us+to+install+PDFlib+on+their+cPanel+dedicated+server+which+has+PHP+5.+As+you+must+be+knowing+that+PDFlib+is+not+supported+in+the+current+cPanel+easyapache%2C+and+especially+wit%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&h=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=One+web+developer+contacted+us+and+requested+us+to+install+PDFlib+on+their+cPanel+dedicated+server+which+has+PHP+5.+As+you+must+be+knowing+that+PDFlib+is+not+supported+in+the+current+cPanel+easyapache%2C+and+especially+wit%5B..%5D&posturl=http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/&posttitle=Install+PDFlib+PHP+on+cPanel+Dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/cpanel/install-pdflib-php-on-cpanel-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install ImageMagick on dedicated cPanel server</title>
		<link>http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/</link>
		<comments>http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 05:41:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=85</guid>
		<description><![CDATA[If you need the version ImageMagick-6.4.9-2 to be installed on your cPanel dedicated server, we have followed the below steps which worked perfectly. First, download the tar using the below command: root# wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz root# tar -zxvf ImageMagick.tar.gz root# cd ImageMagick-6.4.9-2 root#./configure root# make root# make install You can check the path for the installed [...]]]></description>
			<content:encoded><![CDATA[<p>If you need the version ImageMagick-6.4.9-2 to be installed on your cPanel dedicated server, we have followed the below steps which worked perfectly.</p>
<p>First, download the tar using the below command:</p>
<pre><code>root# wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz</code></pre>
<pre><code>root# tar -zxvf ImageMagick.tar.gz
root# cd ImageMagick-6.4.9-2
root#./configure
root# make
root# make install</code></pre>
<p>You can check the path for the installed ImageMagick by the command:</p>
<pre><code>root# which convert
/usr/local/bin/convert</code></pre>
<pre><code>root# convert -v | head -n 1 | cut -c 22-26
6.4.9

OR

root# convert -v | grep Version:
Version: ImageMagick 6.4.9-2 2009-02-07 Q16 OpenMP http://www.imagemagick.org
</code></pre>
<p>That’s it!</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+ImageMagick+on+dedicated+cPanel+server+-+http://tinyurl.com/2fyb4jv" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;amp;t=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install ImageMagick on dedicated cPanel server...&body=If you need the version ImageMagick-6.4.9-2 to be installed on your cPanel dedicated server, we have followed the below steps which worked perfectly.

First, download the tar using the below command:
root# wget ftp://ftp.imagemagick.org[..] - http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;Title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+ImageMagick+on+dedicated+cPanel+server&amp;u=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+ImageMagick+on+dedicated+cPanel+server&amp;u=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;amp;t=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&amp;amp;title=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&title=Install+ImageMagick+on+dedicated+cPanel+server&summary=If+you+need+the+version+ImageMagick-6.4.9-2+to+be+installed+on+your+cPanel+dedicated+server%2C+we+have+followed+the+below+steps+which+worked+perfectly.%0D%0A%0D%0AFirst%2C+download+the+tar+using+the+below+command%3A%0D%0Aroot%23+%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&h=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=If+you+need+the+version+ImageMagick-6.4.9-2+to+be+installed+on+your+cPanel+dedicated+server%2C+we+have+followed+the+below+steps+which+worked+perfectly.%0D%0A%0D%0AFirst%2C+download+the+tar+using+the+below+command%3A%0D%0Aroot%23+%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/&posttitle=Install+ImageMagick+on+dedicated+cPanel+server" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-imagemagick-on-dedicated-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Asterisk on linux dedicated server</title>
		<link>http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/</link>
		<comments>http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 10:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>
		<category><![CDATA[install asterisk linux]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=82</guid>
		<description><![CDATA[Asterisk is the world’s leading open source telephony engine and tool kit. Offering flexibility unheard of in the world of proprietary communications, Asterisk empowers developers and integrators to create advanced communication solutions&#8230;for free. Asterisk® is released as open source under the GNU General Public License (GPL), and it is available for download free of charge. [...]]]></description>
			<content:encoded><![CDATA[<p>Asterisk is the world’s leading open source telephony engine and tool kit. Offering flexibility unheard of in the world of proprietary communications, Asterisk empowers developers and integrators to create advanced communication solutions&#8230;for free.</p>
<p>Asterisk® is released as open source under the GNU General Public License (GPL), and it is available for download free of charge. Asterisk® is the most popular open source software available, with the Asterisk Community being the top influencer in VoIP.</p>
<p>Official site : www.asterisk.org</p>
<p>Let’s start installing it on the server now.</p>
<p>Login to your server as root.</p>
<p>I am using asterisk 1.4 (I have done this on 64 bit server – make sure to download the right tarball) &#8211; you can download asterisk by the command:</p>
<pre>root# wget http://downloads.digium.com/pub/asterisk/releases/asterisk-1.4.23.tar.gz</pre>
<p>Now, we will start the installation process. If you get any errors of dependencies you will have to install it. I have installed it using yum ( few were ncurses, gcc, gcc-c++, zaptel, subversion) – install ncurses before the installation starts this will make “make menuconfig” command work perfect.</p>
<pre>root# tar zxvf asterisk-1.4.23.tar.gz
root# cd asterisk-1.4.23
root#./configure
root# make menuconfig    -- hit 'x' to save and exit with default setting
root# make
root# make install
root# make samples
root# asterisk</pre>
<p>Now, open the ports in the firewall by the commands:</p>
<pre>root# iptables -I INPUT -p tcp --dport 8088 -j ACCEPT
root# iptables -I INPUT -p udp --dport 8088 -j ACCEPT
root# service iptables save
root# service iptables restart

root# iptables -I INPUT -p tcp --dport 5308 -j ACCEPT
root# iptables -I INPUT -p udp --dport 5308 -j ACCEPT
root# service iptables save
root# service iptables restart</pre>
<p>Asterisk is installed, now proceeding to installation of Asterisk-GUI</p>
<pre>svn checkout http://svn.digium.com/svn/asterisk-gui/branches/2.0/ asterisk-gui</pre>
<pre>cd asterisk-gui/
./configure
make
make install</pre>
<p>Edit /etc/asterisk/http.conf with your favourite editor and change the following lines:</p>
<pre><code>enabled=yes
enablestatic=yes
bindaddr=123.123.123.123</code></pre>
<p>Where 123.123.123.123 is your server IP.</p>
<p>This enables the HTTP server, enables it to serve static content (the GUI itself) and binds to the standard address, so that any browser from a remote machine can access it.</p>
<p>Now, configuring the manager access<br />
Edit /etc/asterisk/manager.conf and change the following lines:</p>
<pre><code>enabled = yes
webenabled = yes</code></pre>
<p>Then add a new section at the end of the file</p>
<pre><code>
[admin]
secret = supportfacility
read = system,call,log,verbose,command,agent,user,config
write = system,call,log,verbose,command,agent,user,config
</code></pre>
<p>This will allow a user called admin to connect with the password supportfacility and do nearly everything on the system.</p>
<p>Now restart Asterisk by the command:</p>
<pre>root# asterisk</pre>
<p>Do one last check with the command</p>
<pre>make checkconfig</pre>
<p>If everything goes well, and you get a “Good Luck” connect with your browser to:</p>
<pre>http://Server-IP:8088/asterisk/static/config/cfgbasic.html

Username: admin
Password: supportfacility</pre>
<p>This will take sometime and then you will get the below URL.</p>
<pre>http://Server-IP:8088/asterisk/static/config/index.html</pre>
<p>Start configuring your Asterisk now.</p>
<p>Best of luck!</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+Asterisk+on+linux+dedicated+server+-+http://tinyurl.com/2elonal" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;amp;t=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install Asterisk on linux dedicated server...&body=Asterisk is the world’s leading open source telephony engine and tool kit. Offering flexibility unheard of in the world of proprietary communications, Asterisk empowers developers and integrators to create advanced communication solutions...for fre[..] - http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;Title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+Asterisk+on+linux+dedicated+server&amp;u=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+Asterisk+on+linux+dedicated+server&amp;u=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;amp;t=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&amp;amp;title=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&title=Install+Asterisk+on+linux+dedicated+server&summary=Asterisk+is+the+world%E2%80%99s+leading+open+source+telephony+engine+and+tool+kit.+Offering+flexibility+unheard+of+in+the+world+of+proprietary+communications%2C+Asterisk+empowers+developers+and+integrators+to+create+advanced+com%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&h=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Asterisk+is+the+world%E2%80%99s+leading+open+source+telephony+engine+and+tool+kit.+Offering+flexibility+unheard+of+in+the+world+of+proprietary+communications%2C+Asterisk+empowers+developers+and+integrators+to+create+advanced+com%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/&posttitle=Install+Asterisk+on+linux+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-asterisk-on-linux-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install ImageMagick using yum</title>
		<link>http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/</link>
		<comments>http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 13:02:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=71</guid>
		<description><![CDATA[First of all you may ask what is ImageMagick? It is a software suite for image manipulation and display, ImageMagick supports hundreds of image formats on a dedicated server on which it is installed. Following are the commands to install ImageMagick using yum root# yum install glib root# yum install glib2 root# yum install libpng [...]]]></description>
			<content:encoded><![CDATA[<p>First of all you may ask what is ImageMagick? It is a software suite for image manipulation and display, ImageMagick supports hundreds of image formats on a dedicated server on which it is installed.</p>
<p>Following are the commands to install ImageMagick using yum</p>
<pre>root# yum install glib
root# yum install glib2
root# yum install libpng
root# yum install libjpeg
root# yum install libtiff
root# yum install ghostscript
root# yum install freetype
root# yum install ImageMagick
root# yum install ImageMagick-perl
</pre>
<p>That’s it</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+ImageMagick+using+yum+-+http://tinyurl.com/22qwu8f" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;amp;t=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install ImageMagick using yum...&body=First of all you may ask what is ImageMagick? It is a software suite for image manipulation and display, ImageMagick supports hundreds of image formats on a dedicated server on which it is installed.

Following are the commands to install ImageMagi[..] - http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;Title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+ImageMagick+using+yum&amp;u=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+ImageMagick+using+yum&amp;u=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;amp;t=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&amp;amp;title=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&title=Install+ImageMagick+using+yum&summary=First+of+all+you+may+ask+what+is+ImageMagick%3F+It+is+a+software+suite+for+image+manipulation+and+display%2C+ImageMagick+supports+hundreds+of+image+formats+on+a+dedicated+server+on+which+it+is+installed.%0D%0A%0D%0AFollowing+are+the%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&h=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=First+of+all+you+may+ask+what+is+ImageMagick%3F+It+is+a+software+suite+for+image+manipulation+and+display%2C+ImageMagick+supports+hundreds+of+image+formats+on+a+dedicated+server+on+which+it+is+installed.%0D%0A%0D%0AFollowing+are+the%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/&posttitle=Install+ImageMagick+using+yum" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-imagemagick-using-yum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install munin on Plesk dedicated server</title>
		<link>http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/</link>
		<comments>http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 12:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=70</guid>
		<description><![CDATA[Get your servers monitored by munin and you can see the output in graphical view for the following: load average memory usage CPU usage MySQL throughput eth0 traffic and more… I have used centos for munin installation. The steps for installation are as below: Add rpmforge repositories root# rpm -Uhv http://apt.sw.be/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.i386.rpm root# yum -y install [...]]]></description>
			<content:encoded><![CDATA[<p>Get your servers monitored by munin and you can see the output in graphical view for the following:</p>
<ul>
<li>load average</li>
<li>memory usage</li>
<li>CPU usage</li>
<li>MySQL throughput</li>
<li>eth0 traffic and more…</li>
</ul>
<p>I have used centos for munin installation. The steps for installation are as below:</p>
<p>Add rpmforge repositories</p>
<pre>root# rpm -Uhv http://apt.sw.be/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.i386.rpm</pre>
<pre>root# yum -y install munin</pre>
<p>My document root is /var/www/html/ (Plesk server)</p>
<pre>root# cp -r /var/www/munin /var/www/html/</pre>
<pre>root# chown -R munin:munin /var/www/html/munin</pre>
<p>Now, restart apache server</p>
<pre>root# /etc/init.d/httpd restart</pre>
<p>Now, check it using the browser</p>
<pre>http://xxx.xxx.xxx.xxx/munin (xxx.xxx.xxx.xxx is your server IP)</pre>
<p>Now, add a munin node – for this do the following</p>
<pre>root# yum -y install munin-node</pre>
<p>Now configure it using editor of your choice</p>
<pre>root# nano /etc/munin/munin-node.conf</pre>
<p>Find the line and make the necessary changes</p>
<pre>* Allow the graph server (server.example.com/xxx.xxx.xxx.xxx) to poll the node.
allow ^xxx\.xxx\.xxx\.xxx$</pre>
<p>Start the munin node on your server</p>
<pre>root# service munin-node start</pre>
<pre>root# nano /etc/munin/munin.conf
[client.example.com]
address xxx.xxx.xxx.xxx
use_node_name yes</pre>
<p>Remember to open port tcp/4949 in the firewall of the node</p>
<pre>root# iptables -A INPUT -p tcp --dport 4949 -j ACCEPT</pre>
<p>Let us know if this helped you.. your feedback is very vital for us.</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+munin+on+Plesk+dedicated+server+-+http://tinyurl.com/2u3nhhn" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;amp;t=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install munin on Plesk dedicated server...&body=Get your servers monitored by munin and you can see the output in graphical view for the following:

	load average
	memory usage
	CPU usage
	MySQL throughput
	eth0 traffic and more…

I h[..] - http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;Title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+munin+on+Plesk+dedicated+server&amp;u=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+munin+on+Plesk+dedicated+server&amp;u=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;amp;t=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&amp;amp;title=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&title=Install+munin+on+Plesk+dedicated+server&summary=Get+your+servers+monitored+by+munin+and+you+can+see+the+output+in+graphical+view+for+the+following%3A%0D%0A%0D%0A%09load+average%0D%0A%09memory+usage%0D%0A%09CPU+usage%0D%0A%09MySQL+throughput%0D%0A%09eth0+traffi%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&h=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Get+your+servers+monitored+by+munin+and+you+can+see+the+output+in+graphical+view+for+the+following%3A%0D%0A%0D%0A%09load+average%0D%0A%09memory+usage%0D%0A%09CPU+usage%0D%0A%09MySQL+throughput%0D%0A%09eth0+traffi%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/&posttitle=Install+munin+on+Plesk+dedicated+server" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-munin-on-plesk-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install VNCserver on linux (Remote desktop linux)</title>
		<link>http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/</link>
		<comments>http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 10:46:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>
		<category><![CDATA[install vncserver linux]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=69</guid>
		<description><![CDATA[Windows can be connected using Remote Desktop, linux users can connect to shell (ssh) using ssh clients like putty. Now, what if you need to view linux gnome desktop and that too remotely? Yes, this is possible with VNC ( Virtual Network Computing ) server. I will show you how to install it on centos. [...]]]></description>
			<content:encoded><![CDATA[<p>Windows can be connected using Remote Desktop, linux users can connect to shell (ssh) using ssh clients like putty. Now, what if you need to view linux gnome desktop and that too remotely? Yes, this is possible with VNC ( Virtual Network Computing ) server. I will show you how to install it on centos.</p>
<p>You’ll need gnome desktop environment – if it is not installed on your system you can get it installed using yum; the commands are:</p>
<pre>root# yum groupinstall "X Window System"
root# yum groupinstall "GNOME Desktop Environment"</pre>
<p>If you get any errors about dependencies, I am sure you know how to get those packages installed.</p>
<p>Now, the VNC server is installed with the X Windows system. We will configure the VNC server now:</p>
<p>Edit the <code>/etc/sysconfig/vncservers</code> file with your favourite editor and uncomment the following two lines:</p>
<pre>VNCSERVERS="5:root" # display port and username
VNCSERVERARGS[2]="-geometry 800×600 -nolisten tcp -nohttpd -localhost"</pre>
<p>Set password to VNC Server</p>
<pre>root# vncpasswd</pre>
<p>Edit the local config file in the root folder:</p>
<pre>nano ~/.vnc/xstartup
Replace "twm &amp;"   with "gnome-session &amp;"</pre>
<p>To start VNC server issue command</p>
<pre>root# vncserver :5</pre>
<p>To stop VNC server issue command</p>
<pre>root# vncserver -kill :5</pre>
<p>Connecting with VNC client</p>
<p>Start VNC Server by issuing the command</p>
<pre>root# vncserver :5</pre>
<p>Open your favourite VNC client and type your server&#8217;s IP followed by the port number</p>
<pre>xxx.xxx.xxx.xxx:5 (where xxx.xxx.xxx.xxx is the IP)</pre>
<p>5 is the port set within the /etc/sysconfig/vncservers file</p>
<p><img src="http://supportfacility.com/images/login.jpg" alt="VNC login" /></p>
<p>Enter your servers password and access the linux remote desktop.</p>
<p><img src="http://supportfacility.com/images/auth.jpg" alt="VNC authentication" /></p>
<p>Here is your remote desktop</p>
<p><img src="http://supportfacility.com/images/vnserver.jpg" alt="VNC server" /></p>
<p>Did this post help you? please leave your feedback for us.</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+VNCserver+on+linux+%28Remote+desktop+linux%29+-+http://tinyurl.com/2dv83k6" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;amp;t=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install VNCserver on linux (Remote desktop linux)...&body=Windows can be connected using Remote Desktop, linux users can connect to shell (ssh) using ssh clients like putty. Now, what if you need to view linux gnome desktop and that too remotely? Yes, this is possible with VNC ( Virtual Network Computing ) [..] - http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;Title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+VNCserver+on+linux+%28Remote+desktop+linux%29&amp;u=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+VNCserver+on+linux+%28Remote+desktop+linux%29&amp;u=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;amp;t=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&amp;amp;title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&title=Install+VNCserver+on+linux+%28Remote+desktop+linux%29&summary=Windows+can+be+connected+using+Remote+Desktop%2C+linux+users+can+connect+to+shell+%28ssh%29+using+ssh+clients+like+putty.+Now%2C+what+if+you+need+to+view+linux+gnome+desktop+and+that+too+remotely%3F+Yes%2C+this+is+possible+with+VNC+%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&h=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Windows+can+be+connected+using+Remote+Desktop%2C+linux+users+can+connect+to+shell+%28ssh%29+using+ssh+clients+like+putty.+Now%2C+what+if+you+need+to+view+linux+gnome+desktop+and+that+too+remotely%3F+Yes%2C+this+is+possible+with+VNC+%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/&posttitle=Install+VNCserver+on+linux+%28Remote+desktop+linux%29" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-vncserver-on-linux-remote-desktop-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ionCube autoinstaller script</title>
		<link>http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/</link>
		<comments>http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 14:38:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>
		<category><![CDATA[ionCube autoinstaller]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=68</guid>
		<description><![CDATA[ionCube php loader is the PHP extension that decodes encrypted PHP files on runtime, usually this is already installed on any web server whether it be used for shared hosting, reseller hosting or on your dedicated web servers. If for some reason you don’t have it installed on your linux server, you can use the [...]]]></description>
			<content:encoded><![CDATA[<p>ionCube php loader is the PHP extension that decodes encrypted PHP files on runtime, usually this is already installed on any web server whether it be used for shared hosting, reseller hosting or on your dedicated web servers.</p>
<p>If for some reason you don’t have it installed on your linux server, you can use the below shell script created by one of our system administrator.</p>
<p>Create a file named ioncubeinstaller.sh and paste the below code in the file:</p>
<pre><code>
#!/bin/bash
# Supportfacility.com

WHO=$(whoami)
if [ ${WHO} == "root" ]
then
echo "Script Initialized ..."
else
echo "You must be logged in as root to install ionCube Loader."
echo "Terminating ..."
exit 0
fi

echo "Changing directory"

cd /usr/local/

echo "Done."

if [ -e ioncube_loaders_lin_x86.tar.gz ]
then
rm -f ioncube_loaders_lin_x86.tar.gz
fi

echo "Downloading files"

wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz

echo "Done."

echo "Installing files"

tar -zxvf ioncube_loaders_lin_x86.tar.gz

echo "Done."

echo "Changing ownership"

chown -R root.root ioncube

echo "Done."

phpline=`php -v | grep ^PHP | cut -f2 -d " "| awk -F "." '{print "zend_extension=\"/usr/local/ioncube/ioncube_loader_lin_"$1"."$2".so\""}'`
phpinifile=`php -i | grep php.ini | grep ^Configuration | cut -f6 -d" "`

echo "Adding line $phpline to file $phpinifile"
echo "$phpline" &gt;&gt; $phpinifile

rm -f ioncube_loaders_lin_x86.tar.gz

echo "Ioncube installed sucessfully"
</code></pre>
<p>Then, change the permissions of the file to 755</p>
<pre>root# chmod 755 ioncubeinstaller.sh</pre>
<p>And execute it with</p>
<pre>root# ./ioncubeinstaller.sh</pre>
<p>This has been tested on cPanel, Plesk, DirectAdmin dedicated servers and will work on any linux server</p>
<p>Let us know if this script was helpful for you.</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="../../hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++ionCube+autoinstaller+script+-+http://tinyurl.com/237zro2" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;amp;t=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=ionCube autoinstaller script...&body=ionCube php loader is the PHP extension that decodes encrypted PHP files on runtime, usually this is already installed on any web server whether it be used for shared hosting, reseller hosting or on your dedicated web servers.

If for some reason y[..] - http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;Title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=ionCube+autoinstaller+script&amp;u=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=ionCube+autoinstaller+script&amp;u=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;amp;t=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&amp;amp;title=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&title=ionCube+autoinstaller+script&summary=ionCube+php+loader+is+the+PHP+extension+that+decodes+encrypted+PHP+files+on+runtime%2C+usually+this+is+already+installed+on+any+web+server+whether+it+be+used+for+shared+hosting%2C+reseller+hosting+or+on+your+dedicated+web+se%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&h=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=ionCube+php+loader+is+the+PHP+extension+that+decodes+encrypted+PHP+files+on+runtime%2C+usually+this+is+already+installed+on+any+web+server+whether+it+be+used+for+shared+hosting%2C+reseller+hosting+or+on+your+dedicated+web+se%5B..%5D&posturl=http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/&posttitle=ionCube+autoinstaller+script" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/ioncube-autoinstaller-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install chkrootkit</title>
		<link>http://www.supportfacility.com/blog/install/install-chkrootkit/</link>
		<comments>http://www.supportfacility.com/blog/install/install-chkrootkit/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 19:58:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=50</guid>
		<description><![CDATA[chkrootkit is a tool to locally check for signs of a rootkit. It contains: chkrootkit: shell script that checks system binaries for rootkit modification. ifpromisc.c: checks if the interface is in promiscuous mode. chklastlog.c: checks for lastlog deletions. chkwtmp.c: checks for wtmp deletions. check_wtmpx.c: checks for wtmpx deletions. (Solaris only) chkproc.c: checks for signs of [...]]]></description>
			<content:encoded><![CDATA[<p>chkrootkit is a tool to locally check for signs of a rootkit. It contains:</p>
<p>chkrootkit: shell script that checks system binaries for rootkit modification.<br />
ifpromisc.c: checks if the interface is in promiscuous mode.<br />
chklastlog.c: checks for lastlog deletions.<br />
chkwtmp.c: checks for wtmp deletions.<br />
check_wtmpx.c: checks for wtmpx deletions. (Solaris only)<br />
chkproc.c: checks for signs of LKM trojans.<br />
chkdirs.c: checks for signs of LKM trojans.<br />
strings.c: quick and dirty strings replacement.<br />
chkutmp.c: checks for utmp deletions.</p>
<p>Installation procedure:</p>
<p><strong>cd /<br />
wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz<br />
tar -zxvf chkrootkit.tar.gz<br />
cd chkrootkit-0.48<br />
make sense</strong></p>
<p>You can now execute: /chkrootkit-0.48/chkrootkit</p>
<p>For more information of chkrootkit you can check <a href="http://www.chkrootkit.org" target="_blank">here</a></p>
<p>That&#8217;s it!</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="http://supportfacility.com/hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++Install+chkrootkit+-+http://tinyurl.com/24psnwy" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/install-chkrootkit/title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;amp;t=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Install chkrootkit...&body=chkrootkit is a tool to locally check for signs of a rootkit. It contains:

chkrootkit: shell script that checks system binaries for rootkit modification.
ifpromisc.c: checks if the interface is in promiscuous mode.
chklastlog.c: checks for lastl[..] - http://www.supportfacility.com/blog/install/install-chkrootkit/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;Title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=Install+chkrootkit&amp;u=http://www.supportfacility.com/blog/install/install-chkrootkit/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Install+chkrootkit&amp;u=http://www.supportfacility.com/blog/install/install-chkrootkit/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/install-chkrootkit/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;amp;t=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/install-chkrootkit/&amp;amp;title=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/install-chkrootkit/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/install-chkrootkit/&title=Install+chkrootkit&summary=chkrootkit+is+a+tool+to+locally+check+for+signs+of+a+rootkit.+It+contains%3A%0D%0A%0D%0Achkrootkit%3A+shell+script+that+checks+system+binaries+for+rootkit+modification.%0D%0Aifpromisc.c%3A+checks+if+the+interface+is+in+promiscuous+mode.%0D%0A%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/install-chkrootkit/&h=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=chkrootkit+is+a+tool+to+locally+check+for+signs+of+a+rootkit.+It+contains%3A%0D%0A%0D%0Achkrootkit%3A+shell+script+that+checks+system+binaries+for+rootkit+modification.%0D%0Aifpromisc.c%3A+checks+if+the+interface+is+in+promiscuous+mode.%0D%0A%5B..%5D&posturl=http://www.supportfacility.com/blog/install/install-chkrootkit/&posttitle=Install+chkrootkit" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/install-chkrootkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install nmap on CentOS</title>
		<link>http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/</link>
		<comments>http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 07:14:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=23</guid>
		<description><![CDATA[nmap (Network Mapper) is a free and open source utility. Here, we will use it to see the ports open on your cPanel server are. To install nmap on your cPanel server, use the following command: yum install nmap This will install nmap on your server, to check it use the command: nmap localhost That&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>nmap (Network Mapper) is a free and open source utility. Here, we will use it to see the ports open on your cPanel server are. To install nmap on your cPanel server, use the following command:</p>
<p><strong>yum install nmap</strong></p>
<p>This will install nmap on your server, to check it use the command:</p>
<p><strong>nmap localhost</strong></p>
<p>That&#8217;s it!</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="http://supportfacility.com/hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++How+to+install+nmap+on+CentOS+-+http://tinyurl.com/2fvfceq" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;amp;t=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=How to install nmap on CentOS...&body=nmap (Network Mapper) is a free and open source utility. Here, we will use it to see the ports open on your cPanel server are. To install nmap on your cPanel server, use the following command:

yum install nmap

This will install[..] - http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;Title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=How+to+install+nmap+on+CentOS&amp;u=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=How+to+install+nmap+on+CentOS&amp;u=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;amp;t=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&amp;amp;title=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&title=How+to+install+nmap+on+CentOS&summary=nmap+%28Network+Mapper%29+is+a+free+and+open+source+utility.+Here%2C+we+will+use+it+to+see+the+ports+open+on+your+cPanel+server+are.+To+install+nmap+on+your+cPanel+server%2C+use+the+following+command%3A%0D%0A%0D%0Ayum+install+nmap%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&h=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=nmap+%28Network+Mapper%29+is+a+free+and+open+source+utility.+Here%2C+we+will+use+it+to+see+the+ports+open+on+your+cPanel+server+are.+To+install+nmap+on+your+cPanel+server%2C+use+the+following+command%3A%0D%0A%0D%0Ayum+install+nmap%5B..%5D&posturl=http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/&posttitle=How+to+install+nmap+on+CentOS" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/how-to-install-nmap-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AntiDOS Configuration in APF on cPanel web server</title>
		<link>http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/</link>
		<comments>http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 10:46:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://supportfacility.com/blog/?p=20</guid>
		<description><![CDATA[It is assumed that you have already installed APF (Advanced policy firewall) on your cPanel dedicated web server. Once, APF is installed do the following: Edit the antidos configuration file of APF with the command: nano /etc/apf/ad/conf.antidos Find the string LP_KLOG=”0″ and change it to LP_KLOG=”1″ Now, find for CONAME=”Your Company” Enter your company name [...]]]></description>
			<content:encoded><![CDATA[<p>It is assumed that you have already installed <strong>APF</strong> (<u>Advanced policy firewall</u>) on your cPanel dedicated web server. Once, APF is installed do the following:</p>
<p>Edit the antidos configuration file of APF with the command:</p>
<p><strong>nano /etc/apf/ad/conf.antidos</strong></p>
<p>Find the string <strong>LP_KLOG=”0″</strong> and change it to <strong>LP_KLOG=”1″</strong></p>
<p>Now, find for <strong>CONAME=”Your Company”</strong></p>
<p>Enter your company name within quotes for example</p>
<p><strong>CONAME=”SupportFacility.Com”</strong></p>
<p>Now find for the string <strong>USR_ALERT=”0″</strong> and change it to <strong>USR_ALERT=”1″</strong></p>
<p>This is so that you can receive email alerts.</p>
<p>Now enter your email address here:</p>
<p><strong>USR=”something@yourdomain.com”</strong></p>
<p>Now you have to set it in cron for this give the following command:</p>
<p><strong>crontab –e</strong></p>
<p><strong>*/5 * * * * root /etc/apf/ad/antidos -a &gt;&gt; /dev/null 2&gt;&amp;1</strong></p>
<p>This will run antidos every five minutes.</p>
<p><strong>This article is released by <a href="http://www.supportfacility.com/" target="_blank">SupportFacility.Com</a> — the leaders in providing outsourced technical support, live chat support &amp; help desk support for web hosts. Interested ? Opt for a <a href="http://supportfacility.com/hosting-support-facility-riskfree-trial.php" target="_blank">trial</a> now.</strong></p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@supportfacility:++AntiDOS+Configuration+in+APF+on+cPanel+web+server+-+http://tinyurl.com/2f6jlvd" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;amp;t=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=AntiDOS Configuration in APF on cPanel web server...&body=It is assumed that you have already installed APF (Advanced policy firewall) on your cPanel dedicated web server. Once, APF is installed do the following:

Edit the antidos configuration file of APF with the command:

 - http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;Title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-furl"><a href="http://www.furl.net/storeIt.jsp?t=AntiDOS+Configuration+in+APF+on+cPanel+web+server&amp;u=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-reddit"><a href="http://reddit.com/submit?url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=AntiDOS+Configuration+in+APF+on+cPanel+web+server&amp;u=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-technorati"><a href="http://technorati.com/faves?add=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;amp;t=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&amp;amp;title=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-comfeed"><a href="http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/feed" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&title=AntiDOS+Configuration+in+APF+on+cPanel+web+server&summary=It+is+assumed+that+you+have+already+installed+APF+%28Advanced+policy+firewall%29+on+your+cPanel+dedicated+web+server.+Once%2C+APF+is+installed+do+the+following%3A%0D%0A%0D%0AEdit+the+antidos+configuration+file+of%5B..%5D&source=Support facility" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&save?u=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&h=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=It+is+assumed+that+you+have+already+installed+APF+%28Advanced+policy+firewall%29+on+your+cPanel+dedicated+web+server.+Once%2C+APF+is+installed+do+the+following%3A%0D%0A%0D%0AEdit+the+antidos+configuration+file+of%5B..%5D&posturl=http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/&posttitle=AntiDOS+Configuration+in+APF+on+cPanel+web+server" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportfacility.com/blog/install/antidos-configuration-in-apf-on-cpanel-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

