<?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>bbPress support forums: Forum: Troubleshooting - Recent Posts</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums: Forum: Troubleshooting - Recent Posts</description>
<language>en</language>
<pubDate>Sun, 07 Sep 2008 18:54:25 +0000</pubDate>

<item>
<title>meitershaker on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19051</link>
<pubDate>Sun, 07 Sep 2008 17:45:25 +0000</pubDate>
<dc:creator>meitershaker</dc:creator>
<guid isPermaLink="false">19051@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;amir: yes :p&#60;/p&#62;
&#60;p&#62;ps: et plus précisément de la 1.0 trunk :p
&#60;/p&#62;</description>
</item>
<item>
<title>amirhabibi on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19050</link>
<pubDate>Sun, 07 Sep 2008 17:41:53 +0000</pubDate>
<dc:creator>amirhabibi</dc:creator>
<guid isPermaLink="false">19050@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;meitershaker : are you talking about the 1.0 alpha ?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19049</link>
<pubDate>Sun, 07 Sep 2008 17:37:25 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19049@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you replaced the semi-colon and it still will not restart, you need to double check for a typo.&#60;/p&#62;
&#60;p&#62;Failing that, you can try removing all lines starting with &#60;code&#62;eaccelerator.&#60;/code&#62; which should be at the very end of the &#60;code&#62;php.ini&#60;/code&#62; or just putting semi-colons in front of them.&#60;/p&#62;
&#60;p&#62;I perhaps should have told you to make a copy of &#60;code&#62;php.ini&#60;/code&#62; via  &#60;code&#62;cp php.ini  php.bak&#60;/code&#62;  but since it's documented here we should be able too repair it.&#60;/p&#62;
&#60;p&#62;Actually, that install script probably made a backup of &#60;code&#62;php.ini&#60;/code&#62; for you. Update: no unfortunately it does that when it's about to copy and it didn't make it that far. But you may have backup copies from other programs. See what files show up when you do a &#60;code&#62;ls php* -latr&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>clementine on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19048</link>
<pubDate>Sun, 07 Sep 2008 17:14:30 +0000</pubDate>
<dc:creator>clementine</dc:creator>
<guid isPermaLink="false">19048@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_ , I cannot restart the apache service, so I placed again the semi-colon. What should I do now?&#60;/p&#62;
&#60;p&#62;This is the error I get:&#60;/p&#62;
&#60;p&#62;Restarting Apache&#60;br /&#62;
[a fatal error or timeout occurred while processing this directive]
&#60;/p&#62;</description>
</item>
<item>
<title>meitershaker on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19039</link>
<pubDate>Sun, 07 Sep 2008 11:10:46 +0000</pubDate>
<dc:creator>meitershaker</dc:creator>
<guid isPermaLink="false">19039@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;great it works! but for choose a name to display on public (option in profil), a name with accents doesn't work ...
&#60;/p&#62;</description>
</item>
<item>
<title>amirhabibi on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19037</link>
<pubDate>Sun, 07 Sep 2008 08:52:46 +0000</pubDate>
<dc:creator>amirhabibi</dc:creator>
<guid isPermaLink="false">19037@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for your replies. After reading / testing your links, I found a quick working fix. Here's the plugin code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: UTF-8 usernames
Plugin URI:
Description: This plugin enable utf-8 characters in usernames. Mbstring must be enabled in the php.ini.
Author: Amir Habibi
Author URI: &#60;a href=&#34;http://www.residence-mixte.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.residence-mixte.com/&#60;/a&#62;
Version: 0.1
*/ 

