<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>热爱生命</title>
	<atom:link href="http://rui0304.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rui0304.wordpress.com</link>
	<description>我不去想是否能够成功，既然选择了远方，便只顾风雨兼程</description>
	<lastBuildDate>Sun, 19 Jul 2009 14:56:42 +0000</lastBuildDate>
	<language>zh-cn</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rui0304.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>热爱生命</title>
		<link>http://rui0304.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rui0304.wordpress.com/osd.xml" title="热爱生命" />
	<atom:link rel='hub' href='http://rui0304.wordpress.com/?pushpress=hub'/>
		<item>
		<title>mysql常用命令（转）</title>
		<link>http://rui0304.wordpress.com/2009/07/20/mysql%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4%ef%bc%88%e8%bd%ac%ef%bc%89/</link>
		<comments>http://rui0304.wordpress.com/2009/07/20/mysql%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4%ef%bc%88%e8%bd%ac%ef%bc%89/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 14:46:07 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=148</guid>
		<description><![CDATA[转载地址：http://hi.baidu.com/mianju/blog/item/882bc995eb58c44ad1135e50.html 第一招、mysql服务的启动和停止 net stop mysql net start mysql 第二招、登陆mysql 语法如下： mysql -u用户名 -p用户密码 键入命令mysql -uroot -p， 回车后提示你输入密码，输入12345，然后回车即可进入到mysql中了，mysql的提示符是： mysql&#62; 注意，如果是连接到另外的机器上，则需要加入一个参数-h机器IP 第三招、增加新用户 格式：grant 权限 on 数据库.* to 用户名@登录主机 identified by &#8220;密码&#8221; 如，增加一个用户user1密码为password1，让其可以在本机上登录， 并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入mysql，然后键入以下命令： grant select,insert,update,delete on *.* to user1@localhost Identified by &#8220;password1&#8243;; 如果希望该用户能够在任何机器上登陆mysql，则将localhost改为&#8221;%&#8221;。 如果你不想user1有密码，可以再打一个命令将密码去掉。 grant select,insert,update,delete on mydb.* to user1@localhost identified by &#8220;&#8221;; 第四招： 操作数据库 登录到mysql中，然后在mysql的提示符下运行下列命令，每个命令以分号结束。 1、 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=148&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/20/mysql%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4%ef%bc%88%e8%bd%ac%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>apache服务器， mysql相关命令</title>
		<link>http://rui0304.wordpress.com/2009/07/20/apache%e6%9c%8d%e5%8a%a1%e5%99%a8%ef%bc%8c-mysql%e7%9b%b8%e5%85%b3%e5%91%bd%e4%bb%a4/</link>
		<comments>http://rui0304.wordpress.com/2009/07/20/apache%e6%9c%8d%e5%8a%a1%e5%99%a8%ef%bc%8c-mysql%e7%9b%b8%e5%85%b3%e5%91%bd%e4%bb%a4/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 14:42:58 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=146</guid>
		<description><![CDATA[apache 目录：/etc/apache2 里面有apache2 配置文件 apache启动：sudo /etc/init.d/apache2 start(restart) mysql 目录：/etc/mysql mysql启动：sodu /etc/init.d/msyql restart mysql命令行操作数据库, 登陆: cd 到/etc/init.d/mysql下，mysql  -u root -p, 回车会告诉你输入root用户的密码 注： 无论是在启动mysql 还是 apache的时候，命令行似乎都必须从根目录开始，比如先到/etc/init.d/一之后,再 apache2 restart则不能重启，/etc/init.d/apache2 start(restart)则能正确启动，而进入mysql命令则不一样: /etc/init.d/mysql -u root -p则会提示：Usage: /etc/init.d/mysql start&#124;stop&#124;restart&#124;reload&#124;force-reload&#124;status<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=146&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/20/apache%e6%9c%8d%e5%8a%a1%e5%99%a8%ef%bc%8c-mysql%e7%9b%b8%e5%85%b3%e5%91%bd%e4%bb%a4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>设置 Drupal 中上传文件大小</title>
		<link>http://rui0304.wordpress.com/2009/07/20/%e8%ae%be%e7%bd%ae-drupal-%e4%b8%ad%e4%b8%8a%e4%bc%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f/</link>
		<comments>http://rui0304.wordpress.com/2009/07/20/%e8%ae%be%e7%bd%ae-drupal-%e4%b8%ad%e4%b8%8a%e4%bc%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 14:28:47 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=144</guid>
		<description><![CDATA[在 Drupal 中如果上传文件失败，有可能是大小限制，解决办法： 查看 php.ini 中 upload_max_filesize 大小，如果太小，重新设定一下较大值 重启服务器： /etc/init.d/apache2 restart 如果仍然不能上传，再修改 site configuration －&#62; file uploads-&#62;Default maximum file size per upload:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=144&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/20/%e8%ae%be%e7%bd%ae-drupal-%e4%b8%ad%e4%b8%8a%e4%bc%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>Aggregator</title>
		<link>http://rui0304.wordpress.com/2009/07/08/aggregator/</link>
		<comments>http://rui0304.wordpress.com/2009/07/08/aggregator/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 20:50:52 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=122</guid>
		<description><![CDATA[Aggregator is used for information sharing. Enable the module: Aggregator Administer-&#62;Content Management-&#62;Feed aggregtor Add category to add a catigory Add feed: Title: * The name of the feed (or the name of the website providing the feed). URL: * The fully-qualified URL of the feed. For example: Title: National Geographic News, URL: http://feeds.nationalgeographic.com/ng/News/News_Main Where is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=122&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/08/aggregator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>

		<media:content url="http://news.nationalgeographic.com/news/images/global/xml.gif" medium="image">
			<media:title type="html">After installing a news reader, click on this icon to download National Geographic News's XML/RSS feed.</media:title>
		</media:content>

		<media:content url="http://news.nationalgeographic.com/news/images/global/rss.gif" medium="image">
			<media:title type="html">After installing a news reader, click on this icon to download National Geographic News's XML/RSS feed.</media:title>
		</media:content>
	</item>
		<item>
		<title>模板文件的组织结构是怎么？哪些模板是必须的？模板的命名有什么约束？（转）</title>
		<link>http://rui0304.wordpress.com/2009/07/08/%e6%a8%a1%e6%9d%bf%e6%96%87%e4%bb%b6%e7%9a%84%e7%bb%84%e7%bb%87%e7%bb%93%e6%9e%84%e6%98%af%e6%80%8e%e4%b9%88%ef%bc%9f%e5%93%aa%e4%ba%9b%e6%a8%a1%e6%9d%bf%e6%98%af%e5%bf%85%e9%a1%bb%e7%9a%84%ef%bc%9f/</link>
		<comments>http://rui0304.wordpress.com/2009/07/08/%e6%a8%a1%e6%9d%bf%e6%96%87%e4%bb%b6%e7%9a%84%e7%bb%84%e7%bb%87%e7%bb%93%e6%9e%84%e6%98%af%e6%80%8e%e4%b9%88%ef%bc%9f%e5%93%aa%e4%ba%9b%e6%a8%a1%e6%9d%bf%e6%98%af%e5%bf%85%e9%a1%bb%e7%9a%84%ef%bc%9f/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 15:09:46 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=119</guid>
		<description><![CDATA[模板文件的组织结构是怎么？哪些模板是必须的？模板的命名有什么约束？ 模板中包括XHTML和PHP变量以及函数调用。模板中默认可用的PHP变量包括来自info文件中的区块变量，变量集中的变量（$variables的键），模板中可用的函数包括模板引擎中的函数，核心框架函数（如theme.inc、common.inc中的函数）。 变量集中常用的变量：$head_title, $base_path, $front_page, $search_box, $site_name, $site_slogan, $title<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=119&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/08/%e6%a8%a1%e6%9d%bf%e6%96%87%e4%bb%b6%e7%9a%84%e7%bb%84%e7%bb%87%e7%bb%93%e6%9e%84%e6%98%af%e6%80%8e%e4%b9%88%ef%bc%9f%e5%93%aa%e4%ba%9b%e6%a8%a1%e6%9d%bf%e6%98%af%e5%bf%85%e9%a1%bb%e7%9a%84%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>How to call a specific block inside our templete</title>
		<link>http://rui0304.wordpress.com/2009/07/08/how-do-i-call-a-specific-block-inside-my-template/</link>
		<comments>http://rui0304.wordpress.com/2009/07/08/how-do-i-call-a-specific-block-inside-my-template/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 14:13:17 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=112</guid>
		<description><![CDATA[当我们需要自己输出一个block，而不是让Drupal的block机制自己输入的时候，可以用 Module_invoke(&#8230;)函数来输出。 位置：主题文件page.tpl.php，位置自定。 Module_invoke can print block snippet into our page.tpl.php &#60;?php $block = module_invoke('module_name', 'block', 'view', 0); print $block['content']; ?&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=112&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/08/how-do-i-call-a-specific-block-inside-my-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>How to translate taxonomy terms 和翻译总结</title>
		<link>http://rui0304.wordpress.com/2009/07/06/how-to-translate-taxonomy-terms/</link>
		<comments>http://rui0304.wordpress.com/2009/07/06/how-to-translate-taxonomy-terms/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 08:26:47 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=83</guid>
		<description><![CDATA[1. As you create a multilingual vocabulary, you should choose &#8220;Per language terms. Different terms will be allowed for each language and they can be translated.&#8221; option under &#8220;Multilingual options&#8221; panel. 2. As you add terms, you should set language for that term from &#8220;Language&#8221; drop-down. EXAMPLE: Consider you have a vocabulary named Fruits; and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=83&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/06/how-to-translate-taxonomy-terms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>Drupal translation(Multilingual site)</title>
		<link>http://rui0304.wordpress.com/2009/07/06/drupal-translationmultilingual-site/</link>
		<comments>http://rui0304.wordpress.com/2009/07/06/drupal-translationmultilingual-site/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 22:10:29 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=79</guid>
		<description><![CDATA[Content translation: Required modules: i18n, translation_table, translation interface enable all the necessary modules. Content type configuration: Multilingual support: Disabled Enabled Enabled, with translation Create content, language must not be :language neutral When complete the contentation, we can see the translation links Taxonomy translation: Create vocabulary: Translation mode: None. No multilingual options for this vocabulary. Localize [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=79&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/06/drupal-translationmultilingual-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>Drupal contents 错误解决(user warning: Unknown column &#8216;u.signature_format&#8217; in &#8216;field list&#8217; query)</title>
		<link>http://rui0304.wordpress.com/2009/07/06/drupal-contents-%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3user-warning-unknown-column-u-signature_format-in-field-list-query/</link>
		<comments>http://rui0304.wordpress.com/2009/07/06/drupal-contents-%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3user-warning-unknown-column-u-signature_format-in-field-list-query/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 21:04:47 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=74</guid>
		<description><![CDATA[Drupal没有更新造成的错误。<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=74&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/06/drupal-contents-%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3user-warning-unknown-column-u-signature_format-in-field-list-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>
	</item>
		<item>
		<title>Block content translation</title>
		<link>http://rui0304.wordpress.com/2009/07/04/block-content-translation/</link>
		<comments>http://rui0304.wordpress.com/2009/07/04/block-content-translation/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 15:03:37 +0000</pubDate>
		<dc:creator>rui0304</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://rui0304.wordpress.com/?p=70</guid>
		<description><![CDATA[Drupal&#8217;s i18n module can translate block contents. To display blocks in multiple languages, you can use one of these approaches: Creating a different block for each language. Using string localization When you create a block, you can choose to assign it to a specific language or to all languages and use string translation. Method 1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rui0304.wordpress.com&amp;blog=7796755&amp;post=70&amp;subd=rui0304&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://rui0304.wordpress.com/2009/07/04/block-content-translation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bc10dc4f3a5e6a527cf1b4f83827584?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rui0304</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_translatable.png" medium="image">
			<media:title type="html">block translatable</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/create_block.png" medium="image">
			<media:title type="html">create a block</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_right.png" medium="image">
			<media:title type="html">block in right sidebar</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_display_on_home_page.png" medium="image">
			<media:title type="html">block on home page</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_display_spanish_no_trans.png" medium="image">
			<media:title type="html">block not translated.</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_search_1.png" medium="image">
			<media:title type="html">block search</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_enter_translation.png" medium="image">
			<media:title type="html">Block enter translation</media:title>
		</media:content>

		<media:content url="http://drupal-translation.com/sites/default/files/block_translated.png" medium="image">
			<media:title type="html">block translated to spanish</media:title>
		</media:content>
	</item>
	</channel>
</rss>
