Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,151 through 56,175 (of 64,066 total)
  • Author
    Search Results
  • #65853
    chrishajer
    Participant
    #65238
    chrishajer
    Participant
    #65237
    _ck_
    Participant

    Hi, fantastic site but you have a minor server problem where it’s serving your bbpress pages with 404 errors instead of 200 status.

    It’s a strange problem I’ve seen on a handful of bbPress sites and I am not entirely certain why it happens. Do you use multiviews or real mod_rewrite rules?

    #66366
    _ck_
    Participant

    It’s very easy to do this via a plugin.

    You have to attach to the ‘bb_head’ action.

    In fact if there’s a plugin for WordPress that does it, it would take under a minute to change it for bbPress.

    Here’s a mini-plugin I wrote to do noarchive and nofollow:

    function no_archive() {
    echo "n".'<meta NAME="robots" CONTENT="noarchive,nofollow">'."n";
    } add_action('bb_head', 'no_archive');

    .

    It would just have to be wrapped in an IF statement with a URI check to add it when you want it. To get the current location, either check bb_get_location or steal it’s code and modify as desired.

    Something like this (untested)

    function no_index() {
    if (in_array(bb_get_location(),array("login-page","register-page","profile-page")) {
    echo "n".'<meta NAME="robots" CONTENT="noindex,nofollow">'."n";
    }
    } add_action('bb_head', 'no_archive');

    #64047
    _ck_
    Participant

    This topic has nothing to do with subdomains, but you can definitely install bbpress on a subdomain. Just enter the appropriate info during setup.

    #64046
    cordoval
    Member

    Can I install bbpress on a subdomain? Is this possible?

    Please contact me to cordoval@gmail.com

    Encouragements,

    #65852
    _ck_
    Participant

    Nice look but you need to look into your server configuration as the bbPress pages are being served with 404 error code instead of 200 (even though they display).

    Something might be wrong with your htaccess

    #66387
    _ck_
    Participant

    I am not sure about the loading order of your plugin but keep in mind that stuff like bb_is_user_logged_in() is only available when bbPress is fully initialized.

    Essentially you cannot execute anything but the most basic independent code until do_action('bb_init' happens.

    So you have to hook bb_init, ie:

    add_action('bb_init','your_function_name);`

    and THEN your function can check bb_is_user_logged_in.

    BB_IS_ADMIN is a constant so be sure to use DEFINED to test it and not directly or you’ll get an error

    if (defined('BB_IS_ADMIN')) {

    (also, BB_IS_ADMIN means if you are in the admin menu, not if the user is an administrator – not sure if you knew that)

    #66364
    _ck_
    Participant

    Yes I am familiar with that WP redirect plugin – it saves the old permalink in meta and checks the meta when a url is not found.

    It would be an interesting port for bbPress but I am too burnt out on bbPress stuff right now to give it a go. I highly suggest the phpmyadmin method for now to just manually edit the permalink since it’s a one-time deal.

    #66011
    _ck_
    Participant

    For those that know what they are doing and have subversion, you can checkout or switch to the alpha trunk of bbPress which will give you compatibility with WordPress 2.6

    svn switch http://svn.automattic.com/bbpress/trunk/

    Unfortunately an automated download zip cannot be created because this is the first version of bbPress that uses BackPress which is automatically added by svn, but can’t be zipped by TRAC.

    Here’s a ZIP’ed snapshot from yesterday:

    http://www.mediafire.com/?alvvslgmh22

    Keep in mind that you should NOT use the bbPress trunk for live websites – it’s bound to have bugs and some might affect security. You are on your own if you chose to use this version – plugins may have some compatibility issues.

    1.0 requires the 3 new WP matching keys inserted into bb-config.php (see thebb-config-sample.php for more info)

    #66277
    _ck_
    Participant

    For those that know what they are doing and have subversion, you can checkout or switch to the trunk of bbPress (which will give you compatibility with WordPress 2.6)

    svn switch http://svn.automattic.com/bbpress/tags/1.0-alpha-1/

    Unfortunately an automated download zip cannot be created because this is the first version of bbPress that uses BackPress which is automatically added by svn, but can’t be zipped by TRAC.

    Here’s a ZIP’ed snapshot from yesterday:

    http://www.mediafire.com/?y33rsdhxeld

    Keep in mind that you should NOT use the bbPress trunk for live websites – it’s bound to have bugs and some might affect security. You are on your own if you chose to use this version – plugins may have some compatibility issues.

    1.0 requires the 3 new WP matching keys inserted into bb-config.php (see thebb-config-sample.php for more info)

    Sam could use your bug reports via TRAC if you find problems.

    #66276
    Shagalaga
    Member

    we need more official templates, which are easy to edit/change

    #66386

    In reply to: Subscribe to comments

    chrishajer
    Participant

    They can mark the thread as a favorite and have the system notify them of new posts with this plugin:

    https://bbpress.org/plugins/topic/post-notification/

    In your profile, there is also an RSS feed for a member’s favorites. But email is easier for non-techies.

    #66374

    In reply to: Can not upgrade to 2.6

    Ben L.
    Member

    1. This is the bbPress forum
    2. Did you edit wp-includes/functions.php (If so, can you paste the contents into http://pastebin.com/ and give us the url?)

    #3686
    Ben L.
    Member

    You can download a before-alpha copy at http://www.mediafire.com/?51zcmu1mhou

    The problems I’m having are that

    1. When I activate the plugin, it doesn’t know about the “bb_is_user_logged_in()” command
    2. And when I delete that command from the plugin, it never finds BB_IS_ADMIN to be true.

    Fatal error: Call to undefined function bb_is_user_logged_in() in J:wwwhtdocsbbpress-stablemy-pluginsbbpm.php on line 20

    #66275
    chrishajer
    Participant
    #66274
    alexleonard
    Member

    Is there any estimate on when this will be coming out?

    Very much looking forward to it :)

    #66010
    energymv
    Member

    i shall wait until then to try bbpress.

    i’ve also posted at WP about integration of bbpress w/ WP 2.6:

    https://wordpress.org/support/topic/191512#post-813236

    #3683
    783414
    Inactive

    Hi,

    i’ve a problem with my first bbpress installation.

    I’ve install bbpress on my subfolder /forum3/, forum is ok

    but i’ve problem with rewrite url.

    I ‘ve try to insert Options +MultiViews in htaccess file, but i’ve Error 500, i’ve try to create htaccess file with /bb-admin/rewrite-rules.php but url do error 404.

    This my htaccess

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum3/

    RewriteRule ^forum3/([^/]+)/page/([0-9]+)/?$ /forum3/forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forum3/([^/]+)/?$ /forum3/forum.php?id=$1 [L,QSA]

    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /forum3/topic.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^topic/([^/]+)/?$ /forum3/topic.php?id=$1 [L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /forum3/tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/([^/]+)/?$ /forum3/tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ /forum3/tags.php [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /forum3/profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/?$ /forum3/profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forum3/profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/([^/]+)/?$ /forum3/profile.php?id=$1 [L,QSA]

    RewriteRule ^profile/?$ /forum3/profile.php [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /forum3/view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([^/]+)/?$ /forum3/view.php?view=$1 [L,QSA]

    RewriteRule ^rss/?$ /forum3/rss.php [L,QSA]

    RewriteRule ^rss/topics/?$ /forum3/rss.php?topics=1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ /forum3/rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/topics/?$ /forum3/rss.php?forum=$1&topics=1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)/?$ /forum3/rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/?$ /forum3/rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)/?$ /forum3/rss.php?profile=$1 [L,QSA]

    RewriteRule ^rss/view/([^/]+)/?$ /forum3/rss.php?view=$1 [L,QSA]

    </IfModule>

    It’s ok?

    What is the problem?

    Thank

    Marco

    chrishajer
    Participant

    Here is a screenshot of my iGoogle page with the bbPress.org Recent Posts feed right at the top/center. Your post is visible there :-) All the items on this page are RSS feeds.

    http://www.chrishajer.com/bbpress/iGoogle.png

    chrishajer
    Participant

    You need a feed reader, that’s all. With FireFox, when you click on the RSS icon, while viewing a topic page, I think it asks “subscribe to topic” and if you want to use “live bookmarks” which are RSS feeds built in to Firefox (this is probably different between FF2 and FF3.)

    If you are seeing code, then the browser you are using is not equipped to handle RSS feeds.

    Google Reader is one RSS feed reader:

    http://www.google.com/reader/

    The Google Personalize Home Page allows you to add RSS feeds right there too. I follow a lot of support forums that way. Just click “Add Stuff” then skip all the pretty icons and find the text “Add feed or gadget” which used to be called “Add by url” or something.

    http://www.google.com/ig/

    You just need a feed reader and I think everything will be fine.

    #66304
    chrishajer
    Participant

    Yes, I think it’s called “Burn a feed” at Feedburner.com. You can do that, then either log in or create an account. Once that is done, you will have a URL to insert into your bbPress header ( I think ) to redirect your feed to the FeedBurner feed.

    Then, anyone who subscribes to that feed will be notified of new posts (if you burned the feed for Recent Posts, not Recent Topics.)

    I’m not sure why it needs to go through FeedBurner though. If you have an RSS feed already in your bbPress forum for New Posts, why not just subscribe to that to be notified of new posts? I must be missing something…

    P.S. There is nothing built into bbPress like this, for FeedBurner. So, you didn’t overlook it: it’s not there. Do the work at feedburner.com then change the URL for the feed in bbPress.

    #66009
    _ck_
    Participant

    energymv, there’s no real answer right now – I know it won’t happen in July and my educated guess is it’s not likely to be August. So for those that insist on a date, think September.

    Sam has indicated he’s not inclined to release another version of 0.9 that changes to the 2.6 cookies, so maybe by late August there will be an early version of 1.0 beta that will be usable.

    ps. sometimes Sam and MDA have been known to suddenly set a deadline and get cranking on code/bugfixes so don’t be surprised if they prove me wrong and magically churn out a new version in a few weeks – I’m just saying they have quite a bit of things to do before it’s ready…

    #3681
    783210
    Inactive

    Hi,

    I entered the wrong Secret value when installing BBPress. Now when I go to BBPress Settings > WordPress Integration and try to change it, it logs me out of BBPress. The value obviously does not get updated. This only hapens if I try to change the Secret field.

    How do I update the field as WP integration will not work otherwise? I don’t have direct access to the database, no PHPmyadmin option. My client is using PLESK.

    Thanks!

    RossB
    Member

    Guys, be gentle – I am fully aware that this is a question as technically ignorant as it gets.

    I have registered for a few RSS feeds on blogs etc without problem, but I have never been able to figure out how the RSS feeds work with the bbPress and WordPress support forums.

    Whenever I have decided I’d like a feed of a particular thread I’ve posted on, for example, I click on the RSS button and get a page full of code I have no idea what to do with.

    Could any of you kind informed folk explain in lay language how I can turn this page of code into a way of registering for a feed, please?

Viewing 25 results - 56,151 through 56,175 (of 64,066 total)
Skip to toolbar