<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; Topic: Wierd problems installing bbPress</title>
		<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress</link>
		<description>bbPress Support Forums &#187; Topic: Wierd problems installing bbPress</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 08:54:59 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/topic/wierd-problems-installing-bbpress" rel="self" type="application/rss+xml" />

		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38256</link>
			<pubDate>Tue, 07 Jul 2009 02:58:10 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">38256@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Two observation:<br />
1. I've got "last everything" installed.<br />
2. It actually works.</p>
<p>I haven't checked up your patches yet.
</p>]]></description>
					</item>
		<item>
			<title>Jason Giedymin on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38204</link>
			<pubDate>Mon, 06 Jul 2009 18:34:19 +0000</pubDate>
			<dc:creator>Jason Giedymin</dc:creator>
			<guid isPermaLink="false">38204@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>SSL will never work if you do this.  If you look at your cookies they will never be flagged 'secure' and they will not be hashed with the appropriate salts.</p>
<p>If you have redirects it's because your cookies failed to auth().  Meaning they were not hashed.</p>
<p>I recommend following my SSL threads, perhaps applying some patches and most importantly install that latest everything (not svn trunk).
</p>]]></description>
					</item>
		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38163</link>
			<pubDate>Mon, 06 Jul 2009 08:00:19 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">38163@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It appears, that the "admin" issue is also SSL related.</p>
<p>In admin.php:8 bb_auth is called with implied, default scheme "auth".</p>
<p>However, later on in functions.bb-pluggable.php:145, the following code is encountered:</p>
<p>if ( is_ssl() ) {<br />
$scheme = 'secure_auth';<br />
} else {<br />
$scheme = 'auth';<br />
}</p>
<p>Which, given that is_ssl() returns true, will make the validation fail and user bounced out of admin page.</p>
<p>For now, I replaced 'secure_auth' with 'auth' in ssl branch as well, which appears to be a reasonable hack for me.
</p>]]></description>
					</item>
		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38159</link>
			<pubDate>Mon, 06 Jul 2009 07:39:38 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">38159@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>By the way, my setup is fully under SSL.<br />
I also changed the install directory to "bbpress".</p>
<p>I discovered the reason for my first problem (line 30 in bb-login.php):</p>
<p>Up here:<br />
 $re == /bbpress/<br />
 $uri == <a href="https://host/bbpress/" rel="nofollow">https://host/bbpress/</a></p>
<p>if ( is_ssl() &#38;&#38; 0 === strpos( $re, '/' ) ) {<br />
        $re = bb_get_uri( $re , null, BB_URI_CONTEXT_HEADER );<br />
}</p>
<p>Down here:<br />
 $re == <a href="https://host/bbpress/bbpress/" rel="nofollow">https://host/bbpress/bbpress/</a></p>
<p>Changing first argument to bb_get_uri from $re to NULL solves the initial login redirect problem for me.</p>
<p>Still looking for the admin link issue.
</p>]]></description>
					</item>
		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38141</link>
			<pubDate>Mon, 06 Jul 2009 02:39:39 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">38141@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's not my "home" machine, so to say.<br />
It's a test server running quite a few things and sitting on a local domain with working dns.</p>
<p>Apache/2.2.11 (Unix) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8h mod_auth_kerb/5.4 mod_python/3.3.1 Python/2.6.2 SVN/1.6.1 PHP/5.2.9-pl2-gentoo with Suhosin-Patch configured</p>
<p>Platform is gentoo-amd64.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38088</link>
			<pubDate>Sun, 05 Jul 2009 07:37:26 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">38088@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You mentioned this was your own machine.  Is this a localhost installation?  What server software are you installing this on?
</p>]]></description>
					</item>
		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-38031</link>
			<pubDate>Sat, 04 Jul 2009 09:03:09 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">38031@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I tried both the tarball from the download page (v1.0, I assume) and SVN trunk. Behavior is exactly the same.</p>
<p>I have no .htaccess nor permalinks, just a clean install of the tarball.</p>
<p>I played around with apache options and mod_rewrite but they had no effect on the issue.</p>
<p>It seems like PHP bug to me.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-37974</link>
			<pubDate>Fri, 03 Jul 2009 19:03:57 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">37974@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Do you have an .htaccess file with rewrite rules in it, and are you using permalinks?  Also, what version of bbPress did you install?
</p>]]></description>
					</item>
		<item>
			<title>oakad on "Wierd problems installing bbPress"</title>
			<link>http://bbpress.org/forums/topic/wierd-problems-installing-bbpress#post-37928</link>
			<pubDate>Fri, 03 Jul 2009 13:16:22 +0000</pubDate>
			<dc:creator>oakad</dc:creator>
			<guid isPermaLink="false">37928@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm trying out bbPress, completely clean install, nothing fancy, my own machine with apache 2.2<br />
Installation goes through without any problems, config file gets created, database gets filled.</p>
<p>When I trying to log on first time, the login page redirects me to incorrect location:</p>
<p>"POST /bb/bb-login.php HTTP/1.1" 302 -<br />
"GET /bb/bb/ HTTP/1.1" 404 279</p>
<p>As can be seen, "bb" (the name of installation subdirectory) appears twice.</p>
<p>Lets work around the error by correcting the url manually in the browser:<br />
"GET /bb/ HTTP/1.1" 200 3356</p>
<p>The forum appears to work fine, however attempt to click the  "Admin" link  (by the only existing, key master user) leads to even more peculiar behavior:</p>
<p>"GET /bb/bb-admin/ HTTP/1.1" 302 -<br />
"GET /bb/ HTTP/1.1" 200 3356</p>
<p>As can be seen, server immediately redirects access back to the starting page (the correct one, unlike the "login" redirect).</p>
<p>Does anybody have any idea what can it be?
</p>]]></description>
					</item>

	</channel>
</rss>

