<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>自然醒 BBS - 提问，交流，分享！ Tag: WordPress</title>
<link>http://www.dreamfreeblog.com/bbs/</link>
<description>自然醒 BBS - 提问，交流，分享！ Tag: WordPress</description>
<language>en</language>
<pubDate>Thu, 09 Sep 2010 10:22:19 +0000</pubDate>

<item>
<title>admin on "不知道能否 wordpress 与 wordpress mu  安装同一目录"</title>
<link>http://www.dreamfreeblog.com/bbs/topic/136#post-201</link>
<pubDate>Sun, 17 Jan 2010 21:30:41 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">201@http://www.dreamfreeblog.com/bbs/</guid>
<description>&#60;p&#62;wordpress mu 安装在主博客的下面的目录文件夹，势必会多一层目录。如果能直接安装成 blog/wp_mu_url 就好了，安装路径就不会那么深了  &lt;img src="http://www.dreamfreeblog.com/bbs/bb-plugins/bb-smilies/default/icon_mad.gif" title=":x" class="bb_smilies" /&gt; 
&#60;/p&#62;</description>
</item>
<item>
<title>dreamfree on "Warning: Cannot modify header information - headers already sent by"</title>
<link>http://www.dreamfreeblog.com/bbs/topic/134#post-199</link>
<pubDate>Fri, 01 Jan 2010 23:23:31 +0000</pubDate>
<dc:creator>dreamfree</dc:creator>
<guid isPermaLink="false">199@http://www.dreamfreeblog.com/bbs/</guid>
<description>&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at /home5/**/public_html/**/blog/wp-config.php:1) in /**/public_html/**/blog/wp-login.php on line 255&#60;br /&#62;
....&#60;br /&#62;
....&#60;br /&#62;
Warning: Cannot modify header information - headers already sent by (output started at /home5/**/public_html/**/blog/wp-config.php:1) in /home5/**/public_html/**/blog/wp-includes/pluggable.php on line 850&#60;/p&#62;
&#60;p&#62;用非 windows 自带的编辑器打开   wp-config.php，去掉最前面的空格或乱码内容。
&#60;/p&#62;</description>
</item>
<item>
<title>admin on ".htaccess 解决 bbPress 伪静态404错误，被WordPress思维定势了"</title>
<link>http://www.dreamfreeblog.com/bbs/topic/120#post-182</link>
<pubDate>Sun, 23 Aug 2009 00:02:31 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">182@http://www.dreamfreeblog.com/bbs/</guid>
<description>&#60;p&#62;被WordPress思维定势了，和 wordpress 不大一样，要手动在 bbpress 安装目录添加 .htaccess，bbpress 也有伪静态 的 URL 重写，英文叫 Pretty permalink，但自从换主机后伪静化后出现 404 错误，折腾了半天找到办法了，但先前的服务器设置后并未进行此步设置，都是apache主机，可能还是有点不同的。&#60;/p&#62;
&#60;p&#62;1.设置伪静态&#60;br /&#62;
2.打开 yourdomain/bbs/bb-admin/rewrite-rules.php 将里面的代码写到 .htaccess 文件里，并在最上面加入一行： Options -MultiViews&#60;/p&#62;
&#60;p&#62;我的代码：&#60;br /&#62;
Options -MultiViews&#60;/p&#62;
&#60;p&#62;&#38;lt;IfModule mod_rewrite.c&#38;gt;&#60;br /&#62;
RewriteEngine On&#60;br /&#62;
RewriteBase /bbs/&#60;br /&#62;
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /bbs/forum.php?id=$1&#38;amp;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^forum/([^/]+)/?$ /bbs/forum.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /bbs/topic.php?id=$1&#38;amp;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^topic/([^/]+)/?$ /bbs/topic.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /bbs/tags.php?tag=$1&#38;amp;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/([^/]+)/?$ /bbs/tags.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^tags/?$ /bbs/tags.php [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /bbs/profile.php?id=$1&#38;amp;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /bbs/profile.php?id=$1&#38;amp;tab=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /bbs/profile.php?id=$1&#38;amp;tab=$2&#38;amp;page=$3 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/([^/]+)/?$ /bbs/profile.php?id=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^profile/?$ /bbs/profile.php [L,QSA]&#60;br /&#62;
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /bbs/view.php?view=$1&#38;amp;page=$2 [L,QSA]&#60;br /&#62;
RewriteRule ^view/([^/]+)/?$ /bbs/view.php?view=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/?$ /bbs/rss.php [L,QSA]&#60;br /&#62;
RewriteRule ^rss/topics/?$ /bbs/rss.php?topics=1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/forum/([^/]+)/?$ /bbs/rss.php?forum=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/forum/([^/]+)/topics/?$ /bbs/rss.php?forum=$1&#38;amp;topics=1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/topic/([^/]+)/?$ /bbs/rss.php?topic=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/tags/([^/]+)/?$ /bbs/rss.php?tag=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/profile/([^/]+)/?$ /bbs/rss.php?profile=$1 [L,QSA]&#60;br /&#62;
RewriteRule ^rss/view/([^/]+)/?$ /bbs/rss.php?view=$1 [L,QSA]&#60;br /&#62;
&#38;lt;/IfModule&#38;gt;&#60;/p&#62;
&#60;p&#62;希望对你有用，嘿嘿
&#60;/p&#62;</description>
</item>
<item>
<title>dreamfree on "TalkPress 与 bbPress 是什么关系"</title>
<link>http://www.dreamfreeblog.com/bbs/topic/33#post-51</link>
<pubDate>Fri, 19 Jun 2009 10:53:53 +0000</pubDate>
<dc:creator>dreamfree</dc:creator>
<guid isPermaLink="false">51@http://www.dreamfreeblog.com/bbs/</guid>
<description>&#60;p&#62;一直纳闷 &#60;a href=&#34;http://talkpress.com/&#34;&#62;TalkPress&#60;/a&#62; 是什么，TalkPress 和 &#60;a href=&#34;http://www.dreamfreeblog.com/bbs/&#34;&#62;bbPress&#60;/a&#62; 是什么关系，原来 TalkPress 是 Automattic 的一个 hosting，提供主机服务而已...而且是针对论坛，但 TalkPress 不是一个简单的主机提供商，要想在他上面搭建论坛，日PV得达到 500,000， 所谓的 TalkPress VIP hosting。&#60;/p&#62;
&#60;p&#62;[attachment=51,31]&#60;/p&#62;
&#60;p&#62;TalkPress 只对高质量的采用 &#60;a href=&#34;http://www.dreamfreeblog.com/bbs/tags/wordpress&#34;&#62;WordPress&#60;/a&#62; 构架的网站提供附带论坛主机托管服务，当然论坛也必须是 bbPress 搭建的了。门槛很高。&#60;/p&#62;
&#60;p&#62;WordPress 也会在他的 &#60;a href=&#34;http://publisherblog.automattic.com/&#34;&#62;Publisher Blog&#60;/a&#62; 上宣传你的论坛。
&#60;/p&#62;</description>
</item>
<item>
<title>dreamfree on "bbPress介绍及bbPress的故事"</title>
<link>http://www.dreamfreeblog.com/bbs/topic/16#post-28</link>
<pubDate>Tue, 16 Jun 2009 19:53:37 +0000</pubDate>
<dc:creator>dreamfree</dc:creator>
<guid isPermaLink="false">28@http://www.dreamfreeblog.com/bbs/</guid>
<description>&#60;p&#62;bbPress介绍&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.dreamfreeblog.com/bbs/forum/5&#34;&#62;bbPress&#60;/a&#62;是一套简洁、使用方便的论坛源码，它居于运行快速、管理方便等特点，而且还具有许多高级特性，以及高度可定制性，是论坛部署的另一种不错的解决方案。&#60;/p&#62;
&#60;p&#62;bbPress的其它特性包括：&#60;br /&#62;
轻量级，运行速度快&#60;br /&#62;
简洁的界面&#60;br /&#62;
可定制性高&#60;br /&#62;
通过各种插件，实现功能扩展&#60;br /&#62;
内建防垃圾信息系统&#60;br /&#62;
支持RSS&#60;br /&#62;
与Blog系统可以高效整合等&#60;/p&#62;
&#60;p&#62;bbPress的故事&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/about/the-story/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/about/the-story/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;bbPress got started because we were using miniBB for the WP support forums and were continually frustrated by its limitations and slow code. That’s saying a lot because miniBB is one of the lightest and fastest bulletin board scripts out there. After a hosting change and PHP upgrade broke the boards even more than they were it became painfully obvious something needed to be done.&#60;/p&#62;
&#60;p&#62;The day after Christmas 2004 Matt started coding from the ground up and two days later the first version of bbPress was pushed live on WordPress.org. Since then, Michael Adams has joined up with the project. bbPress continues to grow alongside the growth of its community.&#60;/p&#62;
&#60;p&#62;很赞啊，Matt 花两天时间就重写出了 &#60;a href=&#34;http://www.dreamfreeblog.com/bbs/forum/5&#34;&#62;bbPress&#60;/a&#62; 程序的最初雏形。写 bbPress 缘由于 wordpress 原先使用当时比较小巧的论坛程序 miniBB，由于一次 PHP 升级导致灾难，使 matt 坚定得想写出自己的论坛程序，于是有了 bbPress 的诞生。&#60;/p&#62;
&#60;p&#62;后来由 Michael Adams 接管。我今天下载的就是 bbPress  0.9 版本，已经是一个相当轻量级的博客程序了。&#60;/p&#62;
&#60;p&#62;而且现在 wordpress.org 的帮助论坛就是用的 bbPress，不管 WordPress.org 把 bbPress 放在什么位置，肯定会不间断更新的。但愿以后不会愈来愈臃肿庞大。
&#60;/p&#62;</description>
</item>

</channel>
</rss>
