Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,001 through 57,025 (of 64,063 total)
  • Author
    Search Results
  • #64586
    Shagalaga
    Member

    Any theme changes to do?

    #64585
    javalizard
    Member

    wp_validate_auth_cookie has an error. When hashing for the key

    $key = wp_hash($username . $expiration);

    WordPress and BBPress do it differently thus nullifying the ability to integrate the cookies of the two.

    The problem is that this in bbpress pluggable.php:

    $key = wp_hash($username .’|’. $expiration);

    should be this:

    $key = wp_hash($username . $expiration);

    There are a few other places where this needs to be fixed too

    #64785
    _ck_
    Participant

    I am getting better at routines to find non-english bbPress sites and have now added a few hundred more sites!

    (bbPress is being used in at least two dozen countries!)

    #56464
    mrhoratio
    Member

    Hi bobby, I tried out your hack in bbPress 0.9, and it doesn’t seem to work. Here’s what I did:

    I have my bbPress directory installed in a directory called “forums” in the root web directory. So the URL to access the forums’ home page is:

    http://www.example.com/forums

    and accessing a forum titled “test forum” is at this URL:

    http://www.example.com/forums/forum/test-forum

    a topic titled “test topic” is at this URL:

    http://www.example.com/forums/topic/test-forum

    I implemented your hack, and changed “forum” to “board” in the template-functions.php. I copied the rewrite rules from rewrite-rules.php and placed them into .htaccess file in the root web directory. I also added the two lines of code you suggested in that file:

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

    I also tried adding this to the rewrite-rules.php:

    RewriteRule ^board/([^/]+)/page/([0-9]+)/?$ <?php bb_option( 'path' ); ?>topic.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^board/([^/]+)/?$ <?php bb_option( 'path' ); ?>topic.php?id=$1 [L,QSA]

    When I go to this URL:

    http://www.example.com/board/test-forum

    I get a 404 error.

    However, when I go to this url:

    http://www.example.com/forums/forum/test-forum/

    It redirects and changes the URL in the address bar in the browser window changes:

    http://www.example.com/forums/board/test-forum/

    That also brings up a 404 page.

    Also, when I go this URL:

    http://www.example.com/topic/test-topic

    The URL works, but it redirects and changes the URL in the address bar in the browser window changes to:

    http://www.example.com/forums/topic/test-forum

    I am a little perplexed as to what is going on.

    #64840
    bobbyh
    Member

    Thanks Chris! All my PHP scripts were OK (no syntax errors), but eliminating one more possible cause is always helpful. :-)

    It turns out that this Email Notifications plugin (https://bbpress.org/forums/topic/plugin-post-notification?replies=44) was causing the problem. After disabling that plugin, there are no “delays in posting” and there is never a 500 error. There must be a scaling problem with the plugin that started after the tables hit a certain size…

    Thanks again for your help, Chris! :-)

    #56460
    mrhoratio
    Member

    Hey, I’m trying to figure this out also. Anyone figured out a way to remove the first “forum” in http://www.example.com/forum/forum/forum-name. So that the URL is shorter? I tried doing it with mod_rewrite, but having some issues with bbPress automatically redirecting.

    #3343
    gerikg
    Member

    On WordPress, the plugin area it will show:

    There is a new version of “PLUGIN” available. Download version X.X here or upgrade automatically.

    when there is an upgrade.

    Can someone make that for BBPress?

    #62933
    citizenkeith
    Participant

    I’m getting mySQL errors… see here for more info:

    https://bbpress.org/plugins/topic/live-comment-preview/#post-813

    clementine
    Member

    Hello everybody,

    I need two different forums, in two different domains, they are hosted at the same server and they are sharing the database also.

    If I make two different instalations using two table prefix (like bb1_ and bb2_) do you know if it’s possible to share the users between the two forums? I don’t want to merge the topics, or the forums, just the users table…

    Thanks a lot.

    #64796
    chrishajer
    Participant

    I can help if you contact me off list. Find contact details on the site linked to my profile.

    #64795
    antoniop
    Member

    I already tried that. Baffled…

    #64032

    This code works fantastic! Thanks

    #64794
    chrishajer
    Participant

    Sounds like something is wrong with the database tables. It’s trying to reuse tables that are there but there is some sort of problem. Can you drop those tables (if there is no content there) and then start the installation again?

    #63759

    In reply to: Content censor

    citizenkeith
    Participant

    This is being covered here:

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

    #58252

    In reply to: bbSync

    Fawked
    Member

    By the way this only happens to comment of posts that were sync’ed with bbPress. Comments that were not sync’ed (older posts) are working as normal.

    #58251

    In reply to: bbSync

    Fawked
    Member

    Now I have a new problem. When I make a comment on a post in WordPress it will change all my other previous comments to the same user and comment as demonstrated here:

    http://www.fawked.net/2007/12/29/wannabe-rappers/

    Everything in bbpress is working fine for now, it shows the correct comments.

    #3339
    bobbyh
    Member

    A few days ago, out of the blue, users of my bbpress forum reported that submitting a new topic/post resulted in an error. Previously, my bbpress forum was working perfectly. However, over the last few days, I have verified that if you submit a new post or leave a comment, the browser takes you to bb-post.php, where the page hangs. You can verify this on my forum using user “testuser” and password “test123”.

    There are a few weird things about this:

    • I hadn’t touched the server for some time prior to this sudden problem, so it’s weird that the problem started, since I hadn’t changed anything
    • I’ve been running two bbpress forums authenticated against the same WP user table. The problem is only with the first bbpress installation, while the second bbpress installation continues to work with no problems.
    • When you post, the browser returns a 500 internal server error, and doesn’t display a “die” message, e.g. “You need to actually submit some content!”
    • Although the browser returns a 500 internal server error, the posted content does go through.

    I’ve hand-inspected http://boards.weddingbee.com/bb-post.php, and it has exactly the same PHP code as http://classifieds.weddingbee.com/bb-post.php. I’ve tried everything I can think of… I disabled plugins and Akismet, and the problem didn’t go away. (I’ve turned them back on.)

    I’m using bbPress 0.83, with bb_db_version 788. I haven’t upgraded to bbPress 0.9.0.2 yet because I’ve integrated my WordPress 2.33 install with two bbPress installs and a Mediawiki install, and it will be a ton of work to reintegrate. However, that is the next step…

    Does anybody have any ideas? :-)

    #64793
    antoniop
    Member

    “Step 3 – Site settings

    « completed

    Installation failed!

    ! The database failed to install. You may need to replace bbPress with a fresh copy and start again. “

    Heres what I got from them.

    “Please ask the creator of this script for further assistance as Doteasy does not provide web design or development services.

    Here is the site error log for today.

    [Mon May 05 08:19:23 2008] [error] [client 65.61.193.36] php-script: line 4: 22269 Segmentation fault /usr/bin/php-cgi, referer: http://www.atriskstoriesofhope.com/bbpress/bb-admin/install.php?step=3

    [Mon May 05 08:19:23 2008] [error] [client 65.61.193.36] Premature end of script headers: php-script, referer: http://www.atriskstoriesofhope.com/bbpress/bb-admin/install.php?step=3&#8243;

    #3337

    Topic: Insurgency.cz forum

    in forum Showcase
    ajvngou_
    Member

    I just use another theme and moddified, couse my code skills are not good. I moddified www theme too and i triyed create 1 nice theme for site and forum. I hope its ok now. I must change few things at code (size, avatars etc) but i hope its nice. its CZECH lang btw…

    http://www.insurgency.cz/bbpress

    #3336
    Bloggsbe
    Member

    Hi!

    I made a small plugin that lets users show of their latest Tweet on their profile page. The user turns the option on or off as they please.

    It’s nothing fancy, but it works.

    You can download it here

    It has been tested with bbPress 0.9.0.2 and 1.0-dev, but should work on earlier versions.

    Regards,

    Rune

    #60595

    In reply to: Danish translation

    smu
    Member

    Hi Thomas,

    Sorry for the inconvenience. Web hosting problems.

    Here’s another download URL for the Danish language file for bbPress 0.8.2.1: http://munksgaard.net/?dl_id=1

    Sure, I will have a go on translating bbPress 0.9.0.2 whenever I get the time…

    #3335
    mlinksva
    Member

    bbPress has many translations, but AFAICT only one may be active at a time, set through $BBLANG

    Am I wrong about this?

    Assuming I’m not wrong…

    It would be nice to enable users to select a language (or have it set for them through content negotiation).

    Perhaps this could be done via a plugin a la http://bbpress.org/plugins/topic/user-timezones/

    #64770
    _ck_
    Participant

    I put a ticket into trac about this a few months ago.

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

    Changing the way it functions is not too difficult but it does have to be done via the core so unfortunately I can’t address it via a plugin. At least I dont think I can, not easily.

    Oh and forget a captcha ever being built into bbPress/WordPress. It will have to be done via plugin with a hook. Because the moment thousands of people have the same standardized captcha, that’s the moment it will be analysed to be broken by bots. As a plugin the method can be changed on a whim and vary from site to site easily. Besides, I’d rather have people do simple math than an awkward captcha.

    #64769
    irr1449
    Member

    It would actually be best if upon entering the registration info and some sort of captcha, the user was automatically logged in and returned to the point where they hit the “Register” button.

    People are lazy. They don’t want to sign up, wait for the email, copy and paste the password (because good luck remembering “D7e98DF”), sign in, and then return to the spot that made them register in the first place.

    I know this would probably cause some technical issues and would not be the most secure, but I think it would greatly increase user attach rate.

Viewing 25 results - 57,001 through 57,025 (of 64,063 total)
Skip to toolbar