Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 10,001 through 10,025 (of 11,571 total)
  • Author
    Search Results
  • #65574
    brad_langdon
    Member

    I also have the problem of members not being able to delete their posts.

    I tried the above code, the delete button appears now but when clicked it says you do not have permission to delete.

    I am not even sure if I put it in the right place though.

    Does anyone have a tested method of making this work???

    #64520
    shoggy
    Member

    I tried greenhome’s solution and it almost worked. Thanks! :-)

    However I got some minor errors, especially with links like http://domain.tld/forums/topic/test?replies=3#post-17 or http://domain.tld/forums/profile/username/favorites?fav=0&topic_id=1&_wpnonce=10a4ad44b8

    Here is a workaround :

    In /etc/lighttpd/bbpress-rewrite.conf, I have :

    url.rewrite-once += (

    # /forum/FORUM-NAME

    "^" + bbpressdir + "forum/([^/]+)/page/([0-9]+)/?$" => bbpressdir + "forum.php?id=$1&page=$2",

    "^" + bbpressdir + "forum/([^/]+)/?$" => bbpressdir + "forum.php?id=$1",

    # /topic/TOPIC-NAME

    "^" + bbpressdir + "topic/([^/?]+)(?(.*))?$" => bbpressdir + "topic.php?id=$1&$3",

    "^" + bbpressdir + "topic/([^/]+)/page/([0-9]+)(?(.*))?/?$" => bbpressdir + "topic.php?id=$1&page=$2&$4",

    # /tags/TAG-NAME

    "^" + bbpressdir + "tags/([^/]+)/page/([0-9]+)/?$" => bbpressdir + "tags.php?tag=$1&page=$2",

    "^" + bbpressdir + "tags/([^/]+)/?$" => bbpressdir + "tags.php?tag=$1",

    "^" + bbpressdir + "tags/?$" => bbpressdir + "tags.php",

    # /profile/PROFILE-NAME

    "^" + bbpressdir + "profile/([^/]+)/([^/]+)/page/([0-9]+)/?$" => bbpressdir + "profile.php?id=$1&tab=$2&page=$3",

    "^" + bbpressdir + "profile/([^/]+)/page/([0-9]+)/?$" => bbpressdir + "profile.php?id=$1&page=$2",

    "^" + bbpressdir + "profile/([^/]+)/([^/?]+)(?(.*))?/?$" => bbpressdir + "profile.php?id=$1&tab=$2&$4",

    #"^" + bbpressdir + "profile/([^/]+)/([^/]+)/?$" => bbpressdir + "profile.php?id=$1&tab=$2",

    "^" + bbpressdir + "profile/([^/?]+)(?(.*))?$" => bbpressdir + "profile.php?id=$1&$3",

    # /view/VIEW-NAME

    "^" + bbpressdir + "view/([^/]+)/page/([0-9]+)/?$" => bbpressdir + "view.php?view=$1&page=$2",

    "^" + bbpressdir + "view/([^/]+)/?$" => bbpressdir + "view.php?view=$1",

    "^" + bbpressdir + "rss/?$" => bbpressdir + "rss.php",

    # /rss/FEED-NAME

    "^" + bbpressdir + "rss/forum/([^/]+)/?$" => bbpressdir + "rss.php?forum=$1",

    "^" + bbpressdir + "rss/topic/([^/]+)/?$" => bbpressdir + "rss.php?topic=$1",

    "^" + bbpressdir + "rss/tags/([^/]+)/?$" => bbpressdir + "rss.php?tag=$1",

    "^" + bbpressdir + "rss/profile/([^/]+)/?$" => bbpressdir + "rss.php?profile=$1"

    )

    Finally, I just add this configuration for each vhost using bbpress :

    $HTTP["host"] =~ "domain.tld" {

    var.bbpressdir = "/forums/"

    include "bbpress-rewrite.conf"

    }

    Hope this helps!

    #67159
    ramym
    Member

    Thanks you, that worked. But I’ve got one question about it: Why does it say front-page two times? I edited the upper one, and that worked, so where’s the second for?

    #67158
    _ck_
    Participant

    Use the plugin in this post and it will work:

    https://bbpress.org/plugins/topic/front-page-topics/page/2/#post-1707

    #3876
    ramym
    Member

    Hello,

    I like the Latest Discussions on the frontpage, to have a quick look of the active topics, but I’d like to limit it to max. 5 topics.

    Is there a way to do this? I tried several plugins found on the internet/this website, but none of them works.

    Is there a way by changing the code? If yes, in which file should I look?

    Btw, what is the default amount of ‘Latest Discussions’ on the frontpage?

    Thanks.

    #67053
    _ck_
    Participant

    I have a few other tricks in mind for “Human Test” if they ever figure out how to easy break it. I’m not going to modify it though until they do break it just so they can’t adapt quickly.

    #67149
    Erica S
    Member

    Thanks for the idea, I didn’t think of it that way. I just assumed that if I had accounts in WP then I didn’t need to create any in BBpress. Well, I tried that just now and something weird in the database. After registering a test member in BBpress I looked in the database and all I saw was the “non-existent” keymaster, the newly registered member wasn’t even in there. I looked in the WP user tables and the member was there but not in BBpress even though that’s where I registered them. This is a clean install, so there’s no plugins and editing the config file didn’t work either.

    #67143

    In reply to: Strange error on post

    chrishajer
    Participant

    It’s possible something in the content you were posting was not escaped properly and it caused a syntax error when bbPress tried to insert it into the database. I don’t imagine you have the text of what you were trying to post, do you? You could try posting it here and see if this errors out.

    It’s possible with that old version that something was fixed in the latest release and it won’t occur here.

    #66889

    In reply to: Blank Screen

    chrishajer
    Participant

    The password normally contains special characters and that’s fine. That’s how I can usually tell if the bbPress is an old version or new version, based on the password being sent out when you register.

    There is no problem with having special characters in the secret keys: it’s just that if they’re not properly escaped, the server will choke on the config file because the bb-config.php does not have proper syntax.

    So, make sure the keys are the same for WordPress and bbPress, make sure the bb-config.php is syntactically correct (php -l bb-config.php from a Linux command line) and then figure out why you can’t log in.

    You can also make the secret keys really short and easy to compare while testing to see if that’s the problem.

    It’s also worthwhile to check any php file you edited for the proper syntax. Maybe once you log in, you are being served another page that has a syntax error (a template file?) and that is causing the blank screen.

    Also, access to error logs will help with this, if you have them.

    #66065
    chrishajer
    Participant

    If beta is the new stable (thanks Google) then alpha is the new beta?

    In a test installation (just copy all your WordPress files and database) you can’t really hurt anything. Just use it and see if it works enough for you.

    #66063
    chrishajer
    Participant

    My advice would be to install it in a test instance and use it. See how unstable it is for yourself. Only you can make the determination if it’s ready enough for you or not.

    #66062
    karlo
    Member

    I have a fresh installation of the latest release of WordPress and integrating it with an installation of bbPress seems to be easy enough for a non-hacker like myself.

    But, how unstable is the 1.0 alpha of bbPress really? The site I’m working on is to be a soon-to-be-released homepage for a choir that will use it mainly for news, recruiting and general talk. Would you rather advice me to go for the wp 2.5.1 + bbPress 0.9 version?

    #3872
    Erica S
    Member

    I just installed the latest stable release of bbpress and integrated it with wordpress 2.5.1. After setting up the integration, I immediately was logged out and couldn’t log back in with my keymaster. I searched the forums and tried everything that was suggested such as the plugin, adding a line to bb-config.php, and trying to edit phpmyadmin usermeta. I don’t know why the plugin didn’t work since my keymaster is at ID#1. And editing through phpmyadmin was useless since my usermeta was already set to keymaster. I’ve uninstalled and reinstalled and keep getting the same results.

    #3870
    outchy
    Member

    I have a band messageboard that’s worked flawlessly for a year now… but when I tried posting myself just now, it didn’t appear on the board. When I checked the dashboard, this is what it said for the latest post:

    Post on
    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 'AND meta_key='views'' at line 1]
    SELECT meta_value FROM bb_topicmeta WHERE topic_id = AND meta_key='views'
    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 ' 'views', )' at line 1]
    INSERT INTO bb_topicmeta ( meta_id, topic_id, meta_key, meta_value) VALUES ( NULL , , 'views', )
    Gavin DeGraw by neddi.

    Any idea what’s going on? I’ve never seen this before… and I think I’m the only one with access to the backend.

    #3863
    balgo
    Member

    how can i include bbpress in another system? the scope issues are confusing me.

    Fatal error: Call to a member function get_results() on a non-object in bb-includes/functions.php on line 1761

    TEST.PHP:

    <?php

    bb_load();

    function bb_load()

    {

    global $bb, $bbdb, $bb_current_user, $page, $bb_cache, $posts, $bb_post, $post_id, $topics, $topic, $topic_id, $forums, $forum, $forum_id, $tags, $tag, $tag_name, $user, $user_id, $view, $bb_roles, $bb_table_prefix, $bb_locale, $bb_timestart, $timeend; #….???

    require(‘./bb-load.php’);

    }

    ?>

    #3862
    geekymom
    Member

    I’ve tried this a number of times. I can get bbpress 1.0 alpha installed on a test server without wordpress integration. When I move to another server, I’ve run into a number of problems. They aren’t the same problems every time, which is driving me crazy.

    The most common problem I have is at some point during the installation process, I get a “The page isn’t redirecting properly” error. I get this most often at the very last stage of installation, but I’ve also gotten it after the first step. The last time I got this error at the last stage, I received a chmod and a could not modify headers error.

    The current page is at http://forums.brynmawr.edu

    I’m guessing we could have an error with our web server. I’m not a sys admin, so I’m not entirely sure where to check. Any ideas that I can pass on to our sys admin would be most appreciated.

    #3844
    saturnstroll
    Member

    Does bbpress allow for… or is there a plugin to allow for…

    holding a topic entry for Admin to approve before displaying on the frontend?

    I’m wanting to create a ‘picture contest’ entry page.

    Memebers login, open then page, and upload an image to be voted/rated.

    I’d like for Admin to approve each before making each entry visible on the frontend.

    #67052
    chrishajer
    Participant

    Ditto on the bozo feature. Never did understand that or get any benefit from it. At least it’s a plugin now where you can disable it. And the Human Test plugin works remarkably well in the arms race against preventing spammers from registering.

    #67051
    _ck_
    Participant

    I turn off Akismet and just use Human Test to prevent bots from registering: https://bbpress.org/plugins/topic/human-test/

    You just never know when a user will improperly get “bozo-ed” and you might miss their messages entirely. In fact i turn off the bozo feature too, it’s never quite worked right.

    _ck_
    Participant
    csseur3
    Member

    Hello,

    how to control the number of topic in “latest discussions” in front-page.php?

    bye

    #66060
    Idiom
    Member

    I can not figure out where i went wrong.. I’m using the latest 1.0 alpha release at 2.6. Everything apperas to work as expected (users exist in both systems, etc). However, the auto login is not working. I believe i followed the instructions to the “T”. Heres the stored cookie for both systems.

    WordPress cookie after login:

    /r30ab08c19a56be384114b23c09751029b7cf0de2e632d894d28d72e65f7f9f4=paul%7C1219369085%7Cc34a82349db07b4910c7910f399a9524

    wordpress_=brian%7C1219369051%7Cf203245956a5b6a1e75d245128f85ced

    wordpress_test_cookie=WP+Cookie+check

    wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9

    wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=paul%7C1219369085%7C6abf020fe1dc18102166be4e3a709ab1

    BBpress immediatly after logging into wordpress:

    /rwordpress_test_cookie=WP+Cookie+check

    wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9

    wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=paul%7C1219369085%7C6abf020fe1dc18102166be4e3a709ab1

    BBpress (already logged into wordpress, now manually logging into BBPress:

    /rwordpress_test_cookie=WP+Cookie+check

    wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9

    wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=brian%7C1219369533%7C9bc6a13aa1062a28d82bf0c30680253d

    any ideas?

    Cheers!

    Brian

    #67068
    danvollans
    Member

    **edit**

    I am using the latest WordPressMU with the Alpha release of bbPress.

    **end-edit**

    I am actually receiving this same error. I tried installing initially and completed the install until the final step where I needed to create a forum. I tried to make a Hello World forum and I got an error saying that the installation failed. I couldn’t go back a step or anything .

    I just gave up on that install since it was fairly quick anyways, and removed the bbpress directory. I then re-downloaded the install file, unzipped it into my root directory and re-attempted the install. Now, whenever I try and re-install by going to the url that contains the bbpress install http://danvollans.com/bbpress I get a redirection error after the first step where I input my database information. I have since not been able to get past this step. Any help on this would be greatly appreciated, especially since now I believe I’m not the first to receive this type of error.

    Thank you very much!

    #3833
    RossB
    Member

    When my forum is viewed in Firefox, the long email addresses of users who post are encroaching on their post content. Not a big issue, but a bit untidy and annoying. See: http://ashb.proofreadercentral.com/bbpress/topic.php?id=8

    (user name: tester / password: testing123)

    Which CSS in which file would I modify to make the page width of the forum a bit wider and increase the distance between poster email details and their adjacent post content, please?

    #66860
    holloway
    Member

    Ok all that’s not working now is posting. The box shows and you can enter everything, but clicking submit just sends you back to the index with no changes. Any help?

    I just tested removing the line “require(‘/var/www/html/wp-blog-header.php’);” in config, and it works again, so that fix you gave works, this is another issue caused by integration.

Viewing 25 results - 10,001 through 10,025 (of 11,571 total)
Skip to toolbar