<?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 Tag: localhost</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: localhost</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 04:21:16 +0000</pubDate>

<item>
<title>chrishajer on "installation help"</title>
<link>http://bbpress.org/forums/topic/installation-help#post-22161</link>
<pubDate>Tue, 23 Dec 2008 15:52:29 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">22161@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you put in username, password and database name, it sound like the only thing missing is the host name, which is localhost by default, but maybe you need to set a different host name.&#60;/p&#62;
&#60;p&#62;This setting is hidden during installation by a link called something like &#34;Show advanced database settings.&#34;  When you click that you will see two additional fields: host name and table prefix. My guess is that you need to set the host name.&#60;/p&#62;
&#60;p&#62;What host name does the host tell you the database resides on, what are their instructions?
&#60;/p&#62;</description>
</item>
<item>
<title>am5 on "installation help"</title>
<link>http://bbpress.org/forums/topic/installation-help#post-22157</link>
<pubDate>Tue, 23 Dec 2008 04:58:42 +0000</pubDate>
<dc:creator>am5</dc:creator>
<guid isPermaLink="false">22157@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I downloaded bbPress into my wordpress directory, as I am planning on integrating bbPress into my wordpress site, and I go to &#60;a href=&#34;http://www.mysitename/bbpress&#34; rel=&#34;nofollow&#34;&#62;www.mysitename/bbpress&#60;/a&#62; and the installer comes up.  I put in what should be my database &#34;name, user, and password&#34; and I get the errors:&#60;/p&#62;
&#60;p&#62;Warning: mysql_connect() [function.mysql-connect]: Can't connect to local MySQL server through socket '/usr/local/mysql-5.0/data/mysql.sock' (2) in /home/content/m/y/g/mygreensprout/html/bbpress/bb-includes/backpress/class.bpdb.php on line 123&#60;/p&#62;
&#60;p&#62;and&#60;/p&#62;
&#60;p&#62;! There was a problem connecting to the database you specified.&#60;br /&#62;
Please check the settings, then try again. &#60;/p&#62;
&#60;p&#62;Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15767</link>
<pubDate>Fri, 25 Apr 2008 17:04:07 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">15767@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Since bb_mail() is in pluggable.php, it can be completely replaced by a plugin without having to modify any core files.&#60;/p&#62;
&#60;p&#62;I suggest you write your plugin to do that instead of requiring people to modify pluggable.php.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
Plugin Name: SMTP PEAR blah
*/

