Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,501 through 59,525 (of 64,472 total)
  • Author
    Search Results
  • #61202
    Trent Adams
    Member

    It would be easier to do the following if you want to change your title back in config.php and then download your header.php from your template folder and do something like this:

    <h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h1>

    Then save the file and upload to /my-templates/ so if you make a mistake, you can delete it and bbPress will use the original!

    Trent

    #61201
    majea
    Member

    livibetter, thank you for your help, but I still can’t get it to work. I think I’m going to do some reading up on php and try to understand the process a bit more, so I can figure out what is going on here.

    #59135

    In reply to: Installing bbPress

    chrishajer
    Participant

    I think this is related to this trac ticket:

    https://trac.bbpress.org/ticket/745

    There is a patch attached there:

    https://trac.bbpress.org/attachment/ticket/745/745c.diff

    But, read the bug report first to see if this is your problem. I think it is.

    #61200
    chrishajer
    Participant

    Never mind :)

    #61199
    livibetter
    Member

    I see. Then that would be

    require_once '../wp-blog-header.php';

    #61198
    majea
    Member

    Livibetter, thanks, but I’m still a bit confused, as that looks like what I did type. Also, I installed bbPress as a subdirectory in the WordPress folder, so it was path/to/wordpress and then path/to/wordpress/bbPress. Does this make a difference?

    #53604
    livibetter
    Member

    Hi,

    Here is a quick php for it(Use this method at your own risk), you need pretty permalink to use it.

    Save the following code in bbPress root folder as page.php

    <?php
    require_once('./bb-load.php');
    if (preg_match('/.*/page/(.*)/', $_SERVER['REQUEST_URI'], $matches)) {
    $file = bb_slug_sanitize($matches[1]) . '.php';
    if (file_exists(bb_get_active_theme_folder() . "/static/$file")) {
    bb_load_template("static/" . $file);
    exit(0);
    }
    }
    wp_redirect(bb_get_option('uri'));
    ?>

    Put your static pages in a new static folder under your template folder, they should looks like

    <?php bb_get_header(); ?>
    The static content here.
    <?php bb_get_footer(); ?>

    Then you can access a static file. For example, access test.php(bb-templates/yourtemplate/static/test.php) at http://yoursite.com/bbpress/page/test

    Remember: Use this method at your own risk

    #61197
    livibetter
    Member

    majea,

    You used require_once in a wrong way. If you installed WordPress in /path/to/wordpress and bbPress in /path/to/bbpress, then you should use

    require_once '../wordpress/wp-blog-header.php'.

    You normally use require/include for local .php.

    PS. I don’t use WordPress and bbPress together.

    #2525
    majea
    Member

    I am trying to integrate bbPress with WordPress. I installed it on my local test environment first, in order to work out any kinks. bbPress is in the same database as WordPress. The installation went fine, it seemed, and I ended up with a basic version of bbPress — left-aligned black font on a plain white background. Is this what I am supposed to see?

    However, when I tried to point it to WordPress, using “require_once(‘http://localhost:8888/wordpress/wp-blog-header.php&#8217;);” in the config.php file, I only got a blank screen. Any idea what I’m doing wrong?

    I sort of fumble my way through all this web design stuff, so there is a good chance the answer is painfully easy, but I can’t seem to find it. Thanks.

    #60752
    grosbouff
    Participant

    I thinking to start developping a plugin.

    I’m not a real coder but i’ll try.

    Anyway, I think the problem is that bbpress uses names and not levels (like wordpress) for roles, so it will be hard to do, no ?

    If you have ideas, if you want to help me, please feed this threat !

    #2524
    intellivision
    Participant

    http://appleswitcher.com/wp/forum/

    They don’t increment (i.e. 10 repies, 1 view) any longer after I re-themed and moved my forum.

    Sorry to double post, but the post I added yesterday in the Extend forum doesn’t show here.

    #59134

    In reply to: Installing bbPress

    jim12345
    Member

    Hello Trent, thanks for your reply.

    Yeah, I’m not completely sure if the information that I put in that file is correct. Is there a specific place where I can find that MySQL information to plug in there? Thanks again.

    #59133

    In reply to: Installing bbPress

    Trent Adams
    Member

    For whatever reason, it doesn’t like the information that you put in config.php for your database. You better make sure that is 100% correct and running. Also search this forum for some localhost installs for ideas!

    Trent

    #2114
    jim12345
    Member

    Hello,

    I uploaded the bbpress folders and files to my server and put the MySQL information into the config file.

    So now the directions say to “Load bb-admin/install.php in your web browser and do what it tells you”. So I clicked on the “bb-admin” folder, then clicked on the “index.php” file, then clicked on the url link, and my browser opened up a page that said this…

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: Access denied for user ‘jim1234’@’localhost’ (using password: NO) in /home/jim1234/public_html/forum/bb-includes/db.php on line 73

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/jim1234/public_html/forum/bb-includes/db.php on line 73

    Cannot select DB.

    What am doing wrong?? Any help greatly appreciated.

    #61188

    In reply to: Plugin: Gravatar

    Trent Adams
    Member

    I like this plugin the way it is! It is great! Thank you! Don’t forget to add it to the repository as well:

    https://bbpress.org/plugins/add/

    Trent

    #57850
    Sholto
    Member

    I’ve just been caught out by the spaces problem – I’m finding that integrating WP and bbPress is a painful experience…

    #58173

    In reply to: bbSync

    fel64
    Member

    The previous version of this plugin. That’s version μ instead of the latest, ν.

    #61187

    In reply to: Plugin: Gravatar

    livibetter
    Member

    Oops…

    I changed my mind. bbPress doesn’t check the validity of new email address and confirm the user really own that new email address.

    #58170

    In reply to: bbSync

    vitovarducci
    Member

    Awesome. OK, so I removed the entry from the database and I was able to login like normal.

    Then I went back and created a new post again to test if it would create a new topic in bbpress. No new topic. And it wouldn’t let me login to the backend again.

    So I went back and removed the capabilites entry from the database.

    I can create topics no problem in bbpress. Just doesn’t create new topics when I write posts.

    #55813
    andrew79
    Member

    Great , Thanks trent

    #58168

    In reply to: bbSync

    vitovarducci
    Member

    I’m using the latest version of bbsync.

    Now I can’t login to the bbpress backend. It’s like it doesn’t recognize the roles anymore. I can login and view my profile and such, but can’t get into the backend.

    #2522
    intellivision
    Participant

    I’m going crazy trying to get this to work.

    I tried

    http://wordpress.org/extend/plugins/comment-quicktags/

    AND

    http://www.40annibuttati.it/comment-quicktags-for-bbpress/

    that.

    STILL no quicktags. I activate them, de-activate them, re-upload them. Everything I can think of I do.

    Help!

    #58167

    In reply to: bbSync

    fel64
    Member

    mdawaffe may have sorted the somewhat ridiculous globals thing ( https://bbpress.org/plugins/topic/56?replies=18#post-597 ). I see what you were saying now too jazbek, it seems obvious in retrospect. Updating plugin now (to ν).

    Vito, what version of the plugin are you using?

    #61181

    In reply to: Error while posting

    chrishajer
    Participant

    What version of bbPress are you using and what type of host system is it on? It looks like the single quote in Mail's throwing for a loop, but I haven’t seen that happen in any recent version of bbPress.

    #2521
    wrsantiago
    Member

    I get this error while I posted this using copy and paste

    Clean up Mac OS X Mail’s Auto-Complete List

    To clean up or empty the auto-complete list of previous recipients’ addresses in Mac OS X Mail:

    * Select Window | Previous Recipients from the menu.

    * Click on the Last Used header so the arrow points downward.

    * Make sure no entry is highlighted.

    * Hold down the Shift key.

    * Click on an address last used a year ago.

    o Of course, you can choose a different interval and select all addresses not used in the past month, for example.

    * Verify all entries not used in the last year are highlighted.

    * Click Remove From List.

    On a new topic, but if I type something or paste something else I dont get any errors, please help thank you

    bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘s Auto-Complete List

    To clean up or empty the auto-complete list of previ’ at line 4]

    INSERT INTO bb_posts (forum_id, topic_id, poster_id, post_text, post_time, poster_ip, post_status, post_position) VALUES (‘3′, ’50’, ‘1’, ‘

    Clean up Mac OS X Mail’s Auto-Complete List

    To clean up or empty the auto-complete list of previous recipients’ addresses in Mac OS X Mail:

    Select Window / Previous Recipients from the menu.

    Click on the Last Used header so the arrow points downward.

    Make sure no entry is highlighted.

    Hold down the Shift key.

    Click on an address last used a year ago.

    Of course, you can choose a different interval and select all addresses not used in the past month, for example.

    Verify all entries not used in the last year are highlighted.

    Click Remove From List.

    ‘,’2007-10-19 20:23:20’, ‘70.188.228.89’, ‘0’, 1)

    Warning: Cannot modify header information – headers already sent by (output started at /home/libreexp/public_html/apple/foro/bb-includes/db-mysqli.php:192) in /home/libreexp/public_html/apple/foro/bb-includes/pluggable.php on line 164

Viewing 25 results - 59,501 through 59,525 (of 64,472 total)
Skip to toolbar