<?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 Topic: bbpress install on an existing wordpress blog</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: bbpress install on an existing wordpress blog</description>
<language>en</language>
<pubDate>Wed, 03 Dec 2008 03:32:14 +0000</pubDate>

<item>
<title>adriengeille on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10427</link>
<pubDate>Thu, 23 Aug 2007 13:03:30 +0000</pubDate>
<dc:creator>adriengeille</dc:creator>
<guid isPermaLink="false">10427@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Don't work,&#60;/p&#62;
&#60;p&#62;If i delete $bb-&#38;gt;wp_home and $bb-&#38;gt;wp_siteurl both and leave the address blank ''&#60;br /&#62;
here is the message i get...&#60;/p&#62;
&#60;p&#62;Does it ring a bell to anyone?&#60;br /&#62;
Cannot select DB.
&#60;/p&#62;</description>
</item>
<item>
<title>fabianzaf on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10332</link>
<pubDate>Tue, 21 Aug 2007 05:33:53 +0000</pubDate>
<dc:creator>fabianzaf</dc:creator>
<guid isPermaLink="false">10332@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Probably wont work but try making &#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;wp_home  and $bb-&#38;gt;wp_siteurl both &#34;http://www.subventions.fr/wordpress&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>adriengeille on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10327</link>
<pubDate>Mon, 20 Aug 2007 23:54:21 +0000</pubDate>
<dc:creator>adriengeille</dc:creator>
<guid isPermaLink="false">10327@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;After a few tests it seems the problem comes from the last paragraph&#60;/p&#62;
&#60;p&#62;// The rest is only useful if you are integrating bbPress with WordPress.&#60;br /&#62;
// If you're not, just leave it as it is.&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;wp_table_prefix = 'wp_';  // WordPress table prefix.  Example: 'wp_';&#60;br /&#62;
$bb-&#38;gt;wp_home = 'http://www.subventions.fr';  // WordPress - Options-&#38;gt;General: Blog address (URL) // Example: 'http://example.com'&#60;br /&#62;
$bb-&#38;gt;wp_siteurl = 'http://www.subventions.fr/wordpress';  // WordPress - Options-&#38;gt;General: WordPress address (URL) // Example: 'http://example.com'&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = '.subventions.fr';&#60;br /&#62;
define('WP_BB', true);&#60;br /&#62;
require_once('/wordpress/wp-blog-header.php');&#60;/p&#62;
&#60;p&#62;/* Stop editing */&#60;/p&#62;
&#60;p&#62;if ( !defined('BBPATH') )&#60;br /&#62;
	define('BBPATH', dirname(__FILE__) . '/' );&#60;br /&#62;
