<?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: Fatal Error Prior to Installation</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Fatal Error Prior to Installation</description>
<language>en</language>
<pubDate>Fri, 29 Aug 2008 18:35:25 +0000</pubDate>

<item>
<title>goldfiinger on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-12884</link>
<pubDate>Tue, 25 Dec 2007 11:45:10 +0000</pubDate>
<dc:creator>goldfiinger</dc:creator>
<guid isPermaLink="false">12884@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I copied and pasted WP_config details and forgot to change it to BBDB &#60;/p&#62;
&#60;p&#62;define('BBDB_NAME', 'bbpress');      // The name of the database&#60;/p&#62;
&#60;p&#62;define('BBDB_USER', 'username');     // Your MySQL username&#60;/p&#62;
&#60;p&#62;define('BBDB_PASSWORD', 'password'); // ...and password&#60;/p&#62;
&#60;p&#62;define('BBDB_HOST', 'localhost');&#60;/p&#62;
&#60;p&#62;As soon as i corrected these I no longer had any errors.
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-12874</link>
<pubDate>Mon, 24 Dec 2007 10:33:49 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12874@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What did you exactly correct? I meant what caused this problem?
&#60;/p&#62;</description>
</item>
<item>
<title>goldfiinger on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-12873</link>
<pubDate>Mon, 24 Dec 2007 09:55:16 +0000</pubDate>
<dc:creator>goldfiinger</dc:creator>
<guid isPermaLink="false">12873@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It resolved it self when I corrected the config file.  &#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-12869</link>
<pubDate>Mon, 24 Dec 2007 03:17:52 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12869@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Seems that &#60;code&#62;l10n.php&#60;/code&#62; of bbPress wasn't loaded.&#60;/p&#62;
&#60;p&#62;Did you also do a WordPress FUNCTIONS integration?&#60;br /&#62;
What is your &#60;code&#62;config.php&#60;/code&#62; of bbPress? (you can post it to &#60;a href=&#34;http://bbpress.pastebin.com&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.pastebin.com&#60;/a&#62; , remember to remove dbname, dbuser, dbpassword)
&#60;/p&#62;</description>
</item>
<item>
<title>goldfiinger on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-12859</link>
<pubDate>Sun, 23 Dec 2007 13:53:34 +0000</pubDate>
<dc:creator>goldfiinger</dc:creator>
<guid isPermaLink="false">12859@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is the problem I've been getting, don't really want to just start deleting lines, if it works for everyone else it should work for me too.  Anyone know any other ways round this?
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11542</link>
<pubDate>Thu, 18 Oct 2007 22:00:52 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11542@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, I don't know, but since there's a deregister view following the  register view function maybe it's not necessary.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bb_register_view( $view, $title, $query_args = &#38;#39;&#38;#39; ) {
	global $bb_views;

	$view  = bb_slug_sanitize( $view );
	$title = wp_specialchars( $title );

	if ( !$view &#124;&#124; !$title )
		return false;

	$query_args = wp_parse_args( $query_args );

	if ( !$sticky_set = isset($query_args[&#38;#39;sticky&#38;#39;]) )
		$query_args[&#38;#39;sticky&#38;#39;] = &#38;#39;no&#38;#39;;

	$bb_views[$view][&#38;#39;title&#38;#39;]  = $title;
	$bb_views[$view][&#38;#39;query&#38;#39;]  = $query_args;
	$bb_views[$view][&#38;#39;sticky&#38;#39;] = !$sticky_set; // No sticky set =&#38;gt; split into stickies and not
	return $bb_views[$view];
}

function bb_deregister_view( $view ) {
	global $bb_views;

	$view = bb_slug_sanitize( $view );
	if ( !isset($bb_views[$view]) )
		return false;

	unset($GLOBALS[&#38;#39;bb_views&#38;#39;][$view]);
	return true;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'm in trouble if I ever need to create my own views or if the views that are being created in the default-filters.php page are ever used.  But until I get a response from someone that knows what's going on, I'm running bbPress without it register views.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11533</link>
<pubDate>Thu, 18 Oct 2007 20:40:29 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">11533@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I wonder why your forum would work with that disabled, but it does not when it's properly enabled.
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11523</link>
<pubDate>Thu, 18 Oct 2007 17:03:46 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11523@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, I commented out the lines that were calling  bb_register_view because they pissed me off.  I can change it back if you like.  I don't know what their purpose is, but I'm pretty sure it might come back to bite me in the butt at a later date.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11518</link>
<pubDate>Thu, 18 Oct 2007 16:29:32 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">11518@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks like it's working today at:&#60;br /&#62;
&#60;a href=&#34;http://www.ridetoremedy.com/community/&#34; rel=&#34;nofollow&#34;&#62;http://www.ridetoremedy.com/community/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thu Oct 18 16:28:41 UTC 2007&#60;/p&#62;
&#60;p&#62;Did you change something?
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11515</link>
<pubDate>Thu, 18 Oct 2007 15:35:09 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11515@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've done a little more troubleshoot, although it's gotten me nowhere, but I'll post it here in the event that someone may be able to help me:&#60;/p&#62;
&#60;p&#62;Line 81 in the bb-includes/default-filters.php file is:&#60;br /&#62;
&#60;code&#62;bb_register_view(&#38;#39;no-replies&#38;#39;, __(&#38;#39;Topics with no replies&#38;#39;), array(&#38;#39;post_count&#38;#39;=&#38;gt;1));&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I did a search in the files and &#34;bb_register_view&#34; pops up in 3 files:&#60;br /&#62;
default-filters.php&#60;br /&#62;
functions.php&#60;br /&#62;
template-functions.php
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11513</link>
<pubDate>Thu, 18 Oct 2007 13:10:15 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11513@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I made sure that all files were there.  I went as far as deleting the whole directory and then moving over the files manually.  So that's not issue...
&#60;/p&#62;</description>
</item>
<item>
<title>agentmaximus on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11512</link>
<pubDate>Thu, 18 Oct 2007 11:27:48 +0000</pubDate>
<dc:creator>agentmaximus</dc:creator>
<guid isPermaLink="false">11512@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You may be missing some files in your installation....?&#60;/p&#62;
&#60;p&#62;My preferred technique for installing is to upload the zip/tarball to the server and then use either command line (i.e. ssh) or a web file manager on my webhost to extract the zip/tarball.&#60;/p&#62;
&#60;p&#62;If you extract the zip/tarball on your own computer and then use FTP to upload the bbPress directory tree then sometimes the FTP client can miss some files if it gets interrupted.
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11508</link>
<pubDate>Thu, 18 Oct 2007 05:17:55 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11508@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I even went a step further and created a new (very empty db) just to troubleshoot and I'm still getting the same error.
&#60;/p&#62;</description>
</item>
<item>
<title>iamfyrestorm on "Fatal Error Prior to Installation"</title>
<link>http://bbpress.org/forums/topic/fatal-error-prior-to-installation#post-11506</link>
<pubDate>Thu, 18 Oct 2007 04:37:36 +0000</pubDate>
<dc:creator>iamfyrestorm</dc:creator>
<guid isPermaLink="false">11506@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm doing a fresh install of bbpress.  I'm not linking it to wp.&#60;/p&#62;
&#60;p&#62;I'm getting this error:&#60;br /&#62;
Fatal error: Call to undefined function: __() in /home/2816/domains/ridetoremedy.com/html/community/bb-includes/default-filters.php on line 81&#60;/p&#62;
&#60;p&#62;My config file is correct.  It's linking to the same db as wp (simply because there's no reason to use a different db if I can just prefix the tables differents, i.e. bb)&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.  I don't want to have to go to a different forum system, but I really thought this would be easier than it's turning out to be.&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
