<?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>DBAlife &#187; wordpress</title>
	<atom:link href="http://www.dbalife.com/archives/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dbalife.com</link>
	<description>网站系统架构实践</description>
	<lastBuildDate>Wed, 27 Jul 2011 09:57:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>用插件解决wordpress引号问题</title>
		<link>http://www.dbalife.com/archives/275.html</link>
		<comments>http://www.dbalife.com/archives/275.html#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:31:32 +0000</pubDate>
		<dc:creator>skywalker</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[杂七杂八]]></category>
		<category><![CDATA[quotmarks-replacer]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[引号]]></category>

		<guid isPermaLink="false">http://www.dbalife.com/?p=275</guid>
		<description><![CDATA[ Wordpress默认会将英文标点转换为中文全角标点，单纯写文字的话这是个不错的功能，但是如果文章中包含各种代码，尤其是单双引号，就惨不忍睹了…… Quotmarks Replacer 是一个通过禁用 wptexturize 函数，解决 WordPress 自动将半角的单引号、双引号和省略号转换为全角标点的问题。使后台输入的标点格式与前台读者浏览的标点格式保持一致的插件。 这里下载：http://wordpress.org/extend/plugins/quotmarks-replacer/ Related posts: 为Blog添加了Picasa相册插件
Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/234.html' rel='bookmark' title='为Blog添加了Picasa相册插件'>为Blog添加了Picasa相册插件</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p> Wordpress默认会将英文标点转换为中文全角标点，单纯写文字的话这是个不错的功能，但是如果文章中包含各种代码，尤其是单双引号，就惨不忍睹了……</p>
<p>Quotmarks Replacer 是一个通过禁用 wptexturize 函数，解决 WordPress 自动将半角的单引号、双引号和省略号转换为全角标点的问题。使后台输入的标点格式与前台读者浏览的标点格式保持一致的插件。</p>
<p>这里下载：<a href="http://wordpress.org/extend/plugins/quotmarks-replacer/">http://wordpress.org/extend/plugins/quotmarks-replacer/</a></p>
<p>Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/234.html' rel='bookmark' title='为Blog添加了Picasa相册插件'>为Blog添加了Picasa相册插件</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbalife.com/archives/275.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apache2.2与WordPress Permalink</title>
		<link>http://www.dbalife.com/archives/143.html</link>
		<comments>http://www.dbalife.com/archives/143.html#comments</comments>
		<pubDate>Mon, 14 Jul 2008 05:02:01 +0000</pubDate>
		<dc:creator>skywalker</dc:creator>
				<category><![CDATA[Web服务器]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[virtualhost]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.dbalife.com/?p=143</guid>
		<description><![CDATA[启用Wordpress permalink功能需要这么2个要素： Apache开启rewrite module wordpress目录中启用.htaccess .htaccess中有恰当的内容 标准的支持Wordpress Permalink的.htaccess是这样 # BEGIN WordPress &#60;IfModule mod_rewrite.c&#62; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] &#60;/IfModule&#62; # END WordPress 而对于虚拟主机下的wordpress，还需要用&#60;Directory&#62;标签指定 AllowOverride All 来启用.htaccess 一个例子 &#60;Virtualhost *.80&#62; …… &#60;Directory "/usr/local/www/helloworld"&#62; Options FollowSymLinks IncludesNOEXEC Indexes AllowOverride all Order Deny,Allow Allow from all &#60;/Directory&#62; …… &#60;/VirtualHost&#62; [...]
Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/15.html' rel='bookmark' title='20种让你的Apache更安全的设置'>20种让你的Apache更安全的设置</a></li>
<li><a href='http://www.dbalife.com/archives/126.html' rel='bookmark' title='Apache2与Resin2整合虚拟主机的配置'>Apache2与Resin2整合虚拟主机的配置</a></li>
<li><a href='http://www.dbalife.com/archives/275.html' rel='bookmark' title='用插件解决wordpress引号问题'>用插件解决wordpress引号问题</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>启用Wordpress permalink功能需要这么2个要素：</p>
<ul>
<li>Apache开启rewrite module</li>
<li>wordpress目录中启用.htaccess</li>
<li>.htaccess中有恰当的内容</li>
</ul>
<p>标准的支持Wordpress Permalink的.htaccess是这样</p>
<blockquote><p># BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;<br />
# END WordPress</p></blockquote>
<p>而对于虚拟主机下的wordpress，还需要用&lt;Directory&gt;标签指定 AllowOverride All 来启用.htaccess<br />
一个例子</p>
<blockquote><p>&lt;Virtualhost *.80&gt;<br />
……<br />
&lt;Directory "/usr/local/www/helloworld"&gt;<br />
Options FollowSymLinks IncludesNOEXEC Indexes<br />
AllowOverride all<br />
Order Deny,Allow<br />
Allow from all<br />
&lt;/Directory&gt;<br />
……<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/15.html' rel='bookmark' title='20种让你的Apache更安全的设置'>20种让你的Apache更安全的设置</a></li>
<li><a href='http://www.dbalife.com/archives/126.html' rel='bookmark' title='Apache2与Resin2整合虚拟主机的配置'>Apache2与Resin2整合虚拟主机的配置</a></li>
<li><a href='http://www.dbalife.com/archives/275.html' rel='bookmark' title='用插件解决wordpress引号问题'>用插件解决wordpress引号问题</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbalife.com/archives/143.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flock浏览器BlogPost测试</title>
		<link>http://www.dbalife.com/archives/107.html</link>
		<comments>http://www.dbalife.com/archives/107.html#comments</comments>
		<pubDate>Fri, 25 Apr 2008 06:43:13 +0000</pubDate>
		<dc:creator>skywalker</dc:creator>
				<category><![CDATA[新视野]]></category>
		<category><![CDATA[杂七杂八]]></category>
		<category><![CDATA[生活]]></category>
		<category><![CDATA[flock]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.dbalife.com/?p=107</guid>
		<description><![CDATA[这是一篇测试文档，用Flock浏览器集成的BlogPost子程序书写日志，并发布在我自己的wordpress站点上。 外部引用图片 插入分割线 Blogged with the Flock Browser Tags: flock, wordpress, 离线写作 Related posts: Flock强大的地图组件QuikMaps 用插件解决wordpress引号问题 linux php 扩展库编译——添加cURL模块
Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/129.html' rel='bookmark' title='Flock强大的地图组件QuikMaps'>Flock强大的地图组件QuikMaps</a></li>
<li><a href='http://www.dbalife.com/archives/275.html' rel='bookmark' title='用插件解决wordpress引号问题'>用插件解决wordpress引号问题</a></li>
<li><a href='http://www.dbalife.com/archives/109.html' rel='bookmark' title='linux php 扩展库编译——添加cURL模块'>linux php 扩展库编译——添加cURL模块</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>这是一篇测试文档，用Flock浏览器集成的BlogPost子程序书写日志，并发布在我自己的wordpress站点上。</p>
<p>外部引用图片<br />
<img style="margin: 0pt auto 10px; display: block; text-align: center; width: 491px; height: 259px;" title="Flock" src="http://www.flock.com/homepage/img/features/feature_main_win.png" alt="" width="404" height="213" />插入分割线<br style="font-weight: bold;" /></p>
<hr style="width: 100%; height: 2px;" />
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a style="color: #999; font-weight: bold;" title="Flock Browser" href="http://www.flock.com/blogged-with-flock" target="_new">Flock Browser</a></div>
<p><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/flock">flock</a>, <a rel="tag" href="http://technorati.com/tag/wordpress">wordpress</a>, <a rel="tag" href="http://technorati.com/tag/%E7%A6%BB%E7%BA%BF%E5%86%99%E4%BD%9C">离线写作</a></p>
<p><!-- technorati tags end --></p>
<p>Related posts:<ol>
<li><a href='http://www.dbalife.com/archives/129.html' rel='bookmark' title='Flock强大的地图组件QuikMaps'>Flock强大的地图组件QuikMaps</a></li>
<li><a href='http://www.dbalife.com/archives/275.html' rel='bookmark' title='用插件解决wordpress引号问题'>用插件解决wordpress引号问题</a></li>
<li><a href='http://www.dbalife.com/archives/109.html' rel='bookmark' title='linux php 扩展库编译——添加cURL模块'>linux php 扩展库编译——添加cURL模块</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbalife.com/archives/107.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

