Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,401 through 56,425 (of 64,066 total)
  • Author
    Search Results
  • #65755
    chrishajer
    Participant

    It’s great that you have shell access. You can backup all the files with something like rsync, and you can use a shell script to backup the database tables you want. Since there are no wildcards in mysqldump, you will need to explicitly name all the tables in your installation; just separate them with spaces.

    You can put something like this into a bash script and run it daily (or whenever) from cron:

    mysqldump --add-drop-table -h host -u user -p password dbname 
    ( bb_forums
    bb_meta
    bb_posts
    bb_tagged
    bb_tags
    bb_terms
    bb_term_relationships
    bb_term_taxonomy
    bb_topics
    bb_topicmeta
    bb_users
    bb_usermeta ) | bzip2 -c | bbpress.bak.sql.bz2

     

    You would have to consider putting the password into the script and hiding that from prying eyes. Alternatively, you could create a user with limited privileges and no password, and use that in the backup script.

    You should also verify the table prefix, and that those are all your bbPress tables. I think there are different tables for different bbPress versions.

    Good luck.

    #65770
    chrishajer
    Participant

    That line is supposed to allow you to use WordPress functions from inside a bbPress page. It looks like you just got the path to it wrong. Does the file wp-blog-header.php actually exist one directory level up from where the bb-config.php is right now?

    #65769
    724719
    Inactive

    note:-

    I just removed the “require_once(‘../wp-blog-header.php’);” line from bb-config.php.

    and all seems to be working fine, i can login as admin on both WP-admin and bbpress .

    So what is that line supposed to do, how is that supposed to intergrate the two together i didnt and still dont understand it.

    #3605
    724719
    Inactive

    Ok, first of all I should note that this is the second time iv installed this and i still got the “minor error: duplicate user_nicename” message or something like that.

    But this time it worked well and I logged in straight away as the admin. But when I went to login to the WP-Admin, I couldnt log back in the bbPress as admin and as any username.

    So what I then did was clear all the cookies, then it allowed me to log back in as admin in bbPress, so now im in. But… I click on the “Admin” link at the top to go to the settings and all that stuff. and its spits out this:-

    Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /home/picbico/public_html/forum/bb-config.php on line 2

    Fatal error: require_once() [function.require]: Failed opening required ‘../wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/picbico/public_html/forum/bb-config.php on line 2

    I also might need to mention that I tried to ‘intergrate’ the wordpress functions with it by applying this line to the bb-config.php file : require_once(‘../wp-blog-header.php’);

    thanks for any help let alone all the work you guys have put into this forum. i appreciate it

    #3604
    #65714
    threevisual
    Member

    daleanthony.com [at] gmail.com

    cheers.

    #65713
    chrishajer
    Participant

    Please post your contact details and then a moderator will close this topic.

    Tranny
    Participant

    Chris, thanks a lot. Now the forum page pulls and no longer gives an error message, but all my formatting and custom layout is gone. And the links to forums don’t work. It takes me to the bbpress default telling me that forum is not found.

    #65226
    Caesar
    Member

    Thank you so, so much, sepidol! You’ve made my day! I’ve spent hours trawling the bbPress and WPMU forums for this…

    For what it’s worth, my problem was the SECRET_SALT. I’d done everything else right, but each time I logged into either bb or wp I was logged out of the other ’cause of the cookie value being encrypted differently… I thought the salt may have been the problem, but I wasn’t quite sure what it did. This is the first thread I’ve found which even mentions it!

    Thanks…

    Caesar

    #65722
    chrishajer
    Participant

    fiat, to do what you’re talking about, you can load WordPress inside bbPress, to have access to WordPress functions inside bbPress. It’s not recommended, but here it is:

    https://bbpress.org/documentation/integration-with-wordpress/#func

    https://bbpress.org/forums/topic/wp-integration-header-integration#post-17084

    #65754
    ashes999
    Member

    Yeah, I have shell access…

    I had a shell script before to back up my whole schema; but I just want to back up the bbpress schema now, not the wordpress schema.

    #65753
    chrishajer
    Participant

    Do you have access to a shell at your host? If so, you can do it pretty easily. If not, I don’t know of an automatic backup plugin for bbPress.

    #3595
    ashes999
    Member

    WordPress has a great plugin called wp-backup that allows you to schedule a nightly backup of your database. Is there something similar for bbPress? If not, how should I back up my data regularly?

    #62613

    In reply to: TalkPress

    723891
    Inactive

    Why switch to bbpress? WordPress is highly configurable and there are a lot of plugins. And if you want you can change the source code on your own server…..

    Sam Bauers
    Participant

    I don’t think they are even using WordPress. Looks like it is all custom code.

    #65699
    Sam Bauers
    Participant

    We will probably start using some form of display name in bbPress in the next version.

    There is already a built-in way to map user roles between WordPress and bbPress within the admin area under WordPress Integration.

    jfz
    Member

    Hi. Can someone tell me if emptees.com is using bbpress for their talk section? I love the layout and theme of the forum their using. It reminds me of wordpress blog posts & bbpress? but it might be a customized version they made themselves. Is there anyone who would be willing to work on a free bbpress theme that looks like that? I’d pay for a theme that looked like that! Thanks.

    #65743
    chrishajer
    Participant

    I think you need to set up permalinks on your server if you want pretty or name based ones. False works fine, so it’s definitely a permalinks issue. Not sure why it was working before, but this is what needs to be done now:

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

    #65741
    f1f
    Member

    No I haven’t moved the forum. The last thing I changed – which must have been a week ago or longer – was adding the following code into the .htaccess file for WordPress (not BBPress):

    define('COOKIE_DOMAIN', '');
    define('COOKIEPATH', '/');

    Could that have had an effect? If so it seems odd that it took so long to manifest itself.

    Thanks for the speedy response by the way :-)

    chrishajer
    Participant

    You can make the data dynamic, but you need to use bbPress functions, not WordPress functions.

    If you are intent on using WordPress functions, read this and this.

    #65719
    chrishajer
    Participant

    I don’t know of a plugin yet that will take an RSS feed and display it in bbPress.

    How about creating a plugin out of something like RSS2HTML and using that in bbPress?

    http://www.rss2html.com/

    #52795
    chrishajer
    Participant

    To anyone reading in the future:

    Please use different table prefixes for bbPress and WordPress. bb_ for bbPress and wp_ for WordPress are the defaults, for good reason. You can change them to something else if you like, but make sure they are different for WordPress, bbPress, and anything else you might install in that database.

    Integration does not require the same table prefix, and using the same table prefix means bbPress will try to use WordPress tables (of the same name) that have already been created.

    #65717
    chrishajer
    Participant

    I think you want bbSync, at least to start:

    https://bbpress.org/plugins/topic/bbsync/

    #3594
    f1f
    Member

    My BBPress installation has been working fine but suddenly today I can’t access the content on any of my posts. All the post titles are listed, but clicking on them gives a 404 error:

    http://www.f1fanatic.co.uk/forum/

    I have no idea what’s caused this. It’s been over a week since I made any changes to BBPress or the WordPress installation it’s integrated with.

    I’ve checked my MySQL database and all the forum data appears to still be in there, it just isn’t displaying. Any ideas what’s broken?

    #3593
    annagb
    Member

    The bbPress forum I installed sometimes sends wrong passwords to new users.

    I mean, the user receive a password, but this password does not work. So I have to change the password as admin and to tell them the new one.

    May this depend on a plugin? Is there any solution to this problem? Thank you.

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