Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 10,176 through 10,200 (of 11,589 total)
  • Author
    Search Results
  • #65044
    Arturo
    Participant

    i’ve downloaded the pot file for branches 0.9 and translated this file.

    the trunk are update but this localization is for the latest bbpresss release.

    i’ve tested with a 0.9.2 installation.

    #3312
    migpilot
    Member

    I am well stumped, I really am :(

    I have read as much as I can find on issues with integration but still no love.

    The setup:

    Server IIS.

    Latest WP.

    Latest BB.

    ALL secret codes match.

    Config files have the suggested added lines of code.

    Priv mappings are all set correctly.

    So far though, I can get only one account to auto login into wp from bb, and that’s only if I log in through BB only, ie. if I login through WP, it does not carry over to BB but does from BB to WP. This user incidentally has an account setup both in BB and WP.

    Any other BB account can not log into WP, regardless of being logged into BB first.

    Any ideas out there? I’m loving both new versions, but I have close to 2000 users that I would like to allow contribution privs to WP with their existing BB accounts – it seems WP does not see any of the BB users.

    Cheers!

    #64589
    migpilot
    Member

    Hi All,

    I upgraded our forums to .0.9.0.2 after testing a new theme etc. extensively on a fresh install elsewhere. After all was worked out, I went in to update the existing forum and while it sort of works (for some reason the well tested .9.0.2 theme is not working), the server is returning “PHP has encountered a Stack overflow” whenever you click any topic on the index page. Could it be a server mapping issue?

    I also upgraded WordPress on the same DB and no issues at all.

    Any ideas?

    PS: The upgrade reported no problems)

    #50340

    In reply to: Using RSS Feeds

    ekitel
    Member

    yes there are definitely posts in the forums, and when I subscribe to the feeds with Firefox I do get a list of permalinks to the posts.

    also I am using the private forums plugin, I don’t see anything about it effecting RSS in the docs though it does mention that in the latest version RSS is ‘fixed’

    this is the main forum feed: http://gradactingalumni.org/blogs/forums/rss.php

    #65001
    bobbyh
    Member

    Yeah, assuming the themes have consistent HTML, in the header, put something like this:

    <link rel="stylesheet" href="<?php if ($forum_id == 1) bb_stylesheet_uri(); elseif ($forum_id == 2) echo '/my-templates/kakumei-blue/style.css'; ?>" type="text/css" />

    I didn’t test this, but I think that code should work.

    #3370
    Oscar
    Member

    I’m looking for a plugin for bbPress that shows the latest posts on the forum front page. With the default theme this would be shown as snippets (text of the actual post) below the Tag Cloud/Hot Tags ‘widget’.

    I can’t seem to find a plugin, except the one that does just this on your WP installation if you’ve integrated with WP. Does this exist for bb as well?

    #64872

    In reply to: Public forums

    Sam Bauers
    Participant

    so10 did some work on anonymous posting for core a while back. But it was never 100% completed or perhaps never 100% tested. I’m not sure.

    #64956
    mdata
    Member

    Well, now. Isn’t that special!!. It works perfectly.

    Thank you!

    BTW, I do have the latest version of WordPress installed (2.5.1) so I do not think this is included yet, but if those encountering (and noticing) the issue find your fix, it could not be easier.

    Thank you, again.

    #64955
    mrhoratio
    Member

    Add this line to your wp-config.php file.

    define(‘SECRET_KEY’, ‘Your bbPress Secret Key’);

    Replace Your bbPress Secret Key with your bbPress secret key. I believe the developers already know about this. By the way, make sure you have the latest WordPress installation. I believe secret key is a new functionality in WordPress 2.5.

    #63539
    Olaf Lederer
    Participant

    Hi,

    just did an upgrade to my bbpress forum and tested my plugins:

    https://bbpress.org/plugins/topic/moderator-new-post-notification/

    and

    https://bbpress.org/plugins/topic/auto-add-favorites/

    both are fine with version 0.9…

    #64810

    In reply to: Profile hook/filter

    Bloggsbe
    Member

    @sambauers

    Yes, I know, but the one I used in bb-twitter is not so “bad”. I just hooked in to the show avatar function, and made sure that it only shows on the profile page, and no other pages. And that is just to show the latest tweet from that user.

    The admin/profile part is using the right hooks so the user can control the twittername and chose to show or not to show the tweet!

    I really hope there will be some hooks/filters for the profile page one day :-)

    Rune

    #64919
    mrhoratio
    Member

    IPSource,

    The short answer is you have to convert your WordPress theme to bbPress by hand.

    I’m currently doing the same thing you’re trying to do on my WordPress blog with bbPress also. It pretty much means taking your WordPress theme and going through each file one by one and converting them to bbPress. So you have to strip out the WordPress tags and functions in the theme files and replace them with bbPress versions. There’s no list of equivalent tags, so translating them is just gonna take a lot of trial and error and testing.

    #64665
    Sam Bauers
    Participant

    @ mykes

    I double checked, the latest stable version of WordPress MU uses the old password hashing and cookie types.

    You can dumb down bbPress to work with that version of WordPress MU by using both of these bbPress plugins.

    https://bbpress.org/plugins/topic/mouldy-old-cookies-for-bbpress/

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

    #64891
    _ck_
    Participant

    It would be easier to disable the auto-link entirely for a post when is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.

    Disabling auto-link is something like: (untested)

    remove_filter('post_text', 'make_clickable');
    add_filter('post_text', 'make_clickable_if_not_code');
    function make_clickable_if_not_code($text) {
    if (strpos($text,'<code>')===false) {return make_clickable($text);}
    return $text;
    }

    [code] is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.

    Disabling auto-link is something like: (untested)

    remove_filter('post_text', 'make_clickable');
    add_filter('post_text', 'make_clickable_if_not_code');
    function make_clickable_if_not_code($text) {
    if (strpos($text,'<code>')===false) {return make_clickable($text);}
    return $text;
    }

    #63537
    mdata
    Member

    In addition to the above, the following seem to work properly

    Human Test for bbPress

    Post Count Plus – Dynamic.Titles & More!

    #64874
    bobbyh
    Member

    This also happens to me! However, I’ve never looked into it…

    I just looked, and bbPress uses newlines to indicate breaks. This is parsed into <p>’s by a filter upon display. However, the edit textarea shows the unparsed text with just the newlines, and this gets mangled by tinymce.

    If you set this tinymce config value, though, it will turn newlines into br’s, which should fix this problem for new posts:

    * http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/convert_newlines_to_brs

    I just tested this, and it works on new posts! (It won’t work on old posts…)

    #3351
    chilledfresh
    Member

    I’m using the latest version of tinyMCE in my bbPress forum, but have run into an issue while editing posts. This problem occurs in both TinyMCE AND FCKeditor, so it must be related to how bbPress handles these types of plugins.

    I can post new topics fine and everything works. However, when I go in to edit a post the WYSIWYG editor loses all <p> tags, forcing everything to appear on a single line. All other formatting is retained correctly by the editor.

    Any idea on how I can fix this problem?

    _ck_
    Participant

    The proper header for the page apparently is not being sent until there is a logged in user.

    I’ll see if I can reproduce this. Is it in kakumei theme?

    Update: this works fine on my setup:

    http://bbshowcase.org/forums/topic/put-your-test-posts-here?bbtheme=kakumei#post-302

    You might have something sending whitespace before all the headers can be sent so the page encoding gets broken until the user is logged in. Are there any errors visible when you do a “view source” or any javascript errors?

    #64664
    Sam Bauers
    Participant

    @ mykes

    What version of WordPressMU?

    I’m not sure that the latest version is compatible with bbPress yet. The recent Release Candiadte is though.

    #3346
    mrhoratio
    Member

    I have bbPress installed in a directory called “forums” on my web server. I have Pretty Permalinks enabled and working. To view the profile of a member, I can go to this URL:

    http://www.example.com/forums/profile/membername

    However, I would like the url to be:

    http://www.example.com/profile/membername

    I’ve tried writing a mod_rewrite rule which rewrites the latter to the former. However, instead of rewriting it, it redirect and exposes the URL. For example. Typing this into the browser:

    http://www.example.com/profile/membername

    Redirects to this, instead of rewriting it:

    http://www.example.com/forums/profile/membername

    Here is the mod_rewrite I am using:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    Options +FollowSymlinks
    RewriteRule ^profile/membername$ /forums/profile/membername [L]
    </IfModule>

    If I change the rule to rewrite the URL to a simple text file, it rewrites properly and masks the URL. For example, this works:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    Options +FollowSymlinks
    RewriteRule ^profile/membername$ /forums/textfile.txt[L]
    </IfModule>

    Another example, I wrote this rule, as a test, to rewrite a URL to the rewrite-rules.php file:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    Options +FollowSymlinks
    RewriteRule ^profile/membername$ /forums/bb-admin/rewrite-rules.php [L]
    </IfModule>

    I type in this url into my browser:

    http://www.example.com/profile/membername

    And it redirects to ths instead:

    http://test.doublebad.com/forums/

    If I replace all the text in the rewrite-rules.php file with “test text”, then the URL rewrites properly.

    So it seems that when you are rewriting and URL to a bbPress php file, it will always redirect instead of rewriting, which is quite annoying. I’m trying to trace in the bbPress functions and settings where this is occuring. But I’m having no luck.

    Any suggestions?

    #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.

    #64842
    bobbyh
    Member

    Chris, I did disable plugins, but I hadn’t wrapped the Email Notifications plugin function call with a function_exists wrapper, so my active theme stopped working when I did so. I then oh-so-intelligently reasoned that this plugin couldn’t be the cause of the problem, so I moved on…

    I couldn’t just disable all plugins and test with a default theme because of the existence of private forums. Finally, I moved the database to a private test server (and used a HOST file) and went through all the plugins carefully one-by-one until the problem was fixed.

    Let my idiocy be a lesson for others: wrap your plugin function calls with function_exists wrapper! :-)

    #64829
    bobbyh
    Member

    Lookfab, here’s a slight tweak to the default kakumei topic.php theme file that should do what you want:

    <ol id="thread" start="<?php echo $list_start; ?>">

    <?php $i = 0; ?>

    <?php foreach ($posts as $bb_post) : $del_class = post_del_class(); ?>

    <li id="post-<?php post_id(); ?>"<?php if ($i == 0) { echo 'class="firstpost"'; } elseif !($i % 2) { echo ('class="alt"'); }?>>

    <?php bb_post_template(); ?>

    </li>

    <?php $i++; ?>

    <?php endforeach; ?>

    </ol>

    You can then style the class “firstpost” using CSS to make it stand out however you want…

    I didn’t test this, but I think it should work either by itself or with a tweak or two.

    #64847

    In reply to: Page Bug

    citizenkeith
    Participant

    It’s not going to tell you much because it’s a private forum. However, if you’d like to have a test login, send me an email at kamera [at] gmail [dot] com.

    #64837
    chrishajer
    Participant

    I made two test posts. The both resulted in 500 errors, but they also both appeared to go through. They also took a really really long time, like something is going on in the back end. Are you sure the PHP errors are being logged? A 500 error should go *somewhere*.

Viewing 25 results - 10,176 through 10,200 (of 11,589 total)
Skip to toolbar