<?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: Problems installing</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Problems installing</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 13:47:48 +0000</pubDate>

<item>
<title>mdawaffe on "Problems installing"</title>
<link>http://bbpress.org/forums/topic/problems-installing#post-761</link>
<pubDate>Sun, 29 Oct 2006 17:58:58 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">761@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It looks like not al of the files were uploaded to your host correctly (this is a notorious problem with FTP).  Try deleting the files and uploading them  again (just re-uploading them and hoping they will overwrite the old files may not work).
&#60;/p&#62;</description>
</item>
<item>
<title>hyper123 on "Problems installing"</title>
<link>http://bbpress.org/forums/topic/problems-installing#post-747</link>
<pubDate>Sun, 29 Oct 2006 04:37:17 +0000</pubDate>
<dc:creator>hyper123</dc:creator>
<guid isPermaLink="false">747@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://pastebin.ca/227295&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.ca/227295&#60;/a&#62; &#38;lt; there is the link
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "Problems installing"</title>
<link>http://bbpress.org/forums/topic/problems-installing#post-728</link>
<pubDate>Sun, 29 Oct 2006 00:03:16 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">728@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hyper123,&#60;/p&#62;
&#60;p&#62;That's very hard to read (not your fault).&#60;/p&#62;
&#60;p&#62;Can you paste it &#60;a href=&#34;http://pastebin.ca/&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.ca/&#60;/a&#62; and the post the link here?
&#60;/p&#62;</description>
</item>
<item>
<title>hyper123 on "Problems installing"</title>
<link>http://bbpress.org/forums/topic/problems-installing#post-721</link>
<pubDate>Sat, 28 Oct 2006 20:09:32 +0000</pubDate>
<dc:creator>hyper123</dc:creator>
<guid isPermaLink="false">721@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm trying to install bbpress and the config file is correct. The error I receive is, &#60;/p&#62;
&#60;p&#62;microsoft.com/kb/q176113/ if ( !function_exists('wp_redirect') ) : // [WP4273] function wp_redirect($location, $status = 302) { global $is_IIS; $location = preg_replace('&#124;[^a-z0-9-~+_.?#=&#38;#38;;,/:%]&#124;i', '', $location); $location = wp_kses_no_null($location); $strip = array('%0d', '%0a'); $location = str_replace($strip, '', $location); if ( $is_IIS ) { header(&#34;Refresh: 0;url=$location&#34;); } else { status_header($status); // This causes problems on IIS header(&#34;Location: $location&#34;); } } endif; if ( !function_exists('bb_verify_nonce') ) : function bb_verify_nonce($nonce, $action = -1) { $user = bb_get_current_user(); $uid = $user-&#38;gt;ID; $i = ceil(time() / 43200); //Allow for expanding range, but only do one check if we can if( substr(wp_hash($i . $action . $uid), -12, 10) == $nonce &#124;&#124; substr(wp_hash(($i - 1) . $action . $uid), -12, 10) == $nonce ) return true; return false; } endif; if ( !function_exists('bb_create_nonce') ) : function bb_create_nonce($action = -1) { $user = bb_get_current_user(); $uid = $user-&#38;gt;ID; $i = ceil(time() / 43200); return substr(wp_hash($i . $action . $uid), -12, 10); } endif; // Not verbatim WP, bb has no options table and constants have different names. if ( !function_exists('wp_salt') ) : function wp_salt() { global $bb; $salt = $bb-&#38;gt;secret; if ( empty($salt) ) $salt = BBDB_PASSWORD . BBDB_USER . BBDB_NAME . BBDB_HOST . BBPATH; return $salt; } endif; if ( !function_exists('wp_hash') ) : function wp_hash($data) { $salt = wp_salt(); if ( function_exists('hash_hmac') ) { return hash_hmac('md5', $data, $salt); } else { return md5($data . $salt); } } endif; if ( !function_exists('bb_check_admin_referer') ) : function bb_check_admin_referer( $action = -1 ) { if ( !bb_verify_nonce($_REQUEST['_wpnonce'], $action) ) { bb_nonce_ays($action); die(); } do_action('bb_check_admin_referer', $action); } endif; if ( !function_exists('bb_check_ajax_referer') ) : function bb_check_ajax_referer() { global $bb; $cookie = explode('; ', urldecode(empty($_POST['cookie']) ? $_GET['cookie'] : $_POST['cookie'])); // AJAX scripts must pass cookie=document.cookie foreach ( $cookie as $tasty ) { if ( false !== strpos($tasty, $bb-&#38;gt;usercookie) ) $user = substr(strstr($tasty, '='), 1); if ( false !== strpos($tasty, $bb-&#38;gt;passcookie) ) $pass = substr(strstr($tasty, '='), 1); } if ( !bb_check_login( $user, $pass, true ) ) die('-1'); do_action('bb_check_ajax_referer'); } endif; if ( !function_exists('bb_break_password') ) : function bb_break_password( $user_id ) { global $bbdb; $user_id = (int) $user_id; if ( !$user = bb_get_user( $user_id ) ) return false; $secret = substr(wp_hash( 'bb_break_password' ), 0, 13); if ( false === strpos( $user-&#38;gt;user_pass, '---' ) ) return $bbdb-&#38;gt;query(&#34;UPDATE $bbdb-&#38;gt;users SET user_pass = CONCAT(user_pass, '---', '$secret') WHERE ID = '$user_id'&#34;); else return true; } endif; if ( !function_exists('bb_fix_password') ) : function bb_fix_password( $user_id ) { global $bbdb; $user_id = (int) $user_id; if ( !$user = bb_get_user( $user_id ) ) return false; if ( false === strpos( $user-&#38;gt;user_pass, '---' ) ) return true; else return $bbdb-&#38;gt;query(&#34;UPDATE $bbdb-&#38;gt;users SET user_pass = SUBSTRING_INDEX(user_pass, '---', 1) WHERE ID = '$user_id'&#34;); } endif; if ( !function_exists('bb_has_broken_pass') ) : function bb_has_broken_pass( $user_id = 0 ) { global $bb_current_user; if ( !$user_id ) $user =&#38;#38; $bb_current_user-&#38;gt;data; else $user = bb_get_user( $user_id ); return ( false !== strpos($user-&#38;gt;user_pass, '---' ) ); } endif; ?&#38;gt;&#60;br /&#62;
Fatal error: Call to undefined function: bb_current_user() in forums/bb-settings.php on line 146&#60;/p&#62;
&#60;p&#62;I got the exact same kind of error yesterday while I was trying to install wordpress 2.0.5 but was able to install 2.0.4 no problem then upgrade to 2.0.5. Any help would be greatly appreciated.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
