<?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>^;^ 失落的微点 &#187; Apache</title>
	<atom:link href="http://www.porry.org/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.porry.org</link>
	<description>独挡千古错...冷漠自逍遥...</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:46:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ubuntu8.04下安装PHP对应软件</title>
		<link>http://www.porry.org/2009/12/17/ubuntu8-04-install-php/</link>
		<comments>http://www.porry.org/2009/12/17/ubuntu8-04-install-php/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 15:31:50 +0000</pubDate>
		<dc:creator>^;^</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[jre]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://www.porry.org/?p=12</guid>
		<description><![CDATA[真的发现在Ubuntu下安装Apache、PHP、MYSQL、PHPMyAdmin、JDK、Zend Studio是非常非常方便的，呵呵，基本上都是在“终端”上操作,很适合新手。 1.安装Apache2 sudo apt-get install apache2 默认的web文件放在/var/www 下 然后在Firefox中打开: http://localhost/ 提示成功 2.安装PHP5 sudo apt-get install php5 3.安装PHP5的MySQL支持 sudo apt-get install php5-mysql 4.安装gd库 sudo apt-get install php5-gd 5.安装Mysql sudo apt-get install mysql-server 6.以上装完重启一下Apache sudo apache2 restart 7.测试PHP5是否安装成功 sudo gedit /var/www/testphp.php 在里面写入 &#60;?php echo &#8216;hello world&#8217;; ?&#62;     然后在Firefox中打开: http://localhost/testphp.php 8.安装PHPMyAdmin sudo apt-get install phpmyadmin 安装完后是在/usr/share/phpmyadmin/下 增加一个软连接 [...]]]></description>
			<content:encoded><![CDATA[<p>真的发现在Ubuntu下安装Apache、PHP、MYSQL、PHPMyAdmin、JDK、Zend Studio是非常非常方便的，呵呵，基本上都是在“终端”上操作,很适合新手。</p>
<p><span style="font-weight: bold;">1.安装Apache2</span></p>
<div id="blogDetailDiv" style="font-size: 12px;"><span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install apache2</span><br />
默认的web文件放在/var/www 下<br />
然后在Firefox中打开:<br />
<a href="http://localhost/" target="_blank">http://localhost/</a><br />
提示成功</p>
<p><span style="font-weight: bold;">2.安装PHP5</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install php5</span></p>
<p><span style="font-weight: bold;">3.安装PHP5的MySQL支持</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install php5-mysql</span></p>
<p><span style="font-weight: bold;">4.安装gd库</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install php5-gd</span></p>
<p><span style="font-weight: bold;">5.安装Mysql</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install mysql-server</span></p>
<p><span style="font-weight: bold;">6.以上装完重启一下Apache</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apache2 restart</span></p>
<p><span style="font-weight: bold;">7.测试PHP5是否安装成功<br />
</span> sudo gedit /var/www/testphp.php<br />
在里面写入<br />
&lt;?php<br />
echo &#8216;hello world&#8217;;<br />
?&gt;     然后在Firefox中打开:<br />
<a href="http://localhost/testphp.php" target="_blank">http://localhost/testphp.php</a></p>
<p><span style="font-weight: bold;">8.安装PHPMyAdmin</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install phpmyadmin</span><br />
安装完后是在/usr/share/phpmyadmin/下<br />
增加一个软连接<br />
sudo ln -s /usr/share/phpmyadmin /var/www<br />
测试：<br />
<a href="http://localhost/phpmyadmin" target="_blank">http://localhost/phpmyadmin</a></p>
<p><span style="font-weight: bold;">9.安装MYSQL Administrator</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install mysql-admin</span><br />
安装完后，可在应用程序-编程下看到MYSQL Administrator</p>
<p><span style="font-weight: bold;">10.安装Jre及Jdk</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install sun-java6-jre</span><br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">sudo apt-get install sun-java6-jdk</span></p>
<p><span style="font-weight: bold;">11.安装Zend Studio 6</span><br />
下载<a href="http://downloads.zend.com/studio-eclipse/6.0.0/ZendStudioForEclipse-6_0_0.tar.gz" target="_blank">http://downloads.zend.com/studio-eclipse/6.0.0/ZendStudioForEclipse-6_0_0.tar.gz</a><br />
解压缩出ZendStudioForEclipse-6_0_0.bin<br />
在非root用户安装<br />
<span style="color: #000000; display: inline-block; line-height: 1.3em;">./ZendStudioForEclipse-6_0_0.bin</span></p>
<p>嘿嘿。。到此安装完了。。可以进行PHP的编辑了。。</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.porry.org/2009/12/17/ubuntu8-04-install-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

