Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 51,076 through 51,100 (of 64,091 total)
  • Author
    Search Results
  • #74196
    suleiman
    Member

    That’s great news. Let’s get that bad boy pumped out in that case!

    #74221
    Sam Bauers
    Participant

    The Codex is coming…

    Will be after 1.0 release though. Probably sometime next wek.

    #73504
    Sam Bauers
    Participant

    @junsuijin

    Sounds like you just have some trouble syncing up the cookie paths. Try playing with those settings in each config file.

    #74251
    Sam Bauers
    Participant

    did you set the WP_AUTH_COOKIE_VERSION ?

    For WP 2.7 it needs to be…

    define('WP_AUTH_COOKIE_VERSION', 1);

    #74195
    Sam Bauers
    Participant

    No changes are coming that would affect the guide and walkthrough you mention.

    #74253
    Sam Bauers
    Participant

    Totally possible, we do it on WordPress.com

    Easiest approach is to setup a new virtual host for that subdomain before your WPMU virtualhost in Apache. You can then catch it before it goes to the WPMU install which usually catches all subdomains.

    You can also do it from the same virtualhost for a thrill. That does require some .htaccess hackery. This is how WordPress.com is done.

    NB: these rules are for bbPress 0.9 and are supposed to catch all our localised forum domains – it also may not work for everyone. The important part of the rules to note is the skip (S=30) rule at the start.

    # Skip forum rules if not in *.forums.wordpress.com
    RewriteCond %{HTTP_HOST} !^(.+.)*forums.wordpress.com
    RewriteRule .* -

    # Forum rules
    # If you change the total number of rules, the skip rule above must be updated too
    RewriteRule ^/?$ /bbpress/ [L]
    RewriteRule ^bb-admin$ /bb-admin/ [R,L]
    RewriteRule ^bb-admin/(.*)$ /bbpress/bb-admin/$1 [L,QSA]
    RewriteRule ^bb-images/(.*)$ /bbpress/bb-images/$1 [L,QSA]
    RewriteRule ^bb-includes/js/(.*)$ /bbpress/bb-includes/js/$1 [L,QSA]
    RewriteRule ^([^/]+).php(.*)$ /bbpress/$1.php$2 [L,QSA]
    RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /bbpress/forum.php?id=$1 [L,QSA]
    RewriteRule ^forum/?$ /bbpress/ [R,L]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /bbpress/topic.php?id=$1 [L,QSA]
    RewriteRule ^topic/?$ /bbpress/ [R,L]
    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]
    RewriteRule ^tags/([^/]+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]
    RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]
    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/?$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
    RewriteRule ^profile/([^/]+)/?$ /bbpress/profile.php?id=$1 [L,QSA]
    RewriteRule ^profile/?$ /bbpress/profile.php [L,QSA]
    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /bbpress/view.php?view=$1&page=$2 [L,QSA]
    RewriteRule ^view/([^/]+)/?$ /bbpress/view.php?view=$1 [L,QSA]
    RewriteRule ^rss/?$ /bbpress/rss.php [L,QSA]
    RewriteRule ^rss/topics/?$ /bbpress/rss.php?topics=1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/?$ /bbpress/rss.php?forum=$1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/topics/?$ /bbpress/rss.php?forum=$1&topics=1 [L,QSA]
    RewriteRule ^rss/topic/([^/]+)/?$ /bbpress/rss.php?topic=$1 [L,QSA]
    RewriteRule ^rss/tags/([^/]+)/?$ /bbpress/rss.php?tag=$1 [L,QSA]
    RewriteRule ^rss/profile/([^/]+)/?$ /bbpress/rss.php?profile=$1 [L,QSA]
    RewriteRule ^rss/view/([^/]+)/?$ /bbpress/rss.php?view=$1 [L,QSA]
    # If you add more forum rules then you must update the skip rule above them as well

    #73587

    All of the manual -config.php file changes are “recommended settings” and should not be considered “required settings.”

    It will still take some trial and error to sync the platforms up, and some educated cookie viewing to make sure each platform is dropping the same cookies with the same hosts, paths, domains, and hashes.

    My advice is to make sure that the cookie, key, salt, path, and domain related manual entries into your -config.php files are mirror images of each other, and then start modifying from there if one platform drops a cookie differently than the other.

    #14942

    Here’s a question for the bbPress guru side of this. Is it possible to have forums.domain.com on a WPMU install, and have that domain forward to a bbPress installation? My guess is it would take some creative hacking of .htaccess, but I’ll be honest to say I don’t know how I’d do it.

    Thoughts?

    #74194

    Chrishajer,

    Once bbPress goes 1.0, I’ve got a write-up in the queue that will go on buddypress.org and I’ll give to Sam also to put here. I’m going to do a walk-through and probably put it on wordpress.tv also. Trent and I had talked about joining our efforts together a few weeks back, but I think we’re both waiting for bbPress1.0 to drop.

    The only reason I haven’t put anything official out there yet is the process has changed 3 times in the past 3 months and I’d prefer not to add any more info to the mix that will potentially be out-dated before it’s even cited as a valuable reference.

    Half the reason there are the questions there are, is because there are 10 different ways to do it, and none of them are correct for every installation/version of each application.

    I’ll try to talk to Sam tomorrow on IRC and see if there are any cookie/login/session changes due for bbPress before 1.0, and if not I’ll set something up ASAP.

    #74193
    bedbugger
    Participant

    Jim Groom has a wiki how-to about integrating WPMU, buddypress, and bbpress:

    http://umwblogs.org/wiki/index.php/Integrating_WPMu%2C_BuddyPress%2C_and_bbPress

    #74192
    chrishajer
    Participant

    I’d like to see a howto for this, if it exists. I haven’t seen one yet and I continue to see questions here about WPMU integration with bbPress. Thanks.

    #73049
    chrishajer
    Participant

    PROFILE – user specified fields

    I thought there was an “extended profile” plugin as well but I can’t find it right now.

    #73716
    timskii
    Member
    #14940
    Arturo
    Participant

    i’ve integrated the latest trunk of bbPress with my installation of MU 2.7.1 but if I try to login in MU i’m not logged in in bbPress and i have to re-insert my accout username and password.

    i’ve used sam’s plugin but nothing change. I’ve seen the cookie name and are the same, but the problem don’t change…

    anyone can help me? thanks for all.

    #5177
    #71650
    Florian
    Member

    Nope, didn’t help.

    I narrowed the problem down a bit further, though. As soon as I add the following line to my bb-config, cookie integration works but bbpress-admin-access breaks:

    $bb->logged_in_cookie = ‘wordpress_logged_in_’;

    Any suggestions?

    #74247
    chrishajer
    Participant

    It appears your domain is hosted at 1&1 Internet. If so, you might need to add this to the

    top of your .htaccess file:

    Options -MultiViews

    Dropping “MultiViews” support?

    I have domains with 1&1 and I needed to do that to make the rewrite rules work for me.

    chrishajer
    Participant

    I think EasyPHP is for Windows, so I think you will need an SMTP mailer for Windows. I don’t have any first hand experience with those, but I have heard about a couple:

    http://www.google.com/search?q=windows+smtp+mailer

    Also, instead of mailing the password you could just display it with the Instant Password plugin:

    https://bbpress.org/plugins/topic/instant-password/

    #74241

    In reply to: Fatal Error

    chrishajer
    Participant

    The bbpress directory does not go inside the WordPress plugins directory. You probably want it here /home/ironogre/public_html/worldsworkshop/bbpress/ and you will access it at http://www.worldsworkshop.com/bbpress/ . See if that works for you. Also, you can rename the bbpress directory to something else, like forums or community or something. That part of the URL is visible to the public, so make it meaningful to you.

    #74250
    johnhiler
    Member

    If your primary concern is sending emails to newly registered users, you may want to check out this plugin:

    https://bbpress.org/plugins/topic/instant-password/

    #74249

    You already have a post for this: Registration Email setup – To User along with Password

    You don’t need to make multiple posts, that’s spamming :)

    You probably don’t have email capabilities as a ‘server’ on your local machine. Have you ever installed websoftware that sends emails from localhost before?

    #74237
    madeck
    Member

    bbPress version 0.9.0.4

    PHP version 5.2.6

    MySQL vesrion 5.0.67-community-log

    Someone told me to change :

    $this->rows_affected = mysql_affected_rows();

    for :

    $this->rows_affected = mysql_affected_rows($this->dbh);

    #14938

    Hi CK,

    SMTP mailer for BBpress is not working for me.

    I have installed on the local machine the Easy Php and set up the bbpress.

    I have internet connection and I used my office SMTP address and changed the file mentioned in the plugin, but still the same problem I am not able to send the mails to the users who registered.

    Please look into this and help me with this problem

    #14937
    stereopoly
    Member

    Hey guys,

    as many topics in this forum, this is another one concerning permalinks. I have read the FAQ here: http://bbpress.org/documentation/faq/#pretty-permalinks and I have tried both, using Options +MultiViews and also using the code generated by /bb-admin/rewrite-rules.php but I cannot seem to get my permalinks working.

    http://www.mitstil.com/community is the link to my forums.

    The bbpress installation will use pretty permalinks but my host calls it a 404! Please help!

    Hi Folks,

    I have installed the bbpress on the local machine using the EasyPhp.I want to try this before I place on the HostSite.

    Can you please help me the email set up , once the user registers he has to receive an email succesfully with password.

    Please do help me with this .

    Thanks in Advance

    -Vikram

Viewing 25 results - 51,076 through 51,100 (of 64,091 total)
Skip to toolbar