<?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>NewTalker</title>
	<atom:link href="http://www.newtalker.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.newtalker.com/blog</link>
	<description>思想火花的聚集地，新时代信息语言的代表者</description>
	<lastBuildDate>Mon, 23 Apr 2012 15:43:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Windows XP下 安装和配置Apache2.2.22服务器+PHP5+Mysql5</title>
		<link>http://www.newtalker.com/blog/33.html</link>
		<comments>http://www.newtalker.com/blog/33.html#comments</comments>
		<pubDate>Sat, 07 Apr 2012 04:40:29 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=33</guid>
		<description><![CDATA[随着PHP网站的流行，国内越来越多的站长使用php开发网站或者使用相关的php开源网站（例如：DeDeCMS、phpWind、康盛的Discuz！、wordpress等一些目前比较流行的开源网站），对于一些刚开始接触PHP语言或者刚开始建立自己站点的人来说，在本地测试php网站无疑是件非常重要的事情，因为这样可以在本地做若干的调试，而不用去担心网络问题以及运营商问题。接下来，笔者将WindowsXP(Sp3)下，搭建和配置php运行环境做一个简单的介绍： 1.安装准备 1.1Apache下载,官方地址(http://httpd.apache.org/)，此处笔者下载版本的是Apache HTTP Server 2.2.22，使用的是OpenSSL的版本(httpd-2.2.22-win32-x86-openssl-0.9.8t.msi)，如图 &#160; &#160; 1.2PHP下载，官方地址(http:// www.php.net)，此处下载的是Php5(php-5.2.17-Win32-VC6-x86) 1.3Mysql下载，官方地址(http://www.mysql.com/downloads/)，此处使用的是Mysql5(mysql-essential-5.1.57-win32.zip) 2.安装Apache HTTP Server 2.1运行下载好的“httpd-2.2.22-win32-x86-openssl-0.9.8t.msi”文件，出现如下安装界面，如图 红色框内显示的是apache的版本号，我们直接点击“Next”进入下一步； 出现软件安装许可条例，这里直接选择“I accept the terms in the license agreement”；然后点击“Next”； 对话框显示的是软件相关须知（如果您安装软件的时候很有耐心，可以考虑读一遍，看看自己的英文水平如何），这里我们直接点击“Next”； 这里是要填写服务的相关信息，Network Domain这一项是填写你的域名(如：xxx.com);Server Name这一项填写你的服务器名称(如：www.xxx.com)；Administrator’s Email Address这一项填管理员的邮箱地址；在本地配置，以上三个栏目均可以随意填写，有效无效都可以。下面2个选项，第一个是为系统所有的用户安装，使用80端口；第二是只为当前用户安装，使用8080端口；一般情况我们默认第一个，然后点击“Next”； 这一步是让你选择2种安装模式类型，“Typical”是经典模式，也就是默认安装模式；“Custom”是自定义安装，就是可以选择安装路径和软件的一些功能选择；笔者此处选择“Custom”； 我们此处讲软件的所以功能都选上，并修改了软件的安装位置，笔者此处选在E盘的一个目录下，你也可以选择到自己想要安装到的目录； 准备安装，此处点击“Next”； 此处无需操作，等待一下； 完成，点击“Finish”完成安装。 此时电脑任务栏右侧的状态栏出现Apache的图标 表示apache服务已经正在运行； 此时，我们可以在浏览器地址栏中输入http://127.0.0.1访问，浏览器显示文字“It Works！”，表示服务状态正常。 2.2接下来对Apache服务器进行一些简单的配置，首先我们从程序中打开Apache的配置文件，如图： 点击后弹出一个记事本的文档 这里我们要配置下网站文件的存放位置，即网站根目录，默认是在apache安装文件中的“htdocs”；默认位置为“E:/webdev/Apache2.2/htdocs”；为了平时方便管理，我们讲网站的根目录放在一个比较方便的位置，点击记事本的查找选项，查找“DocumentRoot”，查到如图显示信息： 我们将“E:/webdev/Apache2.2/htdocs”改成“E:/webdev/htdocs”，同样，我们通过查找“Directory”，找到： 我们同样将“E:/webdev/Apache2.2/htdocs”改成“E:/webdev/htdocs”；接着，我们找到“DirectoryIndex”，即目录索引（在指定的文件目录下，默认显示的文件名）找到此处： 系统默认已经写了一个“Index.html”，我们可以在后面添加自己想要的，比如“Index.php Index.htm”（以单个半角空格隔开）等等。系统默认会从左侧开始按优先顺序来显示。设置好了后，我们点击保存或者使用“Ctrl+S”。 OK，Apache服务器的安装和初步配置已经完成。 3.安装PHP(此处为php5) 3.1首先将下载好的php压缩包解压到你指定的目录下，笔者是放在“E:\webdev\”目录下， 接下来，要对php进行配置了，打开php文件夹，找到“php.ini-dist”文件，这是php的配置文件，我们现将其重命名为“php.ini”，然后用记事本打开，如图 接下来我们要配置下php的扩展模块，找到“Windows Extensions”，如图所示： 红线框内的就是php可以加载的模块，这里要说明的是在“extensions”前加“；”的表示此模块未加载，如需要加载，直接将“extensions”前的“；”去掉即可，若php文件中的ext文件没有此模块.dll文件，则将加载失败。我们接下来需要配置mysql，所以我们将其中关于mysql的模块加载上去，即讲此模块前的“；”去掉，然后保存文档。这里有一点需要提一下，就是在加载其他模块时，需要指定模块的位置，要不然在重启Apache服务器的时候，会提示找不到模块，我们这里设定一下相关环境变量，可以快速解决这个问题，具体操作如下： 右击我的电脑-》属性-》高级-》环境变量-》Path，这里以笔者安装的目录为例，在编辑框中添加“;E:\webdev\php; E:\webdev\php\ext”注意，以“；”分隔。 [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>随着PHP网站的流行，国内越来越多的站长使用php开发网站或者使用相关的php开源网站（例如：DeDeCMS、phpWind、康盛的Discuz！、wordpress等一些目前比较流行的开源网站），对于一些刚开始接触PHP语言或者刚开始建立自己站点的人来说，在本地测试php网站无疑是件非常重要的事情，因为这样可以在本地做若干的调试，而不用去担心网络问题以及运营商问题。接下来，笔者将WindowsXP(Sp3)下，搭建和配置php运行环境做一个简单的介绍：</p>
<p>1.安装准备</p>
<p>1.1Apache下载,官方地址(<a href="http://httpd.apache.org/">http://httpd.apache.org/</a>)，此处笔者下载版本的是Apache HTTP Server 2.2.22，使用的是OpenSSL的版本(httpd-2.2.22-win32-x86-openssl-0.9.8t.msi)，如图</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/1.png"><img class="aligncenter size-full wp-image-80" title="1" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/1.png" alt="" width="642" height="242" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>1.2PHP下载，官方地址(http:// <a href="http://www.php.net/">www.php.net</a>)，此处下载的是Php5(php-5.2.17-Win32-VC6-x86)</p>
<p>1.3Mysql下载，官方地址(<a href="http://www.mysql.com/downloads/">http://www.mysql.com/downloads/</a>)，此处使用的是Mysql5(mysql-essential-5.1.57-win32.zip)</p>
<p>2.安装Apache HTTP Server</p>
<p>2.1运行下载好的“httpd-2.2.22-win32-x86-openssl-0.9.8t.msi”文件，出现如下安装界面，如图</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/2.png"><img class="aligncenter size-full wp-image-36" title="2" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/2.png" alt="" width="502" height="382" /></a></p>
<p>红色框内显示的是apache的版本号，我们直接点击“Next”进入下一步；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/3.png"><img class="aligncenter size-full wp-image-37" title="3" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/3.png" alt="" width="503" height="379" /></a></p>
<p>出现软件安装许可条例，这里直接选择“I accept the terms in the license agreement”；然后点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/5.png"><img class="aligncenter size-full wp-image-38" title="5" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/5.png" alt="" width="500" height="385" /></a></p>
<p>对话框显示的是软件相关须知（如果您安装软件的时候很有耐心，可以考虑读一遍，看看自己的英文水平如何），这里我们直接点击“Next”；<span id="more-33"></span></p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/6.png"><img class="aligncenter size-full wp-image-39" title="6" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/6.png" alt="" width="504" height="384" /></a></p>
<p>这里是要填写服务的相关信息，Network Domain这一项是填写你的域名(如：xxx.com);Server Name这一项填写你的服务器名称(如：<a href="http://www.xxx.com/">www.xxx.com</a>)；Administrator’s Email Address这一项填管理员的邮箱地址；在本地配置，以上三个栏目均可以随意填写，有效无效都可以。下面2个选项，第一个是为系统所有的用户安装，使用80端口；第二是只为当前用户安装，使用8080端口；一般情况我们默认第一个，然后点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/7.png"><img class="aligncenter size-full wp-image-40" title="7" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/7.png" alt="" width="496" height="380" /></a></p>
<p>这一步是让你选择2种安装模式类型，“Typical”是经典模式，也就是默认安装模式；“Custom”是自定义安装，就是可以选择安装路径和软件的一些功能选择；笔者此处选择“Custom”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/8.png"><img class="aligncenter size-full wp-image-41" title="8" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/8.png" alt="" width="499" height="382" /></a></p>
<p>我们此处讲软件的所以功能都选上，并修改了软件的安装位置，笔者此处选在E盘的一个目录下，你也可以选择到自己想要安装到的目录；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/9.png"><img class="aligncenter size-full wp-image-42" title="9" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/9.png" alt="" width="502" height="383" /></a></p>
<p>准备安装，此处点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/10.png"><img class="aligncenter size-full wp-image-43" title="10" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/10.png" alt="" width="500" height="382" /></a></p>
<p>此处无需操作，等待一下；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/11.png"><img class="aligncenter size-full wp-image-44" title="11" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/11.png" alt="" width="499" height="382" /></a></p>
<p>完成，点击“Finish”完成安装。</p>
<p style="text-align: left;">此时电脑任务栏右侧的状态栏出现Apache的图标<a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/12.png"><img class="size-full wp-image-45 aligncenter" title="12" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/12.png" alt="" width="239" height="29" /></a></p>
<p>表示apache服务已经正在运行；</p>
<p>此时，我们可以在浏览器地址栏中输入<a href="http://127.0.0.1/">http://127.0.0.1</a>访问，浏览器显示文字“It Works！”，表示服务状态正常。</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/13.png"><img class="aligncenter size-full wp-image-46" title="13" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/13.png" alt="" width="472" height="334" /></a></p>
<p>2.2接下来对Apache服务器进行一些简单的配置，首先我们从程序中打开Apache的配置文件，如图：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/14.png"><img class="aligncenter size-full wp-image-47" title="14" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/14.png" alt="" width="641" height="330" /></a></p>
<p>点击后弹出一个记事本的文档</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/15.png"><img class="aligncenter size-full wp-image-48" title="15" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/15.png" alt="" width="625" height="520" /></a></p>
<p>这里我们要配置下网站文件的存放位置，即网站根目录，默认是在apache安装文件中的“htdocs”；默认位置为“E:/webdev/Apache2.2/htdocs”；为了平时方便管理，我们讲网站的根目录放在一个比较方便的位置，点击记事本的查找选项，查找“DocumentRoot”，查到如图显示信息：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/16.png"><img class="aligncenter size-full wp-image-49" title="16" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/16.png" alt="" width="607" height="475" /></a></p>
<p>我们将“E:/webdev/Apache2.2/htdocs”改成“E:/webdev/htdocs”，同样，我们通过查找“Directory”，找到：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/17.png"><img class="aligncenter size-full wp-image-50" title="17" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/17.png" alt="" width="623" height="454" /></a></p>
<p>我们同样将“E:/webdev/Apache2.2/htdocs”改成“E:/webdev/htdocs”；接着，我们找到“DirectoryIndex”，即目录索引（在指定的文件目录下，默认显示的文件名）找到此处：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/18.png"><img class="aligncenter size-full wp-image-51" title="18" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/18.png" alt="" width="567" height="368" /></a></p>
<p>系统默认已经写了一个“Index.html”，我们可以在后面添加自己想要的，比如“Index.php Index.htm”（以单个半角空格隔开）等等。系统默认会从左侧开始按优先顺序来显示。设置好了后，我们点击保存或者使用“Ctrl+S”。</p>
<p>OK，Apache服务器的安装和初步配置已经完成。</p>
<p>3.安装PHP(此处为php5)</p>
<p>3.1首先将下载好的php压缩包解压到你指定的目录下，笔者是放在“E:\webdev\”目录下，</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/19.png"><img class="aligncenter size-full wp-image-52" title="19" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/19.png" alt="" width="686" height="177" /></a></p>
<p>接下来，要对php进行配置了，打开php文件夹，找到“php.ini-dist”文件，这是php的配置文件，我们现将其重命名为“php.ini”，然后用记事本打开，如图</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/20.png"><img class="aligncenter size-full wp-image-53" title="20" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/20.png" alt="" width="566" height="456" /></a></p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/21.png"><img class="aligncenter size-full wp-image-54" title="21" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/21.png" alt="" width="617" height="500" /></a></p>
<p>接下来我们要配置下php的扩展模块，找到“Windows Extensions”，如图所示：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/22.png"><img class="aligncenter size-full wp-image-55" title="22" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/22.png" alt="" width="384" height="512" /></a></p>
<p>红线框内的就是php可以加载的模块，这里要说明的是在“extensions”前加“；”的表示此模块未加载，如需要加载，直接将“extensions”前的“；”去掉即可，若php文件中的ext文件没有此模块.dll文件，则将加载失败。我们接下来需要配置mysql，所以我们将其中关于mysql的模块加载上去，即讲此模块前的“；”去掉，然后保存文档。这里有一点需要提一下，就是在加载其他模块时，需要指定模块的位置，要不然在重启Apache服务器的时候，会提示找不到模块，我们这里设定一下相关环境变量，可以快速解决这个问题，具体操作如下：</p>
<p>右击我的电脑-》属性-》高级-》环境变量-》Path，这里以笔者安装的目录为例，在编辑框中添加“;E:\webdev\php; E:\webdev\php\ext”注意，以“；”分隔。</p>
<p style="text-align: center;"><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/23.png"><img class="aligncenter size-full wp-image-56" title="23" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/23.png" alt="" width="591" height="373" /></a></p>
<p style="text-align: left;">3.2下面进行php与Apache相结合的配置过程，php将通过module方式与Apache相结合，我们打开Apache的配置文件，找到“module”这一块内容，如图：</p>
<p style="text-align: left;"><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/24.png"><img class="aligncenter size-full wp-image-57" title="24" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/24.png" alt="" width="598" height="452" /></a></p>
<p>在上面加上“LoadModule php5_module E:/webdev/php/php5apache2_2.dll”和“PHPIniDir E:/webdev/php”注意，此处网上有些教程加载的模块的写的是“php5apache2.dll”，笔者试过之后，在重启apache的时候会出现错误，所以此处应是“php5apache2_2.dll”。</p>
<p>然后通过查找方式找到“AddType”，找到如图所示的地方：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/25.png"><img class="aligncenter size-full wp-image-58" title="25" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/25.png" alt="" width="615" height="346" /></a></p>
<p>加上红框中缩写的文件类型就可以了，笔者加的这2种文件类型就是可以执行php的文件类型，你还可以加其他的文件类型</p>
<p>此时，php与apache的配置完成，我们可以编辑一个php文件，让其在浏览器中运行查看是否能够运行php文件。编辑一个如下php文件：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/26.png"><img class="aligncenter size-full wp-image-59" title="26" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/26.png" alt="" width="325" height="227" /></a></p>
<p>保存好，在浏览器中输入：<a href="http://127.0.0.1/test.php">http://127.0.0.1/test.php</a>，运行结果如图所示，表示成功了。</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/27.png"><img class="aligncenter size-full wp-image-60" title="27" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/27.png" alt="" width="618" height="411" /></a></p>
<p>&nbsp;</p>
<p>4.安装Mysql(此处以Mysql5)</p>
<p>笔者此处下载的是mysql-essential-5.1.57-win32.zip版本，您可以自行从官网下载。解压缩后点击安装文件，出现安装画面如图：</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/28.png"><img class="aligncenter size-full wp-image-61" title="28" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/28.png" alt="" width="505" height="387" /></a></p>
<p>这里会显示出你安装的版本号，我们点击“Next”，进入下一步；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/29.png"><img class="aligncenter size-full wp-image-62" title="29" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/29.png" alt="" width="502" height="380" /></a></p>
<p>跟前面安装一样，这里当然要选择“I accept the terms in the license agreement”，然后点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/30.png"><img class="aligncenter size-full wp-image-63" title="30" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/30.png" alt="" width="501" height="386" /></a></p>
<p>这里显示要我们选择安装类型，三种分别为“Typical”（经典，适用于一般用户）、“Complete”（完全安装）、“Custom”（用户自定义），这里我们选择“Custom”，点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/31.png"><img class="aligncenter size-full wp-image-64" title="31" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/31.png" alt="" width="500" height="379" /></a></p>
<p>如图所示，我们这里将需要安装的功能模块都选上，然后点击“change…”改变软件的安装路径，笔者这里写的是自己本机的一个路径，您可以自己定义自己的安装位置，然后点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/32.png"><img class="aligncenter size-full wp-image-65" title="32" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/32.png" alt="" width="502" height="377" /></a></p>
<p>安装过程中，安装完成后出现以下界面；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/33.png"><img class="aligncenter size-full wp-image-66" title="33" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/33.png" alt="" width="500" height="379" /></a></p>
<p>这个们不用管，继续“Next”；直到出现以下界面；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/34.png"><img class="aligncenter size-full wp-image-67" title="34" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/34.png" alt="" width="501" height="378" /></a></p>
<p>这一步是提示完成安装并开始配置您安装的Mysql，我们点击“Finish”进入配置流程；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/35.png"><img class="aligncenter size-full wp-image-68" title="35" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/35.png" alt="" width="502" height="378" /></a></p>
<p>继续点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/36.png"><img class="aligncenter size-full wp-image-69" title="36" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/36.png" alt="" width="503" height="379" /></a></p>
<p>这里配置有两种可供选择，一是“Detailed Configuration”（详细配置），二是“Standard Configuration”（标准配置），我们这里选择“Detailed Configuration”，点击“Next”继续；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/37.png"><img class="aligncenter size-full wp-image-70" title="37" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/37.png" alt="" width="499" height="377" /></a></p>
<p>这里对话框中是让您选择一种服务类型，“Developer Machine”表明这是一个开发测试服务类型，占用的系统资源相对较少、“Server Machine”是指服务类型，占用资源中等、“Detailed MySql Server Machine”是指专门服务类型，须占用全部可用资源，我们一般选择“Server Machine”，点击“Next”继续    t;</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/38.png"><img class="aligncenter size-full wp-image-71" title="38" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/38.png" alt="" width="499" height="385" /></a></p>
<p>这里是让你选择数据库类型的用途，“Multifunctional Database”（多功能数据库），“Transactional Database Only”（服务器类型，用于事务处理），“No-Transactional Database Only”（非事务处理，做一般简单记录用），一般选择“Transactional Database Only”，点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/39.png"><img class="aligncenter size-full wp-image-72" title="39" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/39.png" alt="" width="498" height="377" /></a></p>
<p>这个界面显示的是 InnoDB Tablespace 设置，就是对数据空间大小进行配置，这里笔者默认系统选择，直接点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/40.png"><img class="aligncenter size-full wp-image-73" title="40" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/40.png" alt="" width="501" height="383" /></a></p>
<p>这里显示的是选择你的网站的访问量和连接数，这里我们选择“Online Transactional Processing（OLTP）”（约500连接数），当然你也可以选择“Manual Setting”进行自定义连接数，点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/41.png"><img class="aligncenter size-full wp-image-74" title="41" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/41.png" alt="" width="498" height="382" /></a></p>
<p>这个界面显示网络配置选项，我们将两个复选框打上勾，图中红色框部分是“启用‘TCP/IP’网络连接”，端口默认号，一般情况下，我们不做更改；点击“Next”下一步；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/42.png"><img class="aligncenter size-full wp-image-75" title="42" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/42.png" alt="" width="496" height="375" /></a></p>
<p>这个是对数据库的语言编码进行设置，笔者这里选择第三项，自己选择“GBK”；点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/43.png"><img class="aligncenter size-full wp-image-76" title="43" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/43.png" alt="" width="503" height="379" /></a></p>
<p>设置mysaql是否安装为windows服务，我们这里将图中复选框都选上。点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/44.png"><img class="aligncenter size-full wp-image-77" title="44" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/44.png" alt="" width="500" height="376" /></a></p>
<p>这里修改Root用户的密码，自行设置即好。点击“Next”；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/45.png"><img class="aligncenter size-full wp-image-78" title="45" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/45.png" alt="" width="500" height="377" /></a></p>
<p>上述设置没有需要修改的话，我们点击“Execute”执行；</p>
<p><a href="http://www.newtalker.com/blog/wp-content/uploads/2012/04/46.png"><img class="aligncenter size-full wp-image-79" title="46" src="http://www.newtalker.com/blog/wp-content/uploads/2012/04/46.png" alt="" width="499" height="376" /></a></p>
<p>完成配置，点击“Finish”完成。</p>
<p>重启服务即可。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/33.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>新年快乐</title>
		<link>http://www.newtalker.com/blog/32.html</link>
		<comments>http://www.newtalker.com/blog/32.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 12:19:07 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=32</guid>
		<description><![CDATA[龙年到了，祝家人、朋友、同事和同学们在新的一年里身体健康，幸福快乐！新的一年，新的起点，加油吧！<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>龙年到了，祝家人、朋友、同事和同学们在新的一年里身体健康，幸福快乐！新的一年，新的起点，加油吧！</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F32.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/32.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>没事玩玩之HTC Desire S(G12) 相关FOTA Client以及系统软件更新体验</title>
		<link>http://www.newtalker.com/blog/31.html</link>
		<comments>http://www.newtalker.com/blog/31.html#comments</comments>
		<pubDate>Sat, 15 Oct 2011 14:20:26 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Desire S]]></category>
		<category><![CDATA[FOTA]]></category>
		<category><![CDATA[G12]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[什么是FOTA]]></category>
		<category><![CDATA[安卓]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=31</guid>
		<description><![CDATA[今天晚上用我的Desire S上网的时候，一个软件更新提示出现了，这个更新提示在暑假中曾经出现过，苦于当时没有wlan链接，不敢轻易下载更新，更重要的一点就是不知道这两个更新具体是干嘛用的，FotaClient (513kb) 点击详情后看到是 Fota Client User Interface On the Phone，另外一个 FotaScheduling Applicatio(72kb)点开详情后是 Scheduling the Check In Period ，就这两个。我机子DS是今年6月份纳入的，当时国内行货还木有上市，是销往新加坡的机子。买的时候觉得蛮不错的。机子是S-on的，并没有解锁。不过使用很方便。转到刚才的那2个更新上，一看这个两个更新，我并不知道其真正的更新内容，于是去各种机油论坛上转了一遍，有不少人也是提示更新了，有的机油们更新了，有的还不敢轻易更新。至于这个更新是干嘛的机油们并没有讨论清楚。于是我就浏览HTC官网的相关信息，但是在中文官方网站并没有获取到想要的信息，后来一想，既然是销往国外的，我应该到HTC海外官网上去看哈，于是找到了http://www.htc.com/sea，HTC的海外官网，在help的页面下，我发现了(FOTA)几个字眼，也发现了很熟悉的机型HTC Desire HD，遂接着看了下面的解释，解释是英语的，我原文引用： Your phone will receive a notification for a FOTA update when it is made available. The new Build number after the update will be 2.50.707.4 (From the Home Screen on your device go to [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F12.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于CDMA2000 1x</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F14.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">3G标准</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F18.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">百度发布百度影音软件</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>今天晚上用我的Desire S上网的时候，一个软件更新提示出现了，这个更新提示在暑假中曾经出现过，苦于当时没有wlan链接，不敢轻易下载更新，更重要的一点就是不知道这两个更新具体是干嘛用的，FotaClient (513kb) 点击详情后看到是 Fota Client User Interface On the Phone，另外一个 FotaScheduling Applicatio(72kb)点开详情后是 Scheduling the Check In Period ，就这两个。我机子DS是今年6月份纳入的，当时国内行货还木有上市，是销往新加坡的机子。买的时候觉得蛮不错的。机子是S-on的，并没有解锁。不过使用很方便。转到刚才的那2个更新上，一看这个两个更新，我并不知道其真正的更新内容，于是去各种机油论坛上转了一遍，有不少人也是提示更新了，有的机油们更新了，有的还不敢轻易更新。至于这个更新是干嘛的机油们并没有讨论清楚。于是我就浏览HTC官网的相关信息，但是在中文官方网站并没有获取到想要的信息，后来一想，既然是销往国外的，我应该到HTC海外官网上去看哈，于是找到了http://www.htc.com/sea，HTC的海外官网，在help的页面下，我发现了(FOTA)几个字眼，也发现了很熟悉的机型HTC Desire HD，遂接着看了下面的解释，解释是英语的，我原文引用：</p>
<blockquote><p>Your phone will receive a notification for a FOTA update when it is made available. The new</p>
<p>Build number after the update will be 2.50.707.4 (From the Home Screen on your device go to</p>
<p>MENU&gt; Settings&gt; About phone&gt; Software information&gt; Software number). Update: Data Transfer</p>
<p>application enhancement (Highly recommended for former Blackberry users)。</p></blockquote>
<p>大意就是介绍下最近的软件更新通知，最后括号中提到了强烈推荐先前用黑莓手机的用户更新。看来这么多，我还是不知道FOTA是做啥的。</p>
<p>写到这边时，我的手机上前面提示的2个更新已经更新完毕，并要求重启手机完成更新，手机重启后，刚连上wlan就提示有更新，我一看是一个系统更新提示，作用是，提升系统性能，大概三十几兆的样子，我一想，既然都更新了，那就都更新吧，到这时，系统更新的下载已经达到22%了。</p>
<p>突然之间，我想到了FOTA Client，想想，这个FOTA应该是提供手机下载软件更新的一种客户端工具或者技术吧。因为一开始就先更新的FOtA Cient，然后更新好了，才会有系统软件更新，听起来似乎就是这么回事，我突然又想到了维基百科，果然给力哈。给出了FOTA的解释，原文引用如下：</p>
<blockquote><p>FOTA is an acronym for Firmware Over-the-Air. It is used for upgrades to mobile phones and</p>
<p>PDAs. The feature goes by several names including Software Update, Firmware Update or Device</p>
<p>Management. Originally, firmware updates required visiting a specific service center, every</p>
<p>mobile brand having their own. Another method has been upgrading by connecting your phone</p>
<p>via a cable to your PC. Both these methods are considered inconvenient by consumers and also</p>
<p>depend heavily on consumers to seek out the upgrade, and therefore the majority of mobile</p>
<p>phone manufacturers and operators have now adopted FOTA technology for their handsets. If</p>
<p>the mobile phone has FOTA capability, you can instead download the firmware upgrade over the</p>
<p>air directly from your mobile phone service provider. It also allows manufacturers and</p>
<p>operators to &#8220;push out&#8221; firmware upgrades to ensure that mobile consumers have the latest</p>
<p>software improvements, which helps reduce customer support costs and increase consumer</p>
<p>satisfaction. The process typically takes between 3 and 10 minutes, depending on the size of</p>
<p>the upgrade file and the speed of your wireless connection.</p></blockquote>
<p>大意就是解释FOTA是一种移动终端软件升级技术，即FOTA (Firmware Over-the-Air)。这样的解释与我先前想法大致相同。现在总算明白了一些。</p>
<p>更新是个漫长的过程，不过要取决于什么样的网络。我的wlan还是比较快的。</p>
<p>更新系统后，并没有什么特别变化，但是从手机的设置-》手机信息-》软件信息中，可以发现，版本号发<br />
生了改变。</p>
<p>ps:大家更新前，要先做备份，我还是使用91手机助手备份的。</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F12.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于CDMA2000 1x</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F14.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">3G标准</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F18.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F31.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">百度发布百度影音软件</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/31.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>没事玩玩之硬盘安装Ubuntu</title>
		<link>http://www.newtalker.com/blog/28.html</link>
		<comments>http://www.newtalker.com/blog/28.html#comments</comments>
		<pubDate>Wed, 07 Sep 2011 03:10:36 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=28</guid>
		<description><![CDATA[最近，发现办公室电脑有点慢，系统是安装的Xp sp3.想重装下电脑，结果在电脑磁盘里找了半天也木有找到一个ghost文件，抽屉也无光盘，看来今天重新安装xp是没指望了。于是想到网上找找资源，结果无意中看到Ubuntu10.10和Ubuntu11.04的链接。突然之间就想安装个Ubuntu试试，想到自己第一次安装 Ubuntu还是在上大二的时候，就特别想在用用。于是准备下载Ubuntu10.10的桌面版本。由于是教育网，本身有些网站就是访问不了的，于是找了半天找到一还不错资源，经过漫长的等待，下载完成。下载下来的是ISO镜像文件。结果发现自己办公抽屉里的空白光碟都木有了，杯具哈。想到以前在实习的时候曾经直接硬盘安装了Xp（映像特别深得，记得那台老Acer由于机子年代久远，光驱坏了，也不能支持USB启动，重装无望，结果后来和小组其他三个人实验了硬盘安装，也成功了）。于是我想到了硬盘安装，对于Ubuntu的安装理论上其实非常快的，也木有什么特别的地方。但硬盘安装还是不是清楚，于是上网百度些资料看看（感谢各位网友哈），发现其实在XP底下安装起来也是蛮简单的。下面就是我的安装过程： 1.下载Ubuntu10.10的镜像文件 2.下载Grub4Dos，Grub4Dos是一个多系统引导软件，就是要用这个软件来引导系统。这个软件我搜索好久，才在一个人的google code项目找到下载. 3.打开电脑的C盘（也就是一般安装Xp系统的系统盘），首先先从菜单栏找到工具-》文件夹选项-》查看，将对话框中的“隐藏受保护的操作系统文件（推荐）”前的复选框的“√”去掉。然后，在C盘根目录下找到Boot.ini文件，右击它，看其属性，将只读前面的勾去掉。然后使用文本编辑工具记事本打开或者 Notepad++打开，在文档最后一行添上“C:\Grldr=&#8221;install Ubuntu&#8221;”（不包含外面的双引号），这个其实就是在电脑开机引导画面上会加上个install Ubuntu的选项，待会引导硬盘安装需要选择这一项。如下图： 4.将刚才下载下来的Grub4Dos中的menu.lst和grldr两个文件复制到C盘根目录，使用记事本或者Notepad++打开menu.lst，同样在文档末尾添加上一下内容： title Install Ubuntu root (hd0,0) kernel (hd0,0)/vmlinuz boot=casper iso-scan/filename=/ubuntu.iso ro quiet splash locale=zh_CN.UTF-8 initrd (hd0,0)/initrd.lz 如图： 5.接下来，将下载下来的Ubuntu镜像文件复制至C盘根目录，然后将镜像其中的.disk文件复制出来，接着再将镜像中的casper文件目录下的initrd.lz和vmlinuz文件也复制到C盘根目录。接下来所要做的就好多了。 6.重启计算机，通过Grub引导程序，选择刚才你添加的“install Ubuntu”这一项，接着就进入Ubuntu的安装模式了。在进入安装前，建议首先打开终端窗口，输入： sudo umount -l /isodevice，这样是防止在安装过程的分区过程中会提示不能卸载/isodevice的状态。接下来，你就是倒杯水喝喝了，我安装是在连网的情况下安装，整个安装过程比较快。 7.最后一个很重要的，当然是针对多系统用户哈，就是找回Xp的启动选择项，要不然你就只能进Ubuntu系统，而不能看进入xp的选项，方法如下： 在终端窗口中输入 sudo add-apt-repository ppa:danielrichter2007/grub-customizer sudo apt-get update sudo apt-get install grub-customizer 然后重启下就可以了。 OK，大功告成！（Ps：感谢网友分享的经验）<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>最近，发现办公室电脑有点慢，系统是安装的Xp sp3.想重装下电脑，结果在电脑磁盘里找了半天也木有找到一个ghost文件，抽屉也无光盘，看来今天重新安装xp是没指望了。于是想到网上找找资源，结果无意中看到Ubuntu10.10和Ubuntu11.04的链接。突然之间就想安装个Ubuntu试试，想到自己第一次安装<br />
Ubuntu还是在上大二的时候，就特别想在用用。于是准备下载Ubuntu10.10的桌面版本。由于是教育网，本身有些网站就是访问不了的，于是找了半天找到一还不错资源，经过漫长的等待，下载完成。下载下来的是ISO镜像文件。结果发现自己办公抽屉里的空白光碟都木有了，杯具哈。想到以前在实习的时候曾经直接硬盘安装了Xp（映像特别深得，记得那台老Acer由于机子年代久远，光驱坏了，也不能支持USB启动，重装无望，结果后来和小组其他三个人实验了硬盘安装，也成功了）。于是我想到了硬盘安装，对于Ubuntu的安装理论上其实非常快的，也木有什么特别的地方。但硬盘安装还是不是清楚，于是上网百度些资料看看（感谢各位网友哈），发现其实在XP底下安装起来也是蛮简单的。下面就是我的安装过程：</p>
<p>1.下载Ubuntu10.10的镜像文件<br />
2.下载Grub4Dos，Grub4Dos是一个多系统引导软件，就是要用这个软件来引导系统。这个软件我搜索好久，才在一个人的google code项目找到下载.<br />
3.打开电脑的C盘（也就是一般安装Xp系统的系统盘），首先先从菜单栏找到工具-》文件夹选项-》查看，将对话框中的“隐藏受保护的操作系统文件（推荐）”前的复选框的“√”去掉。然后，在C盘根目录下找到Boot.ini文件，右击它，看其属性，将只读前面的勾去掉。然后使用文本编辑工具记事本打开或者<br />
Notepad++打开，在文档最后一行添上“C:\Grldr=&#8221;install Ubuntu&#8221;”（不包含外面的双引号），这个其实就是在电脑开机引导画面上会加上个install Ubuntu的选项，待会引导硬盘安装需要选择这一项。如下图：<br />
<a href="http://www.newtalker.com/blog/wp-content/uploads/2011/09/bootini.png"><img class="aligncenter size-medium wp-image-29" title="bootini" src="http://www.newtalker.com/blog/wp-content/uploads/2011/09/bootini-300x109.png" alt="" width="300" height="109" /></a><br />
4.将刚才下载下来的Grub4Dos中的menu.lst和grldr两个文件复制到C盘根目录，使用记事本或者Notepad++打开menu.lst，同样在文档末尾添加上一下内容：<br />
title Install Ubuntu<br />
root (hd0,0)<br />
kernel (hd0,0)/vmlinuz boot=casper iso-scan/filename=/ubuntu.iso ro quiet splash<br />
locale=zh_CN.UTF-8<br />
initrd (hd0,0)/initrd.lz<br />
如图：<a href="http://www.newtalker.com/blog/wp-content/uploads/2011/09/menu.png"><img src="http://www.newtalker.com/blog/wp-content/uploads/2011/09/menu-300x167.png" alt="" title="menu" width="300" height="167" class="aligncenter size-medium wp-image-30" /></a><br />
5.接下来，将下载下来的Ubuntu镜像文件复制至C盘根目录，然后将镜像其中的.disk文件复制出来，接着再将镜像中的casper文件目录下的initrd.lz和vmlinuz文件也复制到C盘根目录。接下来所要做的就好多了。<br />
6.重启计算机，通过Grub引导程序，选择刚才你添加的“install Ubuntu”这一项，接着就进入Ubuntu的安装模式了。在进入安装前，建议首先打开终端窗口，输入： sudo umount -l /isodevice，这样是防止在安装过程的分区过程中会提示不能卸载/isodevice的状态。接下来，你就是倒杯水喝喝了，我安装是在连网的情况下安装，整个安装过程比较快。<br />
7.最后一个很重要的，当然是针对多系统用户哈，就是找回Xp的启动选择项，要不然你就只能进Ubuntu系统，而不能看进入xp的选项，方法如下：<br />
在终端窗口中输入<br />
sudo add-apt-repository ppa:danielrichter2007/grub-customizer<br />
sudo apt-get update<br />
sudo apt-get install grub-customizer<br />
然后重启下就可以了。<br />
OK，大功告成！（Ps：感谢网友分享的经验）</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/28.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone 5 外观造型</title>
		<link>http://www.newtalker.com/blog/27.html</link>
		<comments>http://www.newtalker.com/blog/27.html#comments</comments>
		<pubDate>Tue, 23 Aug 2011 07:15:24 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone5]]></category>
		<category><![CDATA[苹果]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=27</guid>
		<description><![CDATA[<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><embed type="application/x-shockwave-flash" width="480" height="400" src="http://player.youku.com/player.php/sid/XMjkzNTYzODMy/v.swf" allowfullscreen="true" quality="high" align="middle" allowscriptaccess="always"></embed></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/27.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iOS 5</title>
		<link>http://www.newtalker.com/blog/26.html</link>
		<comments>http://www.newtalker.com/blog/26.html#comments</comments>
		<pubDate>Sat, 18 Jun 2011 00:30:13 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS5]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone5]]></category>
		<category><![CDATA[苹果]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=26</guid>
		<description><![CDATA[iOS5的官方演示 苹果的操作系统果然精湛哈<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F12.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于CDMA2000 1x</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>iOS5的官方演示<br />
<embed width="480" height="400" src="http://player.youku.com/player.php/sid/XMjczNzU2NDMy/v.swf"></embed><br />
苹果的操作系统果然精湛哈</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F20.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone5造型设计流出</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F16.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">MD5加密算法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F12.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于CDMA2000 1x</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/26.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>五月精彩大片</title>
		<link>http://www.newtalker.com/blog/25.html</link>
		<comments>http://www.newtalker.com/blog/25.html#comments</comments>
		<pubDate>Sun, 15 May 2011 03:06:07 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=25</guid>
		<description><![CDATA[今年五月的大片很high哈，特期待呵呵，偶要一部一部的都看完，看看预告吧O(∩_∩)O~，迫不及待了<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F19.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">一生中最值得珍藏的电影台词</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3》正式高清版预告片发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F21.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3:月黑之时》Dark of The Moon</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>今年五月的大片很high哈，特期待呵呵，偶要一部一部的都看完，看看预告吧O(∩_∩)O~，迫不及待了<br />
<embed src="http://player.youku.com/player.php/sid/XMjYzMzg3OTY4/v.swf" quality="high" width="600" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F19.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">一生中最值得珍藏的电影台词</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3》正式高清版预告片发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F21.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3:月黑之时》Dark of The Moon</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/25.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;贱&#8221;循环</title>
		<link>http://www.newtalker.com/blog/24.html</link>
		<comments>http://www.newtalker.com/blog/24.html#comments</comments>
		<pubDate>Fri, 13 May 2011 14:17:42 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=24</guid>
		<description><![CDATA[你喜欢她，她不理你，你点开她的qq窗口，想要发几句话，又觉得不值，何必呢？于是你关上了窗口，还没到两分钟呢，你又给打开了，输入想说的话，又全给删了，再次关上窗口。 5分钟以后&#8230;&#8230; 你又打开了她的窗口，下定决心要写点什么。你写了一大段，又全删了，关上窗口。 10分钟以后&#8230;&#8230; 你又写了一大段，又全删了，然后写：你在干嘛呢？ 一小时后&#8230;&#8230;. 她回复了：聊天。 显然不是在和你聊天，但是你高兴得跟2b似的，又蹦又跳啊，在屋子里转圈儿啊！等你美完了，回到电脑前，想好了一大堆话，一边打字一边抠脚皮，然后乐呵呵地按下了回车。 两小时以后&#8230;&#8230; 她有回复了：我下了啊，困了，88。 她和我说再见了！她和我说88了！于是你又美了美了，醉了醉了，一通乱激动。 三小时以后。 天快亮了，你上校内，看到了她两分钟以前的状态：我那么喜欢你，你连和我多说一句话都不愿意么。 你sb了，你真贱。 其实她比你还贱，只是我们犯贱的对象不一样，于是形成了一个贱循环： 你爱她&#8211;她爱他&#8211;他爱她&#8211;她爱她&#8211;她爱他&#8211;他爱他&#8211;他爱她&#8211;她爱你。 这时你的qq响了起来，你看了一眼，眉头一皱：擦，又是这烦女的，先不理她。           一小时以后&#8230;&#8230;      你还是点开了烦女的qq，看到一句话：你在干嘛呢？ 你一阵烦，自己喜欢的人却在和别人犯着贱，换谁谁不烦？       两小时以后&#8230;&#8230;. 你回复了烦女：聊天。     三小时以后&#8230;&#8230; 你看到了烦女发来的一大段聊天内容，你蛋一疼，关掉了窗口，却觉得不合适，又再次点开，写道： 我先下了啊，困了，88。 然后你在校内发了条状态：我那么喜欢你，你连和我多说一句话都不愿意么。 这就又形成了一个贱循环： 你烦她&#8211;她烦他&#8211;他烦他&#8211;他烦她&#8211;她烦她&#8211;她烦他&#8211;他烦她&#8211;她烦你。 你关上电脑，却又打开了电脑，日复一日，你不断去骚扰你喜欢的人，不断地拒绝喜欢你的人，这个循环也就一直继续了下去，没有尽头，没有结果。 然而就在这犯贱中，我们错过了真爱。 注：这是一朋友在百度贴吧中推荐看的，觉得虽然有些词语不雅，但是却淋漓尽致的描述了一种真实现象！<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>你喜欢她，她不理你，你点开她的qq窗口，想要发几句话，又觉得不值，何必呢？于是你关上了窗口，还没到两分钟呢，你又给打开了，输入想说的话，又全给删了，再次关上窗口。<br />
5分钟以后&#8230;&#8230;<br />
你又打开了她的窗口，下定决心要写点什么。你写了一大段，又全删了，关上窗口。<br />
10分钟以后&#8230;&#8230;<br />
你又写了一大段，又全删了，然后写：你在干嘛呢？<br />
一小时后&#8230;&#8230;.</p>
<p><span id="more-24"></span><br />
她回复了：聊天。<br />
显然不是在和你聊天，但是你高兴得跟2b似的，又蹦又跳啊，在屋子里转圈儿啊！等你美完了，回到电脑前，想好了一大堆话，一边打字一边抠脚皮，然后乐呵呵地按下了回车。<br />
两小时以后&#8230;&#8230;<br />
她有回复了：我下了啊，困了，88。<br />
她和我说再见了！她和我说88了！于是你又美了美了，醉了醉了，一通乱激动。<br />
三小时以后。<br />
天快亮了，你上校内，看到了她两分钟以前的状态：我那么喜欢你，你连和我多说一句话都不愿意么。<br />
你sb了，你真贱。<br />
其实她比你还贱，只是我们犯贱的对象不一样，于是形成了一个贱循环：</p>
<blockquote><p><strong>你爱她&#8211;她爱他&#8211;他爱她&#8211;她爱她&#8211;她爱他&#8211;他爱他&#8211;他爱她&#8211;她爱你。</strong></p></blockquote>
<p>这时你的qq响了起来，你看了一眼，眉头一皱：擦，又是这烦女的，先不理她。<br />
          一小时以后&#8230;&#8230;<br />
     你还是点开了烦女的qq，看到一句话：你在干嘛呢？<br />
你一阵烦，自己喜欢的人却在和别人犯着贱，换谁谁不烦？<br />
      两小时以后&#8230;&#8230;.<br />
你回复了烦女：聊天。<br />
    三小时以后&#8230;&#8230;<br />
你看到了烦女发来的一大段聊天内容，你蛋一疼，关掉了窗口，却觉得不合适，又再次点开，写道：<br />
我先下了啊，困了，88。<br />
然后你在校内发了条状态：我那么喜欢你，你连和我多说一句话都不愿意么。</p>
<p>这就又形成了一个贱循环：</p>
<blockquote><p><strong>你烦她&#8211;她烦他&#8211;他烦他&#8211;他烦她&#8211;她烦她&#8211;她烦他&#8211;他烦她&#8211;她烦你。</strong></p></blockquote>
<p>你关上电脑，却又打开了电脑，日复一日，你不断去骚扰你喜欢的人，不断地拒绝喜欢你的人，这个循环也就一直继续了下去，没有尽头，没有结果。</p>
<p>然而就在这犯贱中，我们错过了真爱。</p>
<p>注：这是一朋友在百度贴吧中推荐看的，觉得虽然有些词语不雅，但是却淋漓尽致的描述了一种真实现象！</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F28.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">没事玩玩之硬盘安装Ubuntu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F33.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Windows XP 安装和配置Apache2.2.22服务器+PHP5+Mysql5</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F24.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/24.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>《变形金刚3》正式高清版预告片发布</title>
		<link>http://www.newtalker.com/blog/23.html</link>
		<comments>http://www.newtalker.com/blog/23.html#comments</comments>
		<pubDate>Fri, 29 Apr 2011 01:18:32 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[Transformers]]></category>
		<category><![CDATA[变形金刚]]></category>
		<category><![CDATA[变形金刚3]]></category>
		<category><![CDATA[月黑之时]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=23</guid>
		<description><![CDATA[《变形金刚3》最新预告片发布了，抢先看哈O(∩_∩)O~<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F21.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3:月黑之时》Dark of The Moon</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F19.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">一生中最值得珍藏的电影台词</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">WordPress 3.1.2发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F14.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">3G标准</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><img title="tr3hb2" src="http://newtalker.googlecode.com/files/tr3hb1.jpg" alt="" width="600" height="222" /></p>
<p>《变形金刚3》最新预告片发布了，抢先看哈O(∩_∩)O~<br />
<embed width="600" height="500" src="http://player.youku.com/player.php/sid/XMjYyNzA4NjIw/v.swf"></embed></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F21.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3:月黑之时》Dark of The Moon</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F19.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">一生中最值得珍藏的电影台词</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">WordPress 3.1.2发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F14.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">3G标准</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.1.2发布</title>
		<link>http://www.newtalker.com/blog/22.html</link>
		<comments>http://www.newtalker.com/blog/22.html#comments</comments>
		<pubDate>Wed, 27 Apr 2011 04:33:56 +0000</pubDate>
		<dc:creator>jeff</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.newtalker.com/blog/?p=22</guid>
		<description><![CDATA[         今天登陆后台，面板上提示升级，呀，wordpress3.1.2版本可用，这么快，自己前段时间刚升级到wordpress3.1.1不久，又有新的升级了。wordpress英文官网已经放出下载，但简体中文官网还没有发布，不过繁体中文官网已经发布了。       wordpress3.1.2其实是对WordPress 3.1.1版本的安全更新，该本版修复了某些安全问题，比如网站的订阅者的权限使用者可以发布文章等。 英文官网下载：wordpress 3.1.2(En) 繁体中文官网下载：wordpress 3.1.2(中文繁体)<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F13.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">WordPress3.1.1 Final 发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F18.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">百度发布百度影音软件</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3》正式高清版预告片发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F25.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">五月精彩大片</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>         今天登陆后台，面板上提示升级，呀，wordpress3.1.2版本可用，这么快，自己前段时间刚升级到wordpress3.1.1不久，又有新的升级了。wordpress英文官网已经放出下载，但简体中文官网还没有发布，不过繁体中文官网已经发布了。<br />
      wordpress3.1.2其实是对WordPress 3.1.1版本的安全更新，该本版修复了某些安全问题，比如网站的订阅者的权限使用者可以发布文章等。</p>
<p>英文官网下载：<a href="http://wordpress.org/latest.zip">wordpress 3.1.2(En)</a></p>
<p>繁体中文官网下载：<a href="http://tw.wordpress.org/wordpress-3.1.2-zh_TW.zip">wordpress 3.1.2(中文繁体)</a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F13.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">WordPress3.1.1 Final 发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F18.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">百度发布百度影音软件</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F23.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">《变形金刚3》正式高清版预告片发布</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F27.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iPhone 5 外观造型</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F26.html&from=http%3A%2F%2Fwww.newtalker.com%2Fblog%2F22.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">iOS 5</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.newtalker.com/blog/22.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

