Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 55,176 through 55,200 (of 64,069 total)
  • Author
    Search Results
  • #4054
    vadi
    Member

    How can a user change their avatar on a new bbPress installation?

    I failed to find options for this :-/

    #66743

    In reply to: Sitemap generator

    martin2008
    Member

    Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w009804c/gruenderstipendium/bb-plugins/bbpress-sitemap-generator/bbpress_sitemap.php:1) in /www/htdocs/w009804c/gruenderstipendium/bb-includes/pluggable.php on line 228

    :(

    after open new topic

    Sam Bauers
    Participant

    WordPress and bbPress use the PHPass hashing mechanism to store passwords in the database.

    You can also “odwngrade” the password hashing to MD5 using this plugin…

    https://bbpress.org/plugins/topic/md5-insecurity-for-bbpress/

    #67884
    Sam Bauers
    Participant

    Heh, it almost takes video proof for people to believe that it works sometimes.

    There doesn’t appear to be anything wrong with that bb-config, but you should just let the installer create it for you.

    BackPress is included with bbPress when you grab it via SVN or in the 1.0-Alpha packages. SO there is no need to get it separately.

    #67876
    Sam Bauers
    Participant

    They are doing it somehow over at edublogs.org but I think that is a highly customised bit of code where they are sharing one bbPress install amongst multiple blogs in WPMU.

    bbPress doesn’t offer this out of the box, no.

    #67826
    Sam Bauers
    Participant

    Not really, bbPress and WordPress themes aren’t compatible without some work. I am trying to steer people away from loading WordPress “inside” bbPress.

    Much better approach is to port your WordPress theme across to bbPress.

    #67787
    Sam Bauers
    Participant

    No, just install as normal in step 1 add the KEYS as they exist in your WPMU install and by the time you get to step 2 (integration) you should have a bb-config.php file. Add the SALTS in at the start of step 2 before you submit your integration details.

    I made a change today to trunk… https://trac.bbpress.org/changeset/1747

    This should allow you to successfully integrate and select an admin from the blog with ID of 1 (usually the primary blog) in your WPMU install as a keymaster.

    Hopefully this will sort you out.

    #66101
    chrishajer
    Participant

    That won’t work for cookie and user integration.

    #66100
    inflatables
    Member

    Good nice.

    wordpress 2.6 + bbP 0.9.0.2

    Is that OK?

    #67899
    chrishajer
    Participant

    If you have a tool like phpMyAdmin, I think you should be able to log in there and change the site URL.

    You used to be able to define the site URL in the bb-config.php as well. This is what used to be in that file:

    // The full URL of your bbPress install
    $bb->uri = 'http://www.truediy.com/';

     

    Maybe if you put that second line in your bb-config.php maybe that will override the database settings? (Actually, I’m fairly certain that will work. Then you can update the settings in the admin.)

    #67883
    chrishajer
    Participant

    It’s hard to tell if there’s an error in an edited bb-config.php. I have seen where the secret keys are not properly escaped, and that creates a PHP problem. As you’ve posted it (edited) it works fine.

    I just did an svn checkout of r1736 and that included backpress r153, which is what’s available at the URL you posted.

    Mine installed cleanly. I did not integrate with WordPress. You can see a one minute video of the installation here:

    http://www.chrishajer.com/bbpress/1736/

    I suspect a problem with the secret keys in the bb-config.php. Or some other syntax problem with the bb-config.php. If you have a command line with php you can run

    php -l bb-config.php

    to check that file for syntax errors. That’s “php dash el”, l for Lint.

    #67882
    cabal79
    Member

    Well I used yesterdays Trunk Release (1736) and the Backpress folder from here: http://svn.automattic.com/backpress/trunk/includes/

    Is there anything else I’d have to add to the Trunk that I possibly missed?

    I don’t really think that the bb-config syntax is wrong because it’s working with the Alpha just fine.

    Anyways, the code for what it’s worse:

    <?php
    // ** MySQL settings ** //
    define('BBDB_NAME', 'xxxxx'); // The name of the database
    define('BBDB_USER', 'xxxxx'); // Your MySQL username
    define('BBDB_PASSWORD', 'xxxxx'); // ...and password
    define('BBDB_HOST', 'localhost'); // 99% chance you won't need to change these last few

    define('BBDB_CHARSET', 'utf8'); // If you are *upgrading*, and your old bb-config.php does
    define('BBDB_COLLATE', ''); // not have these two contstants in them, DO NOT define them
    // If you are installing for the first time, leave them here

    // Change each KEY to a different unique phrase. You won't have to remember the phrases later,
    // so make them long and complicated. You can visit https://www.grc.com/passwords.htm
    // to get phrases generated for you, or just make something up. Each key should have a different phrase.
    // If you are integrating logins with WordPress, you will need to match each key to
    // the value of their equivalent keys in the WordPress file wp-config.php
    define('BB_AUTH_KEY', 'xxxxx'); // Change this to a unique phrase.
    define('BB_SECURE_AUTH_KEY', 'xxxxx'); // Change this to a unique phrase.
    define('BB_LOGGED_IN_KEY', 'xxxxx'); // Change this to a unique phrase.

    // If you are running multiple bbPress installations in a single database,
    // you will probably want to change this.
    $bb_table_prefix = 'bb_'; // Only letters, numbers and underscores please!

    // Change this to localize bbPress. A corresponding MO file for the
    // chosen language must be installed to bb-includes/languages.
    // For example, install de.mo to bb-includes/languages and set BB_LANG to 'de'
    // to enable German language support.
    define('BB_LANG', '');

    ?>

    Thanks for helping out!

    Rob

    #4052
    truediy
    Member

    bbpress version 0.9.0.2

    Operating System: Linux Hosting

    Configuration: 2.0

    PHP Version: 5.x

    I was trying to change the url of my bbpress forum because it was loading from the preview site that GoDaddy gave me before I made it live. In doing so I effectively locked myself out of the admin area and redirected all of the content. Is there a php file that I can re-upload to counter the changes I made or do I need to talk to my server host? The error message I get when I click on a topic or category is that safari can’t find the content on the server, I then set the url to the url I last changed it to and get the message “No input file specified.”

    Take a look at http://www.truediy.com if you want to see what I am talking about.

    Thanks!

    chrishajer
    Participant

    Do you have access to server logs? If you’re getting a blank screen, it’s probably a 500 Internal Server Error. Maybe there’s a problem with one of your WordPress templates.

    sowmithrii
    Member

    no.. its not a wp blog. it’s my own site completed coded by me…

    is there any way??

    or if can i know about the type of encryption wordpress is using for encrypting the password. I am having the wordpress software , but unable to debug all the pages……

    Olaf Lederer
    Participant

    I guess your website is not the WP blog?

    keress
    Member

    No, I can access the admin of the blog, and I can access the forum. But the blog pages/posts all comes up as a blank screen.

    sowmithrii
    Member

    Hi, Am new to this site and hope am posting this query in right place.

    I recently downloaded bbpress forum software . The integration was successfull with wordpress . But I want the users in my website to access the forum without need of registering in it again.

    I dint find any means of achieving this. Can anyone help…

    I tried changing the forum code., but i think it is not a good idea.

    CHeeRS,

    sowmithrii

    #4045
    leoleoleo
    Member

    My bbPress is non-English forum name.When user register from my forum. The password mail title not display correct my forum name.How to fix it? Thanks!

    chrishajer
    Participant

    So, you can access the forum and the blog? Is everything back to normal?

    #67875
    chrishajer
    Participant

    It’s not possible now, I don’t think. I don’t know if it will be possible in the future.

    #67874
    M.K. Safi
    Member

    I did a search around the forum and I couldn’t see an easy way to embed bbPress within a WordPress page.

    Is this gonna be possible in future releases?

    Thanks,

    #4044
    M.K. Safi
    Member

    I think I’m asking for theme integration.

    I have seen other WordPress forums where you create a page, insert a one line HTML(?) code, and the forum will appear in that page. I was wondering if something similar can be done with bbPress, so that I can make it appear within my theme, here. Thanks,

    keress
    Member

    Another note, the Internal Server Error yesterday was fixed by correcting the .htaccess file.

    At present it reads:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    keress
    Member

    Oh wow, I am able to get into my wordpress admin.

Viewing 25 results - 55,176 through 55,200 (of 64,069 total)
Skip to toolbar