function sanitize_user_mbstring( $raw_username, $username, $strict = false ) {
	$raw_username = $username;
	$username = strip_tags($username);
	// Kill octets
	$username = preg_replace(&#38;#39;&#124;%([a-fA-F0-9][a-fA-F0-9])&#124;&#38;#39;, &#38;#39;&#38;#39;, $username);
	$username = preg_replace(&#38;#39;/&#38;#38;.+?;/&#38;#39;, &#38;#39;&#38;#39;, $username); // Kill entities

	// Usage of &#38;#39;mb_ereg_replace&#38;#39; instead of &#38;#39;preg_replace&#38;#39; to preserve accents.
	if ( $strict )
		$username = mb_ereg_replace(&#38;#39;&#124;[^a-z0-9 _.\-@]&#124;i&#38;#39;, &#38;#39;&#38;#39;, $username);

	return apply_filters(&#38;#39;sanitize_user_mbstring&#38;#39;, $username, $raw_username, $strict);

}

add_action(&#38;#39;sanitize_user&#38;#39;, &#38;#39;sanitize_user_mbstring&#38;#39;, 0, 3);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;To work, you must have mstring enabled in your php.ini.&#60;/p&#62;
&#60;p&#62;Hope this will help !&#60;/p&#62;
&#60;p&#62;chrishajer : our board is in french
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19031</link>
<pubDate>Sun, 07 Sep 2008 05:24:58 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19031@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's also plugins like this which can easily be modified:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.ru/files/plugins/CyrNickname.zip&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.ru/files/plugins/CyrNickname.zip&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/attachment/ticket/452/usernames_i18n_fix.php&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/attachment/ticket/452/usernames_i18n_fix.php&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19030</link>
<pubDate>Sun, 07 Sep 2008 05:17:24 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">19030@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is the latest discussion I heard about the issue:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/diacritic-letters-i-username-like-goran&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/diacritic-letters-i-username-like-goran&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What is the primary language of your forum?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "latest topics?"</title>
<link>http://bbpress.org/forums/topic/latest-topics#post-19028</link>
<pubDate>Sun, 07 Sep 2008 05:05:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">19028@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is a discussion of changing the number of front page topics here:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;To put the categories first and the latest topics after, you just need to move those things around in your front page template (front-page.php in your template directory).
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19026</link>
<pubDate>Sun, 07 Sep 2008 04:38:57 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19026@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;OH! You know what my tired eyes missed?&#60;/p&#62;
&#60;p&#62;Yes, you have the eAccelerator *settings*,&#60;br /&#62;
BUT &#60;strong&#62;it's disabled!&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Someone disabled it by putting a semi-colon in front of the actual binary:&#60;br /&#62;
&#60;code&#62;;extension=&#38;quot;eaccelerator.so&#38;quot;&#60;/code&#62;&#60;br /&#62;
See that? To enable it, the semi-colon has to be removed, otherwise it's dormant.&#60;/p&#62;
&#60;p&#62;Now if it wasn't properly installed and the setting were just left in place, then removing the semi-colon may just halt PHP entirely and prevent your apache from working correctly.&#60;/p&#62;
&#60;p&#62;So try removing the semi-colon, save &#60;code&#62;php.ini&#60;/code&#62; and then restart Apache via: &#60;code&#62;service httpd restart&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If apache doesn't restart, or it does but you can't access web pages, then you need to go put back the semi-colon or remove the eaccelerator section entirely.&#60;/p&#62;
&#60;p&#62;If apache starts but you can't find an &#34;eaccelerator&#34; section inside &#60;code&#62;phpinfo()&#60;/code&#62; then it's not really installed, or installed incorrectly.  If that's the case, then you need to remove all the existing eaccelerator lines listed above, and then run that install script again.&#60;/p&#62;
&#60;p&#62;By the way, if you don't know what &#60;code&#62;phpinfo()&#60;/code&#62; is, just make a file called &#60;code&#62;phpinfo.php&#60;/code&#62; and put only this line into it: &#60;code&#62;&#38;lt;?php  phpinfo(); ?&#38;gt;&#60;/code&#62; and put it somewhere you can access it from the web on your server and then access it via the web.&#60;/p&#62;
&#60;p&#62;You will definitely see a speed boost when reloading pages once eAccelerator is properly installed and running.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19025</link>
<pubDate>Sun, 07 Sep 2008 04:30:28 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19025@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I probably made a bad assumption that it was not installed, though it definitely doesn't come by default on a cpanel setup so that's a bit unusual. Strange someone would put eaccelerator on there but not enable the mysql cache.&#60;/p&#62;
&#60;p&#62;You can look at your phpinfo()  to find out if eAccelerator is really installed and active. &#60;/p&#62;
&#60;p&#62;That eaccelerator compress and compression level is just a waste of cpu time. I'd either set&#60;br /&#62;
&#60;code&#62;eaccelerator.compress=&#38;quot;0&#38;quot;&#60;/code&#62;&#60;br /&#62;
or&#60;br /&#62;
&#60;code&#62;eaccelerator.compress_level=&#38;quot;1&#38;quot;&#60;/code&#62;&#60;br /&#62;
&#60;strong&#62; &#60;/strong&#62;&#60;br /&#62;
By the way, the php configuration is located in&#60;br /&#62;
&#60;code&#62;/usr/local/lib/php.ini&#60;/code&#62;&#60;br /&#62;
and the eAccelerator options are at the very bottom of the file if you ever have to manually edit them.
&#60;/p&#62;</description>
</item>
<item>
<title>clementine on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19022</link>
<pubDate>Sat, 06 Sep 2008 22:05:26 +0000</pubDate>
<dc:creator>clementine</dc:creator>
<guid isPermaLink="false">19022@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_ I'm getting this error, I guess it's already installed?&#60;/p&#62;
&#60;p&#62;;extension=&#34;eaccelerator.so&#34;&#60;br /&#62;
eaccelerator.shm_size=&#34;16&#34;&#60;br /&#62;
eaccelerator.cache_dir=&#34;/tmp/eaccelerator&#34;&#60;br /&#62;
eaccelerator.enable=&#34;1&#34;&#60;br /&#62;
eaccelerator.optimizer=&#34;1&#34;&#60;br /&#62;
eaccelerator.check_mtime=&#34;1&#34;&#60;br /&#62;
eaccelerator.debug=&#34;0&#34;&#60;br /&#62;
eaccelerator.filter=&#34;&#34;&#60;br /&#62;
eaccelerator.shm_max=&#34;0&#34;&#60;br /&#62;
eaccelerator.shm_ttl=&#34;0&#34;&#60;br /&#62;
eaccelerator.shm_prune_period=&#34;0&#34;&#60;br /&#62;
eaccelerator.shm_only=&#34;0&#34;&#60;br /&#62;
eaccelerator.compress=&#34;1&#34;&#60;br /&#62;
eaccelerator.compress_level=&#34;9&#34;&#60;br /&#62;
ABORT: Please uninstall any existing instance of eAccelerator.&#60;br /&#62;
&#60;a href=&#34;mailto:root@node2&#34;&#62;root@node2&#60;/a&#62; [~]#
&#60;/p&#62;</description>
</item>
<item>
<title>clementine on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-19021</link>
<pubDate>Sat, 06 Sep 2008 21:52:51 +0000</pubDate>
<dc:creator>clementine</dc:creator>
<guid isPermaLink="false">19021@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_  I don't want to say it too loud, but Ithink ITS WORKING.... The server has been alive for 1day long... With no crashing... Still, I think it's a bit cranky... and I stopped cpanel... I will start service only when I need it...&#60;/p&#62;
&#60;p&#62;I'm going to install eAccelerator Right Now!!! Thanks so so so much...!! I'll keep informing you!
&#60;/p&#62;</description>
</item>
<item>
<title>amirhabibi on "Accents in username"</title>
<link>http://bbpress.org/forums/topic/accents-in-username#post-19020</link>
<pubDate>Sat, 06 Sep 2008 21:04:32 +0000</pubDate>
<dc:creator>amirhabibi</dc:creator>
<guid isPermaLink="false">19020@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi! When you try to register a name containing accents, the accents are stripped.&#60;br /&#62;
Any solution ?&#60;br /&#62;
(0.9.0.2 &#38;#38; the bug is visible on this forum)
&#60;/p&#62;</description>
</item>
<item>
<title>mheslop on "WP/BB Cookie not shared"</title>
<link>http://bbpress.org/forums/topic/wpbb-cookie-not-shared#post-19010</link>
<pubDate>Sat, 06 Sep 2008 15:21:35 +0000</pubDate>
<dc:creator>mheslop</dc:creator>
<guid isPermaLink="false">19010@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;After further reading, have discovered this is a compatibility issue between versions of WP and BB I am operating, will downgrade or upgrade one or other as appropriate.&#60;/p&#62;
&#60;p&#62;Non-Issue.
&#60;/p&#62;</description>
</item>
<item>
<title>tmmaersk on "latest topics?"</title>
<link>http://bbpress.org/forums/topic/latest-topics#post-19009</link>
<pubDate>Sat, 06 Sep 2008 15:18:45 +0000</pubDate>
<dc:creator>tmmaersk</dc:creator>
<guid isPermaLink="false">19009@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is it possible to only get shown the last 5 topics on the main page, and still list more topics when you go into a category on the forum?&#60;/p&#62;
&#60;p&#62;Or just switch them around so the categories will be listed first, and then the latest topics below the categories?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>mheslop on "WP/BB Cookie not shared"</title>
<link>http://bbpress.org/forums/topic/wpbb-cookie-not-shared#post-19003</link>
<pubDate>Sat, 06 Sep 2008 11:07:15 +0000</pubDate>
<dc:creator>mheslop</dc:creator>
<guid isPermaLink="false">19003@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've just installed (yesterday) the newest stable versions of WP and BBPress but am having problems with the cookie integration.&#60;/p&#62;
&#60;p&#62;Account information is working and shared (you can login and register on with BB or WP), but being logged in/out of one does not effect the other.&#60;/p&#62;
&#60;p&#62;My bb-config.php didn't have a SECRET_KEY, but i've added one now :-&#60;br /&#62;
define('BB_SECRET_KEY','blah-blah-blah');  // (ok not exactly blah blah blah)&#60;br /&#62;
and put the same (omitting BB_) in wp-config.php.&#60;/p&#62;
&#60;p&#62;I also set the following in wp-config.php&#60;br /&#62;
define('COOKIE_DOMAIN', 'mydomain.co.uk');&#60;br /&#62;
define('COOKIEPATH', '/');&#60;/p&#62;
&#60;p&#62;This doesn't seem to be required in bb-config.php (? is that right ?)&#60;br /&#62;
bbPress is installed at mydomain.co.uk/forums&#60;/p&#62;
&#60;p&#62;I'm not sure what i'm doing wrong, it's probably simple, but I just seem to find lots of conflicting documentation for different versions and nothing i've tried seems to have worked.&#60;/p&#62;
&#60;p&#62;Other question, will there be a conflict between mydomain.co.uk and &#60;a href=&#34;http://www.mydomain.co.uk&#34; rel=&#34;nofollow&#34;&#62;www.mydomain.co.uk&#60;/a&#62; as I've set cookie_domain to omit &#60;a href=&#34;http://www.&#34; rel=&#34;nofollow&#34;&#62;www.&#60;/a&#62; but when public users will likely prepend www to the domain name.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Cannot modify header information"</title>
<link>http://bbpress.org/forums/topic/cannot-modify-header-information#post-19001</link>
<pubDate>Sat, 06 Sep 2008 10:52:25 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19001@http://bbpress.org/forums/</guid>
<description>&#60;pre&#62;&#60;code&#62;Database error: []
SELECT * FROM bb_online WHERE user_id = LIMIT 1
Caller: online_logout&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The user_id is empty in this case which causes the error.&#60;br /&#62;
The question is why it's empty.&#60;br /&#62;
This could be a cookie problem, this could be an alpha bug.&#60;/p&#62;
&#60;p&#62;If you have no plugins running and switching to the default template does not make the error go away, it's a bug and should be reported on TRAC (along with your configuration if possible, server type, PHP, etc)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Cannot modify header information"</title>
<link>http://bbpress.org/forums/topic/cannot-modify-header-information#post-19000</link>
<pubDate>Sat, 06 Sep 2008 10:49:09 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19000@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;strong&#62;&#60;em&#62;&#34;Cannot modify header information - headers already sent&#34;&#60;/em&#62;&#60;/strong&#62;&#60;br /&#62;
is one of those errors that will fool you by distraction because  it's an indication of another error, that happened before it, it's not the actual primary error.&#60;/p&#62;
&#60;p&#62;&#34;headers already sent&#34; means one of the following (among other possibilities)&#60;/p&#62;
&#60;p&#62;1. You have whitespace at the start of end of a plugin (or template)  BEFORE or AFTER the  &#60;code&#62;&#38;lt;?php    ?&#38;gt;&#60;/code&#62;   (usually after the end.  Whitespace means new lines or spaces.&#60;/p&#62;
&#60;p&#62;OR &#60;/p&#62;
&#60;p&#62;2.  Another plugin or configuration error has occured and sends a text message, which causes the headers to be sent. To find out what the real problem is, you typically can do a &#34;VIEW SOURCE&#34; on the page (from your browser menus) and you'll see in plain text at the top of the page the real error before the &#34;headers sent&#34; error.
&#60;/p&#62;</description>
</item>
<item>
<title>mbiernat on "Cannot modify header information"</title>
<link>http://bbpress.org/forums/topic/cannot-modify-header-information#post-18999</link>
<pubDate>Sat, 06 Sep 2008 10:25:19 +0000</pubDate>
<dc:creator>mbiernat</dc:creator>
<guid isPermaLink="false">18999@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I got this with php 5 I think its related to the online plugin, I deactivated that plug in and it works ok now with no error.
&#60;/p&#62;</description>
</item>
<item>
<title>lstelie on "Cannot modify header information"</title>
<link>http://bbpress.org/forums/topic/cannot-modify-header-information#post-18998</link>
<pubDate>Sat, 06 Sep 2008 10:21:40 +0000</pubDate>
<dc:creator>lstelie</dc:creator>
<guid isPermaLink="false">18998@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I had backpress error when using php4, which version of php does your host use ?
&#60;/p&#62;</description>
</item>
<item>
<title>mbiernat on "Cannot modify header information"</title>
<link>http://bbpress.org/forums/topic/cannot-modify-header-information#post-18997</link>
<pubDate>Sat, 06 Sep 2008 10:13:26 +0000</pubDate>
<dc:creator>mbiernat</dc:creator>
<guid isPermaLink="false">18997@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi I have a forum &#60;a href=&#34;http://peopleandlanguages.com/&#34; rel=&#34;nofollow&#34;&#62;http://peopleandlanguages.com/&#60;/a&#62;  I used the kakumei template and changed the image. Besides that its a pretty easy install and like bbpress. I am using the alpha 1.0 However,&#60;br /&#62;
I try to log out I get this:     Thank you.&#60;/p&#62;
&#60;p&#62;Database error: []&#60;br /&#62;
SELECT * FROM bb_online WHERE user_id = LIMIT 1&#60;br /&#62;
Caller: online_logout&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at /homepages/18/d95001024/htdocs/peopleandlanguages/bb-includes/backpress/class.bpdb.php:276) in /homepages/18/d95001024/htdocs/peopleandlanguages/bb-includes/pluggable.php on line 213
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18993</link>
<pubDate>Sat, 06 Sep 2008 04:01:51 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18993@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;By the way, once you are done with this, we'll install eAccelerator and that will give your PHP a nice boost too.&#60;/p&#62;
&#60;p&#62;Let me know how the MySQL cache mod goes.&#60;/p&#62;
&#60;p&#62;If you don't want to wait and feel comfortable trying it right away, try downloading and using this script to auto-install eAccelerator on Cpanel:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wget &#60;a href=&#34;http://tutorials.medialayer.com/cPanel/eaccelerator.sh&#34; rel=&#34;nofollow&#34;&#62;http://tutorials.medialayer.com/cPanel/eaccelerator.sh&#60;/a&#62;
chmod 700 eaccelerator.sh
./eaccelerator.sh&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;em&#62;&#60;strong&#62; &#60;/strong&#62;&#60;/em&#62;&#60;br /&#62;
Once it is done, you might have to restart apache&#60;br /&#62;
&#60;code&#62;service httpd restart&#60;/code&#62;&#60;br /&#62;
and you should definitely notice another speed boost.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18986</link>
<pubDate>Fri, 05 Sep 2008 20:03:51 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18986@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;No, if you have bbpress and wordpress integrated, and you are with bbPress 0.9, you should stick with WordPress 2.5 because that's the only version that works with bbPress 0.9&#60;/p&#62;
&#60;p&#62;There is nothing wrong with WP 2.5 and no need to upgrade to 2.6, because if you do, you'll need bbPress 1.0 alpha which is unstable and has bugs.
&#60;/p&#62;</description>
</item>
<item>
<title>clementine on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18985</link>
<pubDate>Fri, 05 Sep 2008 19:12:21 +0000</pubDate>
<dc:creator>clementine</dc:creator>
<guid isPermaLink="false">18985@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Done!!!! Let's wait!!! Thanks so much _ck_ !! (I'm still making the cache things!!) &#60;/p&#62;
&#60;p&#62;I'll tell you in a couple of hours how it looks.&#60;/p&#62;
&#60;p&#62;Should I update wordpress version to the last one? Or it's slower?&#60;/p&#62;
&#60;p&#62;Thanks again.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18984</link>
<pubDate>Fri, 05 Sep 2008 19:02:08 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18984@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Okay, carefully edit your &#60;code&#62;/etc/my.cnf&#60;/code&#62; (ask if you don't know how to edit) and REPLACE what's in there with this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[mysqld]
max_connections = 400
key_buffer = 16M
myisam_sort_buffer_size = 32M
join_buffer_size = 1M
read_buffer_size = 1M
sort_buffer_size = 2M
table_cache = 1024
thread_cache_size = 286
interactive_timeout = 25
wait_timeout = 1000
connect_timeout = 10
max_allowed_packet = 16M
max_connect_errors = 10
query_cache_limit = 1M
query_cache_size = 16M
query_cache_type = 1
tmp_table_size = 16M
skip-innodb
[mysqld_safe]
open_files_limit = 8192
[mysqldump]
quick
max_allowed_packet = 16M
[myisamchk]
key_buffer = 32M
sort_buffer = 32M
read_buffer = 16M
write_buffer = 16M
[mysqlhotcopy]
interactive-timeout&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;&#60;em&#62; &#60;/em&#62;&#60;/strong&#62;&#60;br /&#62;
After you edit it you'll need to restart the mysql engine by typing this in the ssh:&#60;br /&#62;
&#60;code&#62;service mysql restart&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;(optionally there's also a mysql restart in cpanel)&#60;/p&#62;
&#60;p&#62;Then do a couple of refreshes on your bbPress pages and it should seem a bit zippier.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18983</link>
<pubDate>Fri, 05 Sep 2008 18:48:47 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18983@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh they probably changed the bb-config.php so it doesn't matter where you put it anymore. &#60;/p&#62;
&#60;p&#62;bb-config.php used to load another file but now I think they make the other file load bb-config for safety and logic reasons.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18982</link>
<pubDate>Fri, 05 Sep 2008 18:46:36 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18982@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;For now you should be okay with cpanel and whm - they do make life much easier running a server. There are things we can fine tune eventually.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;However you have one HUGE problem.&#60;br /&#62;
You have no mysql cache enabled, at all!&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;When we get it fixed you will see a big difference in bbpress (and wordpress) performance.
&#60;/p&#62;</description>
</item>
<item>
<title>lstelie on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18981</link>
<pubDate>Fri, 05 Sep 2008 18:46:27 +0000</pubDate>
<dc:creator>lstelie</dc:creator>
<guid isPermaLink="false">18981@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_&#60;/p&#62;
&#60;p&#62;In latest &#60;code&#62;bb-config.php&#60;/code&#62; there is no &#60;code&#62;/* Stop editing */&#60;/code&#62;&#60;br /&#62;
Do I put  &#60;code&#62;$bb-&#38;gt;load_options = true;&#60;/code&#62; at the end of the file ?
&#60;/p&#62;</description>
</item>
<item>
<title>clementine on "Server Overload"</title>
<link>http://bbpress.org/forums/topic/server-overload#post-18980</link>
<pubDate>Fri, 05 Sep 2008 18:39:58 +0000</pubDate>
<dc:creator>clementine</dc:creator>
<guid isPermaLink="false">18980@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Also, I have cpanel and WHM... should I stop them?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
