<?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>Web Hosting Blog &#124;&#124; SEO Blog &#187; linux server</title>
	<atom:link href="http://mhmb.co.uk/category/linux-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhmb.co.uk</link>
	<description>A blog that reviews News and information about latest happenings in Web Hosting, Search Engine Optimisation and Much more.</description>
	<lastBuildDate>Tue, 13 Jul 2010 15:57:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Installation &#8211; Linux Dedicated Server</title>
		<link>http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/</link>
		<comments>http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 11:52:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux server]]></category>

		<guid isPermaLink="false">http://mhmb.co.uk/?p=3</guid>
		<description><![CDATA[Rasmus lerdorf created PHP which was designed to create dynamic web pages and it was created in 1995.PHP is computer scripting language and is now capable to include a command line interface.It can also be used in a standalone graphical application.It is released under the PHP licence and it can be installed on most of [...]


No related posts.

 <a href=''></a>]]></description>
			<content:encoded><![CDATA[<p>Rasmus lerdorf created PHP which was designed to create dynamic web pages and it was created in 1995.PHP is computer scripting language and is now capable to include a command line interface.It can also be used in a standalone graphical application.It is released under the PHP licence and it can be installed on most of the web servers including most of the operating systems and platforms.Another plus point is it can be installed free of charge as it is a free open source software.Due to all these benefits PHP is very flexible and is a very good software to help you to build a website.As it is free and can be installed on most of the operating systems it is possible for you to install it on your dedicated server quite easily by the following steps :-</p>
<p>First step is to find the source codes and the following link will help you for this purpose.<span>What you need to do is get the source codes for the PHP package and then you have to compile the package from scratch here, and, while there are also binary packages available for some distributions, I find your end results are usually better when building each package for your machine. Make sure you get the source files.</span>The current version available is 5.2.6  :-</p>
<p><span><br />
<strong>LINK: </strong> <a href="http://www.php.net/downloads.php" target="_"> <span style="color: #ff0000;">http://www.php.net/downloads.php</span></a><br />
<strong>Current Version available &#8211; </strong>5.2.6</span></p>
<p>So I hope that you have got the source codes.Now the installation begins&#8230;</p>
<p><span>The first thing you have to do for the installing PHP is to extract the sourcecodes so that you will be able to work with the files included in them.</span><span>for this you will be working as root</span><span> to Begin,for this you will have to open a terminal window and change to the directory in which you saved your downloaded files and become root by issuing the <strong>su</strong> command.After this enter the root password and you will be able to go.</span></p>
<p>Type the following command to get the source codes&#8230;.</p>
<p><span><strong>#tar -zxf  php-5.2.6.tar.gz (enter)</strong></span></p>
<p><span><br />
</span></p>
<p><span>The commands above will  extract the sourcecodes into the directory.</span></p>
<p><span>Change into the PHP source  directory as follows;</span></p>
<p>Compiling PHP :-</p>
<p><span>Once the prompt comes type the following command ; </span></p>
<p><span><br />
</span></p>
<p><span><strong>#make (enter)</strong></span></p>
<p><span><br />
</span></p>
<p><span>Wait for the time till you have the prompt.After getting the prompt you will have to give the following command ;</span></p>
<p><span><br />
</span></p>
<p><span><strong>#make install (enter)</strong></span></p>
<p><span><br />
</span></p>
<p><span>Once the install finishes  and you have the prompt type the following command;</span></p>
<p><span><br />
</span></p>
<p><span><strong>#cp php.ini-recommended  /usr/local/php/lib/php.ini (enter)</strong></span></p>
<p><span><br />
</span></p>
<p><span>Then edit the file;</span></p>
<p><span><br />
</span></p>
<p><span><strong>#vi /usr/local/php/lib/php.ini  (enter)</strong></span></p>
<p><span><br />
</span></p>
<p><span>And edit the following;</span></p>
<p><span><br />
</span></p>
<p><span>Find the <strong>doc_root</strong> section and enter the correct path for the directory which serves your web  content, such as ;</span></p>
<p><span><br />
</span></p>
<p><span>Then find the file_uploads  section and change it to reflect the following;</span></p>
<p><span><br />
</span></p>
<p><span><strong>file_uploads=Off</strong></span></p>
<p><span><br />
</span></p>
<p><span>(for security reasons)</span></p>
<p><span>Now you have done it.</span></p>
<p><span><strong>Testing &#8211; </strong></span></p>
<p>You can check whether your work is done or not with the help of the following :-</p>
<p><span>Using vi create a file  called <strong>test.php</strong>;</span></p>
<p><span><br />
</span></p>
<p><span><strong>#vi test.php</strong></span></p>
<p><span><br />
</span></p>
<p><span>Add the following line to  the file;</span></p>
<p><span><strong>&lt;?php phpinfo(); ?&gt;</strong></span></p>
<p><span><br />
</span></p>
<p><span>Save the file, then fire up  your browser and point it to <strong>localhost/test.php</strong></span></p>
<p>I hope this has helped and you have sucessfully installed PHP on your dedicated server.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Segnala presso:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Del.icio.us"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Del.icio.us" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a digg"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a digg" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Technorati"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Technorati" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Stumble Upon"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Stumble Upon" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Bookmarks"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Bookmarks" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Squidoo"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Squidoo" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Bloglines"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Bloglines" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;T=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Propeller"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Propeller" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkagogo.com/go/AddNoPopup?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Linkagogo"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/linkagogo.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Linkagogo" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Linkagogo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Live-MSN"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Live-MSN" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Live-MSN" /></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://sphinn.com/submit.php?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Sphinn"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/sphinn.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Sphinn" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Sphinn" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.digo.it/submit.php?title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server&amp;url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Digo"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/digo.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Digo" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Digo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;t=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FaceBook"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FaceBook" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mixx"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mixx" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.indianpad.com/submit.php?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a IndianPad"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/indianpad.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a IndianPad" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a IndianPad" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Connotea"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/connotea.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Connotea" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Connotea" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/addurl/?bm_url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;bm_description=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mister-Wong"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/misterwong.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mister-Wong" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Mister-Wong" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://friendfeed.com/share/bookmarklet/frame#title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server&amp;url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FriendFeed"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/friendfeed.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FriendFeed" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a FriendFeed" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/&amp;title=PHP+Installation+%26%238211%3B+Linux+Dedicated+Server&amp;srcURL=http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Buzz"><img src="http://mhmb.co.uk/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Buzz" alt="Aggiungi 'PHP Installation &#8211; Linux Dedicated Server' a Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END -->

<p>No related posts.</p>
<p> <a href=''></a></p>]]></content:encoded>
			<wfw:commentRss>http://mhmb.co.uk/linux-server/php-installation-linux-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