require_once( BBPATH . 'bb-settings.php' );&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;Where is the error guys?
&#60;/p&#62;</description>
</item>
<item>
<title>adriengeille on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10274</link>
<pubDate>Sat, 18 Aug 2007 20:32:20 +0000</pubDate>
<dc:creator>adriengeille</dc:creator>
<guid isPermaLink="false">10274@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi chris,&#60;br /&#62;
after your answer i changed the quote a few times and to avoid any problems with french character i changed it this way&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;name = 'Le forum des subventions aux entreprises';&#60;/p&#62;
&#60;p&#62;But I still get a blank page.....&#60;/p&#62;
&#60;p&#62;Does anybody have a clue?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10256</link>
<pubDate>Sat, 18 Aug 2007 05:11:32 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">10256@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am going to guess that the single quote in this string is causing you trouble:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$bb-&#38;gt;name = &#38;#39;Le forum des subventions à la création et au développement d&#38;#39;entreprise&#38;#39;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I bet it would work like this, although I don't know how it will display (escape the single quote/apostrophe):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$bb-&#38;gt;name = &#38;#39;Le forum des subventions à la création et au développement d\&#38;#39;entreprise&#38;#39;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I would also bet this would work (double quote the string, no escape):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$bb-&#38;gt;name = &#38;quot;Le forum des subventions à la création et au développement d&#38;#39;entreprise&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Good luck
&#60;/p&#62;</description>
</item>
<item>
<title>adriengeille on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10250</link>
<pubDate>Fri, 17 Aug 2007 14:30:26 +0000</pubDate>
<dc:creator>adriengeille</dc:creator>
<guid isPermaLink="false">10250@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;more details:&#60;br /&#62;
same server&#60;br /&#62;
same domain name just a folder named forum&#60;br /&#62;
same sql database&#60;br /&#62;
integration plugin under wordpress installed&#60;br /&#62;
but only a blank page launching the installation!&#60;br /&#62;
does anybody have a clue where it could come from?&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
</item>
<item>
<title>adriengeille on "bbpress install on an existing wordpress blog"</title>
<link>http://bbpress.org/forums/topic/bbpress-install-on-an-existing-wordpress-blog#post-10230</link>
<pubDate>Thu, 16 Aug 2007 18:59:44 +0000</pubDate>
<dc:creator>adriengeille</dc:creator>
<guid isPermaLink="false">10230@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I'm trying to add a bbpress managed forum to my wordpress blog but i have some difficulties even so the installation instructions seemed easy. I use the same database for both blog and forum. The only thing i have is blank page when i launch the install.&#60;/p&#62;
&#60;p&#62;Here is my config.php file&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;define('DB_NAME', 'xxxx');    // Le nom de la base de donnees&#60;br /&#62;
define('DB_USER', 'xxxx');     // Votre identifiant MySQL&#60;br /&#62;
define('DB_PASSWORD', 'xxxx'); // ...et votre mot de passe&#60;br /&#62;
define('DB_HOST', 'localhost');    // Dans la plupart des cas, vous n'aurez pas a modifier cette ligne&#60;/p&#62;
&#60;p&#62;// Vous pouvez faire plusieurs installation sur une meme base de donnees en leur donnant un prefixe unique&#60;/p&#62;
&#60;p&#62;// Change the prefix if you want to have multiple forums in a single database.&#60;br /&#62;
$bb_table_prefix = 'bb_'; // Only letters, numbers and underscores please!&#60;/p&#62;
&#60;p&#62;// The full URL of your bbPress install&#60;br /&#62;
$bb-&#38;gt;uri = 'http://www.subventions.fr/forum/';&#60;/p&#62;
&#60;p&#62;// What are you going to call me?&#60;br /&#62;
$bb-&#38;gt;name = 'Le forum des subventions à la création et au développement d'entreprise';&#60;/p&#62;
&#60;p&#62;// This must be set before you run the install script.&#60;br /&#62;
$bb-&#38;gt;admin_email = 'webmaster@subventions.fr';&#60;/p&#62;
&#60;p&#62;// Set to true if you want pretty permalinks, set to 'slugs' if you want to use slug based pretty permalinks.&#60;br /&#62;
$bb-&#38;gt;mod_rewrite = 'slugs';&#60;/p&#62;
&#60;p&#62;// The number of topics that show on each page.&#60;br /&#62;
$bb-&#38;gt;page_topics = 30;&#60;/p&#62;
&#60;p&#62;// A user can edit a post for this many minutes after submitting.&#60;br /&#62;
$bb-&#38;gt;edit_lock = 60;&#60;/p&#62;
&#60;p&#62;// Your timezone offset.  Example: -7 for Pacific Daylight Time.&#60;br /&#62;
$bb-&#38;gt;gmt_offset = -2;&#60;/p&#62;
&#60;p&#62;// Change this to localize bbPress.  A corresponding MO file for the&#60;br /&#62;
// chosen language must be installed to bb-includes/languages.&#60;br /&#62;
// For example, install de.mo to bb-includes/languages and set BBLANG to 'de'&#60;br /&#62;
// to enable German language support.&#60;br /&#62;
define('BBLANG', '');&#60;/p&#62;
&#60;p&#62;// Your Akismet Key.  You do not need a key to run bbPress, but if you want to take advantage&#60;br /&#62;
// of Akismet's powerful spam blocking, you'll need one.  You can get an Akismet key at&#60;br /&#62;
// &#60;a href=&#34;http://wordpress.com/api-keys/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.com/api-keys/&#60;/a&#62;&#60;br /&#62;
$bb-&#38;gt;akismet_key = 'xxxx'; // Example: '0123456789ab'&#60;/p&#62;
&#60;p&#62;// The rest is only useful if you are integrating bbPress with WordPress.&#60;br /&#62;
// If you're not, just leave it as it is.&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;wp_table_prefix = 'wp_';  // WordPress table prefix.  Example: 'wp_';&#60;br /&#62;
$bb-&#38;gt;wp_home = 'http://www.subventions.fr';  // WordPress - Options-&#38;gt;General: Blog address (URL) // Example: 'http://example.com'&#60;br /&#62;
$bb-&#38;gt;wp_siteurl = 'http://www.subventions.fr/wordpress';  // WordPress - Options-&#38;gt;General: WordPress address (URL) // Example: 'http://example.com'&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = '.subventions.fr';&#60;br /&#62;
define('WP_BB', true);&#60;br /&#62;
require_once('/wordpress/wp-blog-header.php');&#60;/p&#62;
&#60;p&#62;/* Stop editing */&#60;/p&#62;
&#60;p&#62;if ( !defined('BBPATH') )&#60;br /&#62;
	define('BBPATH', dirname(__FILE__) . '/' );&#60;br /&#62;
require_once( BBPATH . 'bb-settings.php' );&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;Is there something wrong in what I wrote? Beside that i installed the integration plugin under wordpress and modified the wp-config.php concerning the cookies.&#60;/p&#62;
&#60;p&#62;Thank you for your help
&#60;/p&#62;</description>
</item>

</channel>
</rss>
