Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,251 through 57,275 (of 64,430 total)
  • Author
    Search Results
  • #64994

    In reply to: Error – Forum

    bobbyh
    Member

    It looks like your host has disabled several PHP functions that are required by bbPress. Who is your host? You can try contacting them and asking what functions they’ve disabled.

    Alternatively, maybe you’re running under PHP safe mode? If so, try turning safe mode off. This scenario seems more likely to me…

    #65000
    bobbyh
    Member

    It looks like your WordPress htaccess file is screwed up, as this link to a WordPress post doesn’t work:

    * http://www.charitableorthodoxy.com/2008/05/13/hello-world/

    Did you create an htaccess file for your WordPress install? Also, did you create one for your bbPress? If so, please paste in the contents of each htaccess file. If not, try creating one. :-)

    #64900

    In reply to: can’t log in anymore

    Oops then the username got deleted from database!

    Is it true that both jen and admin don’t work either in wp or bbpress?

    If yes then you may have to add that to database via some SQL query or register again. But if you register again it will be registered as normal user and you won’t have admin rights, since there is no admin present so who will assign this new user, the admin powers.

    Register as some username xyz and look in the userlist the entries that exist wheather or not admin/jen is listed.

    #3373
    kjp2
    Member

    Good day,

    I just installed wordpress and bbpress on my domain, charitableorthodoxy.com last night. When I try to view a post, it results in a 404 error? I can’t figure out why. Anyone have any ideas?

    #3372

    Topic: Error – Forum

    in forum Installation
    tiagobigode
    Member

    By installing the forum (bbPress) and access to the loguin created this with the error message:

    Warning: getmypid() has been disabled for security reasons in /home/g29890/public_html/******/forum/bb-includes/class-phpass.php on line 43

    Warning: Cannot modify header information – headers already sent by (output started at /home/g29890/public_html/tiagobigode/forum/bb-includes/class-phpass.php:43) in /home/g29890/public_html/*******/forum/bb-includes/pluggable.php on line 188

    Warning: Cannot modify header information – headers already sent by (output started at /home/g29890/public_html/tiagobigode/forum/bb-includes/class-phpass.php:43) in /home/g29890/public_html/********/forum/bb-includes/pluggable.php on line 228

    someone might help me?

    Thank now

    #3371

    Topic: Nicknames

    in forum Troubleshooting
    paradox460
    Member

    When users on my site sign up using the forum signup, it successfully integrates them into wordpress, but they do not have a nickname, so all comments appear as Anonymous.

    Normally wordpress would automatically set the display name default to be the login name, but they dont seem to for this.

    Any way i could edit the BBpress files to make wp have a name?

    #50336

    In reply to: Using RSS Feeds

    chrishajer
    Participant

    ekitel, this is not really related to RSS feeds is it?

    What you do is access http://www.example.com/bb-admin/rewrite-rules.php, then take what is generated by that script and put that into your .htaccess.

    The FM is right here:

    https://bbpress.org/documentation/faq/#pretty-permalinks

    #3370
    Oscar
    Member

    I’m looking for a plugin for bbPress that shows the latest posts on the forum front page. With the default theme this would be shown as snippets (text of the actual post) below the Tag Cloud/Hot Tags ‘widget’.

    I can’t seem to find a plugin, except the one that does just this on your WP installation if you’ve integrated with WP. Does this exist for bb as well?

    #50335

    In reply to: Using RSS Feeds

    ekitel
    Member

    so what changes do I need to make to /bb-admin/rewrite-rules.php to make it work? where is this F-in’ Manual I need to read? I have bbpress integrated with wordpress so maybe that’s part of the problem

    or are you saying I need to copy the rules out of /bb-admin/rewrite-rules.php into my wordpress .htaccess file to make it work?

    #64722
    mrhoratio
    Member

    Strange, I was able to use spaces in mine. Perhaps it has to do with punctuation marks in the string.

    #63540
    A1ex
    Member

    User Languages

    and

    bbRusToLat

    work with version 0.9

    #64721
    kineda
    Member

    I discovered for it to work that the secret keys cannot have spaces in them (as you could in version 2.5 of wordpress and 0.9.0.1 of bbpress). I generated a new secret key as one long string, and voila… users can pass through both programs without having to re-login. :)

    #64959
    $bb->wp_table_prefix = 'wp__'; // your wordpress db prefix is
    $bb->wp_home = 'http://yourwebsite.com/';
    $bb->wp_siteurl = 'http://yourwebsite.com/';

    replace yourwebsite.com with the blog url.

    if your blog url is for example

    http://www.google.com then don’t forget to add the WWW to it, but if it doesn’t has WWW, the don’t use it.

    #64925
    gerikg
    Member

    Oh forgot. In the header I put just

    <li class="page_item"><a href="/forum/">Forum</a></li>

    after the page tag. It’s either going to be in front of all your pages or behind.

    #64896
    chrishajer
    Participant

    Hi Sam.

    They are actually links on the profile page (in the screenshot they are green and clickable.) I didn’t actually click any of them to be 100% certain, and I don’t have any now that I can check to be sure.

    I have very few plugins installed, none for the profile I don’t think. Here is a screenshot of my plugin page.

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

    If one comes through again, I will make sure the links are clickable. It actually looks like they did some tricks escaping the quotes (backslash and space.) If none come through, I will try to recreate it, and if I can, I will try it with the 0.9.0.2 release.

    #64924
    gerikg
    Member

    How I did it… Please back up everything before starting.

    You need to find a theme close to your WP to make it easier.

    1. BBPress side,I renamed the style.css to styleold.css

    2. Copied over the WPress style.css over to BBpress

    3. Open both files at the same time. You want to copy over some of the codes from styleold.css to style.css. You might need to play with it. Do not copy “body”.

    4. Open both header.php. On the BBpress header copy over from WP header everything after <body> tag. Replacing whatever is there.

    5. Open both footer.php. This one is a little tricky.

    You can just copy over the whole thing and make sure you have <?php do_action(‘bb_foot’, ”); ?> in the file. You will lose the designers info though OR You need to see on WP side if there is any closing tags. bring that over and delete any closing tags on the BBPress side.

    6. Sidebars: depending where the <?php get_sidebar(); ?> tag. For example my <?php get_sidebar(); ?> tag is IN the footer.php Others the <?php get_sidebar(); ?> is in the other php files right before the get_footer tag or after get header tag.

    that’s it.

    make sure in your bb-config.php

    there is

    $bb->WP_BB = true;

    if (file_exists(‘../wp-blog-header.php’))

    require_once(‘../wp-blog-header.php’);

    else

    if (file_exists(‘../../wp-blog-header.php’))

    require_once(‘../../wp-blog-header.php’);

    after <?php tag.

    Goodluck.

    #64946

    In reply to: php_e() issue

    Sam Bauers
    Participant

    This is a tough one to resolve. I noticed before that someone managed to merge their pot files for wordpress and bbpress into one and load that into wordpress (and in turn bbpress)

    #64915

    In reply to: New bbPress BUGGY!!!

    Sam Bauers
    Participant

    I will be working on auto-generating the .htaccess file soon. It will be part of bbPress 1.0

    #3369
    rinashah
    Member

    Hello,

    I am currently integrating bbpress and wpmu.

    When a new user registers, the username duplications are not allowed but email address duplications are allowed, meaning I can loggin with two different usernames and same email address!

    Any plugin to restrict registration per email address?

    #3367
    olgaberrios
    Member

    Hi! This is my bbpress (http://www.voluntariado.tv/bbpress/). When I log in, the Spanish characters are ok. When I log off, they aren’t shown. A questiong mark appears instead. What’s wrong?

    #64720
    mrhoratio
    Member

    Can you post the lines you added to your wp-config.php and bb-config.php files?

    The line defining the secret key in bb-config.php should look something like this:

    define('BB_SECRET_KEY', 'My Secret Key');

    and in wp-config.php

    define('SECRET_KEY', 'My Secret Key');

    Don’t forget the BB_ in fron of SECRET_KEY in the bb-config.php file.

    #64719
    kineda
    Member

    I saw your thread. It wasn’t a solution for me…

    I’ve defined both SECRET_KEY in wp-config and bb-config as the same, as well as pulling in the new “secret” from the wordpress options page into bb-admin config panel.

    Still having the same issues of not being able to be logged into both at the same time.

    #64958
    kineda
    Member

    Sorry, but that didn’t fix my problem. I’ve defined both SECRET_KEY in wp-config and bb-config as the same, as well as pulling in the new “secret” from the wordpress options page into bb-admin config panel.

    Still having the same issues of not being able to be logged into both at the same time.

    #64718
    mrhoratio
    Member
    #64667
    mrhoratio
    Member
Viewing 25 results - 57,251 through 57,275 (of 64,430 total)
Skip to toolbar