if ( !function_exists( &#38;#39;bb_mail&#38;#39; ) ) :
function bb_mail() {
    // my replacement for bb_mail()
}
endif;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15758</link>
<pubDate>Fri, 25 Apr 2008 13:49:16 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15758@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Woohoo!!! Got the PEAR-shaped workaround working.&#60;/p&#62;
&#60;p&#62;A guy called Rob Hartzenberg at my hosting provider wrote the plugin for bbpress that uses the PEAR mail package to allow authentication.&#60;/p&#62;
&#60;p&#62;All I needed to do was:&#60;/p&#62;
&#60;p&#62;1. download &#38;#38; edit the plugin file to reflect my own SMTP host, port number,  username (email address) &#38;#38; my password;&#60;/p&#62;
&#60;p&#62;2. replace the last line of the &#60;strong&#62;bb_mail()&#60;/strong&#62; function in &#60;strong&#62;&#34;bb-includes/pluggable.php&#60;/strong&#62; with 2 lines of code supplied in the installation instructions;&#60;/p&#62;
&#60;p&#62;3. Login as keymaster &#38;#38; activate the plugin.&#60;/p&#62;
&#60;p&#62;Voila!&#60;/p&#62;
&#60;p&#62;I will be uploading the plugin shortly as I reckon there will be  people in need of this workaround as quite a lot of hosting providers require SMTP authentication.&#60;/p&#62;
&#60;p&#62;What a relief :)&#60;/p&#62;
&#60;p&#62;many thanks to everyone that tried to assist &#38;#38; an even bigger THANK YOU to Rob at Imaginet.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15740</link>
<pubDate>Thu, 24 Apr 2008 10:45:04 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15740@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey sambauers&#60;/p&#62;
&#60;p&#62;Thanks for the response :)&#60;/p&#62;
&#60;p&#62;I just found out that the standard php &#60;strong&#62;mail()&#60;/strong&#62; function does not support SMTP authentication, and that the only way for me to rectify this problem is to either get my hosting provider to change their server settings, or  some sort of workaround using the PEAR Mail package which apparently provides supporting functions useful to multiple mailer backends. It currently suppors: PHP's native mail() function, sendmail, and SMTP.&#60;/p&#62;
&#60;p&#62;I will keep you posted because if my hosting provider isn't prepared to change his server authentication requirements, this PEAR-shaped workaround may turn out to be a good one for other bbpress users with the same problem.&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15732</link>
<pubDate>Thu, 24 Apr 2008 00:12:47 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15732@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The bb_mail() function that sends emails uses the basic mail() function of PHP. That means that the web server needs to be able to send the mail. There is no built in way to set the mail server to anything else. This would be possible with a plugin, but I don't think that plugin exists.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15712</link>
<pubDate>Wed, 23 Apr 2008 11:03:39 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15712@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi all&#60;/p&#62;
&#60;p&#62;Plz help me, I've read everything there is to read about problem emails &#38;#38; have also tried installing sambauer's bb_mail fix plugin with no luck.&#60;/p&#62;
&#60;p&#62;I had bbpress 0.9 installed on a previous hosting provider &#38;#38; the system would send out emails to new registrants without any problem.&#60;/p&#62;
&#60;p&#62;However, I have moved to a new hosting provider that requires authentication for the mail to be sent, and will not allow &#34;localhost&#34; as the outgoing mail server. Where do I find the php file that allows me to change it from localhost to a specific &#34;outgoing mail server&#34; domain?&#60;/p&#62;
&#60;p&#62;Is it even possible?&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>
<item>
<title>djquinn on "Local Installation, Can't Activate Plugins"</title>
<link>http://bbpress.org/forums/topic/local-installation-cant-activate-plugins#post-14718</link>
<pubDate>Thu, 27 Mar 2008 04:59:37 +0000</pubDate>
<dc:creator>djquinn</dc:creator>
<guid isPermaLink="false">14718@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm working with a local fresh install of bbpress and I can't activate any plugins. (Whenever I click Activate, it says &#34;Are you sure you want to do this?&#34; and seems to be adding an extra backslash in the URL whenever I click YES). If I manually put the URL to activate into the browser without the extra backslash, bbpress spits out a fatal error and doesn't activate the plugin. I've got bbpress working on my web server with all of the plugins, so it's a problem with the local installation. &#60;/p&#62;
&#60;p&#62;The local server is Apache and my config.php looks like this:&#60;br /&#62;
$bb-&#38;gt;uri = 'http://localhost/cindyfish';&#60;br /&#62;
$bb-&#38;gt;mod_rewrite = false;&#60;br /&#62;
(database is working fine, I can click all links in the forum)&#60;/p&#62;
&#60;p&#62;I tried changing the uri to just &#60;a href=&#34;http://localhost/,&#34; rel=&#34;nofollow&#34;&#62;http://localhost/,&#60;/a&#62; but then I can't access the admin panel. &#60;/p&#62;
&#60;p&#62;The only edit I made to the core was to modify:&#60;br /&#62;
$activetheme = bb_get_option('bb_active_theme');&#60;br /&#62;
to&#60;br /&#62;
$activetheme = stripslashes(bb_get_option('bb_active_theme'));&#60;/p&#62;
&#60;p&#62;as instructed in this post:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/theme-not-found-default-theme-applied#post-8889&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/theme-not-found-default-theme-applied#post-8889&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;...so I could get my custom theme recognized.&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;EDIT: Actually, I CAN activate plugins if I manually paste the URL into the browser and remove the extra backslashes; it failed on the path to url plugin by nanome (http://bbpress.org/forums/topic/updated-to-desmond-but-theme-not-working/page/2)... would be nice tho to create a hack that could fix this for local installations on Windows&#60;/p&#62;
&#60;p&#62;EDIT2: Okay, it also seems that bbpress adds the extra backslash only if the plugins are in individual folders. For plugins that sit just in the my-plugins folder, the local installation can activate them fine. Otherwise they have to be linked manually.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Article: Install bbPress Locally"</title>
<link>http://bbpress.org/forums/topic/article-install-bbpress-locally#post-12128</link>
<pubDate>Wed, 21 Nov 2007 02:54:47 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">12128@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It is for the benefit of others.   OK with me :)&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>refueled on "Article: Install bbPress Locally"</title>
<link>http://bbpress.org/forums/topic/article-install-bbpress-locally#post-12127</link>
<pubDate>Wed, 21 Nov 2007 02:24:00 +0000</pubDate>
<dc:creator>refueled</dc:creator>
<guid isPermaLink="false">12127@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;A little bit of self-promotion here...&#60;br /&#62;
(mods: delete if not allowed)&#60;/p&#62;
&#60;p&#62;I just wrote an article on how to install bbPress locally.&#60;br /&#62;
You can read it here: &#60;a href=&#34;http://www.refueled.net/install-bbpress-locally/&#34; rel=&#34;nofollow&#34;&#62;http://www.refueled.net/install-bbpress-locally/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For those experts out there: if there are any errors within the article, I would appreciate if you could let me know. :)&#60;/p&#62;
&#60;p&#62;Hope it's useful.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "bbPress on localhost"</title>
<link>http://bbpress.org/forums/topic/bbpress-on-localhost#post-12119</link>
<pubDate>Tue, 20 Nov 2007 22:22:11 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">12119@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Better to use the latest version from trunk than those diff files if possible.
&#60;/p&#62;</description>
</item>
<item>
<title>Doobus on "bbPress on localhost"</title>
<link>http://bbpress.org/forums/topic/bbpress-on-localhost#post-12106</link>
<pubDate>Tue, 20 Nov 2007 05:24:45 +0000</pubDate>
<dc:creator>Doobus</dc:creator>
<guid isPermaLink="false">12106@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks a lot found the fix.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbPress on localhost"</title>
<link>http://bbpress.org/forums/topic/bbpress-on-localhost#post-12105</link>
<pubDate>Tue, 20 Nov 2007 04:40:30 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12105@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think you were bitten by an error that has been fixed in the latest trac release, but still exists in the production release.  Take a look through the threads tagged 745:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/tags/745&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/tags/745&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;745 is the trac ticket where this was discussed.  There are lots of workarounds listed in the forums and on trac.&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/745&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/745&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Good luck.
&#60;/p&#62;</description>
</item>
<item>
<title>Doobus on "bbPress on localhost"</title>
<link>http://bbpress.org/forums/topic/bbpress-on-localhost#post-12104</link>
<pubDate>Tue, 20 Nov 2007 03:43:23 +0000</pubDate>
<dc:creator>Doobus</dc:creator>
<guid isPermaLink="false">12104@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've tried installing it on xampp and wamp and I get the same warnings.  When I go ahead and install with the warnings I can't log in.  I don't get why it is reading &#60;a href=&#34;mailto:ODBC@localhost&#34;&#62;ODBC@localhost&#60;/a&#62; instead of the DB name I provided which is bbp1.  I'm 99.9% sure I set up config correctly, but just in case I didn't here it is:  &#60;/p&#62;
&#60;p&#62;// ** MySQL settings ** //&#60;br /&#62;
define('BBDB_NAME', 'bbp1');      // The name of the database&#60;br /&#62;
define('BBDB_USER', 'root');     // Your MySQL username&#60;br /&#62;
define('BBDB_PASSWORD', ''); // ...and password&#60;br /&#62;
define('BBDB_HOST', 'localhost');    // 99% chance you won't need to change these last few&#60;/p&#62;
&#60;p&#62;define('BBDB_CHARSET', 'utf8');      // If you are *upgrading*, and your old config.php does&#60;br /&#62;
define('BBDB_COLLATE', '');          // not have these two contstants in them, DO NOT define them&#60;br /&#62;
                                     // If you are installing for the first time, leave them here&#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://localhost/bbpress';&#60;/p&#62;
&#60;p&#62;// What are you going to call me?&#60;br /&#62;
$bb-&#38;gt;name = 'bbpress';&#60;/p&#62;
&#60;p&#62;// This must be set before you run the install script.&#60;br /&#62;
$bb-&#38;gt;admin_email = 'blah@blah.com;&#60;/p&#62;
&#60;p&#62;-----------------------The Warnings-----------------&#60;/p&#62;
&#60;p&#62;Warning: mysql_get_server_info() [function.mysql-get-server-info]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\wamp\www\bbpress\bb-includes\db-mysqli.php on line 80&#60;/p&#62;
&#60;p&#62;Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in C:\wamp\www\bbpress\bb-includes\db-mysqli.php on line 80&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at C:\wamp\www\bbpress\bb-includes\db-mysqli.php:80) in C:\wamp\www\bbpress\bb-admin\install.php on line 10&#60;/p&#62;
&#60;p&#62;Warning: Cannot modify header information - headers already sent by (output started at C:\wamp\www\bbpress\bb-includes\db-mysqli.php:80) in C:\wamp\www\bbpress\bb-includes\functions.php on line 1898
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7675</link>
<pubDate>Sun, 27 May 2007 11:47:32 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7675@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually I made a mistake, it's not the good path.&#60;/p&#62;
&#60;p&#62;Anyway, it's only a local problem. So I just replace the php function with the exact local URL (http://localhost/.../style.css) in the header.php file.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7669</link>
<pubDate>Sun, 27 May 2007 01:09:56 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7669@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If the stylesheet path is correct, you do not have the same problem. It should not contain \ at all.&#60;/p&#62;
&#60;p&#62;The code should maybe go in /my-plugins/.
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7663</link>
<pubDate>Sat, 26 May 2007 22:45:29 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7663@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I'm having the same exact problem, with the same configuration: Win Xp with SP2 + Xampp.&#60;/p&#62;
&#60;p&#62;Installation went fine, WP users (with the locally installed WP) are recognized, even the french translation file works.&#60;/p&#62;
&#60;p&#62;The path to my stylesheet seems fine, I checked the source. But it won't work.&#60;/p&#62;
&#60;p&#62;I didn't get how to fix it. I saw the PHP code but it doesn't tell WHERE to put it. If anyone could tell, that would be great.&#60;/p&#62;
&#60;p&#62;bbx&#60;/p&#62;
&#60;p&#62;EDIT: I've tried to figure it out by myself but it didn't work out.&#60;br /&#62;
I added the function in the &#34;functions.php&#34; file, and the add_filter in the &#34;default-filters.php&#34; file, both files being in the &#34;bb-includes&#34; folder.&#60;/p&#62;
&#60;p&#62;What did I do wrong?
&#60;/p&#62;</description>
</item>
<item>
<title>Omarvelous on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-7624</link>
<pubDate>Thu, 24 May 2007 13:38:10 +0000</pubDate>
<dc:creator>Omarvelous</dc:creator>
<guid isPermaLink="false">7624@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;GREAT!! Thx!
&#60;/p&#62;</description>
</item>
<item>
<title>dprice on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-6907</link>
<pubDate>Sun, 22 Apr 2007 13:42:41 +0000</pubDate>
<dc:creator>dprice</dc:creator>
<guid isPermaLink="false">6907@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Cheers mirfan - your fix worked a treat! (I've got an XP install using &#60;a href=&#34;http://www.wampserver.com/en/index.php&#34; title=&#34;WAMP server&#34;&#62;WAMP&#60;/a&#62; as a server - just for testing stuff atm).
&#60;/p&#62;</description>
</item>
<item>
<title>mirfan on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-6438</link>
<pubDate>Fri, 06 Apr 2007 06:34:00 +0000</pubDate>
<dc:creator>mirfan</dc:creator>
<guid isPermaLink="false">6438@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I changed&#60;br /&#62;
&#60;code&#62;define( 'BBPATH', dirname(__FILE__) . '/' );&#60;/code&#62;&#60;br /&#62;
with this:&#60;br /&#62;
&#60;code&#62;define( 'BBPATH', str_replace('\\', '/', realpath(dirname(__FILE__))) . '/' );&#60;/code&#62;&#60;br /&#62;
in bb-load.php, and now it works on localhost with windows xp sp2.
&#60;/p&#62;</description>
</item>
<item>
<title>tquizzle on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-6373</link>
<pubDate>Wed, 04 Apr 2007 16:23:15 +0000</pubDate>
<dc:creator>tquizzle</dc:creator>
<guid isPermaLink="false">6373@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;davetropeano's fix worked, although I had to dig a little to find out exactly what he was referring to.&#60;br /&#62;
You dont want to create a &#60;strong&#62;field&#60;/strong&#62; but rather a &#60;strong&#62;row&#60;/strong&#62; in the &#34;bb_topicmeta&#34; table.&#60;br /&#62;
I was able to check a working bbpress installation on Linux to verify the setting. I noticed that the bb_active_theme was set to use the full server path to the template folder. The below did the trick for me.&#60;/p&#62;
&#60;p&#62;meta_id = next available number&#60;br /&#62;
topic_id = 0&#60;br /&#62;
meta_key = bb_active_theme&#60;br /&#62;
meta_value = /bbpress-path/bb-templates/theme-to-use/&#60;/p&#62;
&#60;p&#62;Save that, cross your fingers and refresh your forum.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-6254</link>
<pubDate>Sat, 31 Mar 2007 22:30:51 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">6254@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the discussion!   I will make sure I point mdawaffe to this thread! &#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>davetropeano on "localhost installs"</title>
<link>http://bbpress.org/forums/topic/localhost-installs#post-6250</link>
<pubDate>Sat, 31 Mar 2007 20:40:49 +0000</pubDate>
<dc:creator>davetropeano</dc:creator>
<guid isPermaLink="false">6250@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I recently did my first bbpress install on localhost and it went miserably. I used the latest download from today.&#60;/p&#62;
&#60;p&#62;Checking on this forum I had the same path seperator issues and stylesheet issues others had, etc.&#60;/p&#62;
&#60;p&#62;My $bb-&#38;gt;domain and $bb-&#38;gt;path were fine. The fresh install just didn't work properly under xampp and then again a retry on easyPHP.&#60;/p&#62;
&#60;p&#62;This is the solution and findings I found:&#60;/p&#62;
&#60;p&#62;1. The first issue is because in config.php and bb-load.php dirname(__FILE__) is used to get the base path for BBPATH. This is not a good thing on localhost Windows based installs.&#60;/p&#62;
&#60;p&#62;2. There are a number of attempted workarounds to this that I've read about in this forum. All of them that I saw didn't work. Focusing on the issue with the stylesheet href not being correct I noticed that there was logic in the bb_get_active_theme_folder() function.&#60;/p&#62;
&#60;p&#62;By default, the installer does NOT create an option entry 'bb_active_theme' in the database table topicmeta. The code logic doesn't make the correct uri.&#60;/p&#62;
&#60;p&#62;To fix this, do an install and then add a database field bb_active_theme in the topicmeta table.&#60;/p&#62;
&#60;p&#62;For example, I set mine to:&#60;br /&#62;
&#60;a href=&#34;http://localhost/dev/bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://localhost/dev/bbpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Playing regular expression games to change x:\ and \ in general is not worth it. This seemed to be simple and worked right out of the box.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4797</link>
<pubDate>Fri, 23 Feb 2007 16:49:41 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4797@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The fix is still there though!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/attachment/ticket/575/path-to-url.2.php&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/attachment/ticket/575/path-to-url.2.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>donnavitan on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4793</link>
<pubDate>Fri, 23 Feb 2007 15:23:56 +0000</pubDate>
<dc:creator>donnavitan</dc:creator>
<guid isPermaLink="false">4793@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi Trent,&#60;/p&#62;
&#60;p&#62;I'm having the same issue with marky. I've tried to look at ticket 575 but it's not there anymore.&#60;/p&#62;
&#60;p&#62;I would appreciate any help. Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>marky on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4458</link>
<pubDate>Tue, 13 Feb 2007 22:20:28 +0000</pubDate>
<dc:creator>marky</dc:creator>
<guid isPermaLink="false">4458@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks, Trent. I'll give the plugin fix a shot and keep an eye on the ticket. :-)
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4448</link>
<pubDate>Tue, 13 Feb 2007 17:25:12 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4448@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The problem with localhost will be addressed in the next version for sure, but it always helps to check out this ticket for reference to any problems with localhost installs:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/attachment/ticket/575/&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/attachment/ticket/575/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Referencing this file:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/attachment/ticket/575/path-to-url.2.php&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/attachment/ticket/575/path-to-url.2.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>marky on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4447</link>
<pubDate>Tue, 13 Feb 2007 17:19:34 +0000</pubDate>
<dc:creator>marky</dc:creator>
<guid isPermaLink="false">4447@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi chrishajer,&#60;/p&#62;
&#60;p&#62;Thanks for the help. I'm using Windows XP Home with SP2 installed and XAMPP as the web server. &#60;/p&#62;
&#60;p&#62;I tried a test installation on a private subdomain on the actual web host hardware and it is indeed working there, but since I'd ultimately like to try developing themes and plugins, it would be a lot more convenient if I could work on this locally. (I actually run a complete mirror of my site locally for development purposes. Since the site is somewhat complicated as a whole, it's important for me to test everything on the non-live site before I flip the metaphorical switch.)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4424</link>
<pubDate>Tue, 13 Feb 2007 00:09:22 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">4424@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't think there was a solution on the other topic: I believe it ended with a question to try something else (different plugin versions) which would not apply in your case. &#60;/p&#62;
&#60;p&#62;What operating system are you using?  Maybe I can do an install on localhost and see if I can recreate your problem.&#60;/p&#62;
&#60;p&#62;I'm surprised it works on localhost actually, but Trent said there are lots of successful localhost installs.    Can you install into a different folder on your web host and see if it works there?  I know there might be an issue, but if this is for experimentation, why not perform the experiment on the hardware it will eventually go live on?&#60;/p&#62;
&#60;p&#62;If your operating system is a Linux variant (I am using Kubuntu Edgy), I can do an install here and see if I have the same problem.
&#60;/p&#62;</description>
</item>
<item>
<title>marky on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-4423</link>
<pubDate>Mon, 12 Feb 2007 23:47:03 +0000</pubDate>
<dc:creator>marky</dc:creator>
<guid isPermaLink="false">4423@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi chrishajer,&#60;/p&#62;
&#60;p&#62;It seems like a similar problem, for sure. Is there a fix for it? I'm using version 0.8. According to that thread, this issue should only occur in older versions.&#60;/p&#62;
&#60;p&#62;Incidentally, I'm not using any custom templates or plugins. It's an &#34;out-of-the-box&#34; install of 0.8.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
