Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 5,351 through 5,375 (of 11,580 total)
  • Author
    Search Results
  • #137078
    PureLoneWolf
    Participant

    See…now I feel like a complete moron. No, I had not checked the “Screen Options” option…although, in my defense, I have never adjusted that on the working site either…

    So that’s the menu issue sorted now…/facepalm. I always say to check the simple stuff first, I should probably listen to myself from time to time.

    What is confusing me about the functions.php mod..is that, to test, I have actually taken a copy of the working theme from the working site..and it still fails. It actually fails on every theme I give it. It literally happened when I upgraded to 2.4. I had the main site open in another tab, updated the bbpress plugin, switched to the other tab and hit refresh…where it immediately went to what it is now.

    I thought it might be plugin related, so I deactivated any differences between the sites, and still nothing.

    Is there another way to get this change, other than in the themes functions.php?

    #137076
    Kaliceos
    Participant

    I’m running latest releases of WordPress and bbPress, and I don’t have any problems neither with the custom function (placed in my theme’s functions.php) nor with the menus.
    Edit after your edit : I also have buddyPress installed

    What theme are you using ? The bbp_list_forums may be used in a different way in the theme where it doesn’t work.

    For the menus, I don’t know what could cause this issue, have you tried with an other theme ?

    If you want to rebuild your site, take a look at the Tools > Export and Tools > Import in your dahsboard, you’ll be able to transfer your forums, topics and posts.
    For users, it looks like the plugin AEIOU can do that. Otherwise, transferring the mysql tables (wp_users, wp_usermeta and if you use buddyPress wp_bp_xprofile_*) should work too.
    I guess you have to import users before forums, posts, and topics if you want to keep the author relation.

    #137075
    PureLoneWolf
    Participant

    Ok. I have now done the following:

    Copied the entire bbPress (plus bbPress plugins) folder from the working site.
    Copied the working theme from the working site.

    Deactivated deleted bbPress (plus bbPress plugins) from the non-working site
    Uploaded bbPress and plugins to the non-working site.
    Uploaded theme
    Activated all on the non-working site

    This didn’t work. Forums remain stubbornly on one line and the Forums option doesn’t appear in the WP menu editor.

    On top of that, I then deactivated and deleted bbPress..then re-installed through the WP Add New Plugin interface.

    This also didn’t work. No change whatsoever. I am going to have to build a test site and re-build the site I think.

    What would be the easiest way to get the forums/posts/users etc brought over?

    Many thanks

    **EDIT**
    This just gets weirder and weirder. I just created a blank, brand new installation of wordpress. Installed buddypress, then bbpress. Went to Appearance/Menus and Forums does not show up.

    #137064
    SysFailure0x5a
    Participant

    @Xevo

    Go to https://bbpress.trac.wordpress.org/browser/branches/2.3 and press “Zip Archive” at the bottom.

    That appears to be 2.3.3-ALPHA. I need the latest stable of 2.3, which I thought was 2.3.2?

    #137056
    PureLoneWolf
    Participant

    Hi there

    I have bbPress (along with BuddyPress) on two, fundamentally, identical websites.

    However, on http://www.wolflan.com, I have no issues, but on clan.wolflan.com I have a couple of weird ones.

    They are both even using themes from the same author.

    On wolflan.com, I was able to use

    function custom_bbp_list_forums() {
      $args['separator'] = '<br />';
     
      return $args;
    }
     
    add_filter('bbp_before_list_forums_parse_args', 'custom_bbp_list_forums' );

    in my themes functions.php, and therefore get the sub-forums on their own line. Additionally, I was able to add individual forums to the site navigation menu (Appearance/Menus).

    On clan.wolflan.com I was able to get the sub-forums on their own line, up until I upgraded to 2.4. At which point, my private forums moved to the bottom and the code above stopped putting the sub-forums on their own line. Today, I decided that I would like to have forums on the navigation and noticed that I have no option for this.

    Both sites are running an identical plugin list, they are both on the latest versions of all plugins and are also running WP3.6.1 as of this morning.

    Would anyone have any ideas?

    I have linked to images that show the issue:

    wolflan.com
    Fully working, modded functions.php
    fullworkingfunctionsmod.png
    Fully working, wordpress menu editor
    fullworkingmenueditor.png

    clan.wolflan.com
    Not working, modded functions.php
    nonworkingfunctionsmod.png
    Not working, wordpress menu editor
    nonworkingmenueditor.png

    Would anyone have any ideas as to what I can do to solve these two issues?

    Many thanks
    Dave

    #137049
    Newo1t
    Participant

    Hello,

    I tried for several days to import my forum PHPBB 3.0.11 (the latest version) to bbPress, the latest version too, but the problem is that I end up with countless duplicate for each element of the forum.

    How to remedy this?

    Sincerely,

    #137048
    inspirationally
    Participant

    Hello,

    after exactly 10 years and over 500.000 posts with our board deppheads.com running with Woltlab Burning Board (right now version 3.1.8), social networks have sort of won – instead of 150 new posts the day we have now maximum 5 posts. WBB4 will be coming out soon, so this is the right time to sell my WBB license and move it all to my site johnny-depp.org, powered by WordPress. This is where I seek help.

    I already deleted inactive members, so that we now have “just” over 300, but I don’t want to delete all the written things like movie reviews and serious discussion, as this is still the home of many. So there are 500.000 posts and nearly 10.000 topics to be imported.

    I edited the example.php and so far it worked with importing members and forums (just on a test WordPress installation for now).

    However, there are some problems/questions I’ve come up with and I’m almost sure, there will be more following.

    1. there is, equally to phpBB, the problem, that there are topics and posts, and the first post of the topic has to become “topic content” of WBB.
    Here I used

    // Topic content.
    // Note: We join the posts table because topics do not have content.
    $this->field_map[] = array(
    'from_tablename' => 'wbb1_1_post',
    'from_fieldname' => 'message',
    'join_tablename' => 'topics',
    'join_type' => 'INNER',
    'join_expression' => 'USING (threadID) WHERE wbb1_1_post.postID = wbb1_1_thread.firstPostID',
    'to_type' => 'topic',
    'to_fieldname' => 'post_content',
    'callback_method' => 'callback_html'
    );

    Unfortunately, I get the error, that wbb1_1_post.message does not exist:

    WordPress database error: [Unknown column 'wbb1_1_post.message' in 'field list']
SELECT convert(wbb1_1_thread.threadID USING "utf8") AS threadID,convert(wbb1_1_thread.replies USING "utf8") AS replies,convert(wbb1_1_thread.boardID USING "utf8") AS boardID,convert(wbb1_1_thread.userID USING "utf8") AS userID,convert(wbb1_1_post.message USING "utf8") AS message,convert(wbb1_1_thread.topic USING "utf8") AS topic,convert(wbb1_1_thread.time USING "utf8") AS time,convert(wbb1_1_thread.lastPostTime USING "utf8") AS lastPostTime FROM wbb1_1_thread AS wbb1_1_thread LIMIT 0, 100

    But it does!
    I attached both, my wbb3.php import script and the database structure of the most important tables, here you go:
    http://deppheads.com/uploads/wbb.txt
    http://deppheads.com/uploads/database_structure.txt

    2. I hope/guess, this is also the reason that all topics (once I remove that passage that produces an error) are started either by Anonymous or by ME (although I haven’t done it)?

    3. some users are twice now (like myself..who have been admins of wordpress and users of the forum). Can I simply merge them with
    UPDATE wp_posts SET post_author = ‘1’ WHERE post_author = ‘2’; and it will count for the forum, too?

    4. the passwords – in WBB they are hashed by this:
    $passwort = sha1($row->salt.sha1($row->salt.sha1($_POST[‘passwort’])));
    so what do I write at the end of wbb3.php
    public function authenticate_pass( $password, $serialized_pass ) {
    $pass_array = unserialize( $serialized_pass );
    return ( $pass_array[‘hash’] == md5( md5( $password ). $pass_array[‘salt’] ) );
    }
    or is this impossible and the users have to get the new password by mail?

    5. the imported users have no “Forum Role”. Is is “normal”? Is there any chance to automatically give them the forum role “Participant”?

    6. do I have to keep the wbb3.php “forever” because of the passwords or can I delete it one day, even if not all members have com back yet?

    7. until now we have everything like private messages, profiles, friends and especially user groups (Moderators, crew members) with hidden forums. Do I see correct, that I can install both, import bbpress and afterwards attach for example our “Mods Only” to the group “Moderators” as group forum?

    8. I see that every user gets a new User ID – old IDs are saved in table _bbp_converter_translator – will that table be kept? Maybe by this I have a chance to later import – somehow – private messages for buddy press!?

    Alone if my first point is solved, I’d be thankful.

    Kind regards, inspirationally.

    #137035
    Kaliceos
    Participant

    Hi,

    I’m in the process of migrating a phpBB forum to WordPress with bbPress. I don’t know if the bbPress style is better but my users are used to the phpBB style for displaying Forums on the main page. So I tried to reproduce that layout in bbPress using categories. With the default theme, I was not happy with the way it looked. After a quick search in these forums, I saw some interesting topics from @lynq (here and there) but it didn’t work as intended in the last bbpress release and ticket #1958 has been moved to 2.6.

    So after a few hours of searching codex, and a lot of tries, I managed to do what I wanted. As there is still some demand in Lynq’s topic, I thought I should share my little work.

    I’m not a developper, so my code may be a little messy, but it works as intended. I’ve tried using the bbpress functions, and commented my code. If any PHP expert would like to review it and make it better, any feedback is welcome.

    The only file to change is loop-forums.php with this code.
    You just need to create it and paste the code. Then upload it to /wp-content/your-theme/bbpress/. Use a child-theme if you don’t want to loose it on next theme update.

    The forums are not yet online, so here are some screenshots with descriptions. (In French, because, as you may have noticed, English is not my native language 🙂 )

    I’ve tested many situations (even a category inside a forum, which bbpress doesn’t consider anymore as a category, probably normal behavior) and I think everything works as intended. Feel free to report any bug.

    #137017
    matrixd
    Participant

    btw. did anyone else notice that the latest bbpress killed the display of the date of the latest post/reply as well as the display of the post author?

    Its simply not showing anymore even though I checked the box in the widget settings

    Your answer is here

    #137005
    ovizii
    Participant

    btw. did anyone else notice that the latest bbpress killed the display of the date of the latest post/reply as well as the display of the post author?

    Its simply not showing anymore even though I checked the box in the widget settings.

    check it out live here: die-kellerkinder.eu

    my widget settings:
    http://screencast.com/t/wJIMj9WQR
    http://screencast.com/t/emLrUiJIF

    #137003

    In reply to: Visibility issue

    G3ronim0
    Participant

    I test to manually change post_satuts to hidden in the database, it’s works…

    #137001
    Sven
    Participant

    Hi,

    I have the same problem. When I click on the Visual Tab, following error will shown:

    TypeError: d is undefined …/wp-includes/js/quicktags.min.js?ver=3.6 Line 1

    I’m using Wodpress 3.6 and the latest bbPress. What can I do?

    #136998
    ManuZorch
    Participant

    Hi
    I have faced an issue that maybe some people have encountered and for which I did not find much info on the net.

    Basically the problem was that the bbpress default template that I embedded in my WP template was rendered with supplementary line breaks (<br> and <p> tags). Just as if the wpautop function was reapplied on the forum content included in the template.

    I noticed that the problem was existing on Linux if the template files had an Unix EOL : LF
    And also existing on Windows (using WAMP) if those same files had a Windows EOL : CR+LF
    I found a workaround by making the template files have a Mac End Of Line with : CR

    But I am not sure this is a clean solution
    Maybe there is something far more simple that I do not know

    Thanks

    I am using the latest 2.4 bbpress version

    #136995
    David Donnelly
    Participant

    I found Version 2.3.2 on my computer. deleted 2.4 uploaded 2.3.2 and Title tags work as they should.

    Definitely a problem with 2.4 messing with Title tags.

    If there is a fix let me know and I’ll be happy to test it.

    Thanks

    #136990
    Stephen Edgar
    Keymaster

    Firstly, thanks for looking further into this, it gave me enough info to run a quick test import.

    bbPress uses WordPress tables and doesn’t create any of its own and not having answers to something you don’t know doesn’t make anyone dumb. 😉

    Ok…. Here we go….

    I installed this plugin https://wordpress.org/plugins/wp-ultimate-csv-importer/

    I realised the csv file had to be split into 3, one for the forum, one for topics and one for replies. Here is a copy of the 3 CSV files I used https://gist.github.com/ntwb/6532360

    Next jump into WP Admin and and open up the WP CSV Tool and select ‘Custom Post’ to import from and select your forum.csv file to upload and click import.

    Set the options and field mappings as per this:

    Import Data Configuration

    Select Post Type = forum
    Import with post status = publish
    post_author = post_author
    post_date = post_date
    post_content = post_content
    post_title = post_title

    And click import.

    Topics is up next and you will notice that it includes the field ‘post_parent’ so this is the forum ID that the topic will be imported into. As we do not know the forum ID you will need to open up the bbPress forums panel in wp-admin. Select the forum you want the topics to be imported and this will take you into the forum edit section, look at the URL in your browser and it should be similar to /wp-admin/post.php?post=348830&action=edit what we want here is the ‘348830’ as that will be the parent forum for each topic imported. Update your topic.csv file with this number as per my sample linked above.

    Back to the CSV importer to import your topics.csv

    Set the options and field mappings as per this:

    Import Data Configuration

    Select Post Type = topic
    Import with post status = publish
    post_author = post_author
    post_date = post_date
    post_content = post_content
    post_title = post_title
    post_parent = post_parent

    The replies section is basically the same as the topics section, you need to get the ID orf each topic ID for each reply and update your reply.csv file for each entry.

    Lastly run each of the ‘Recalculate’ and ‘Count’ bbPress ‘Repair Tools’ from wp-admin-> Tools- Forums -> Repair Forums (more info here https://codex.bbpress.org/repair-forums/)

    And I think that’s it, there is a bit of juggling your data around, give it a bash and let me know how it works out for you and here’s the result 🙂

    #136968
    David Donnelly
    Participant

    I ran a search and didn’t find an answer to this. If there is one please point me to the right post.

    Behavior problem with Title Tags

    Site is multi-site 3.6, buddy press 1.81, bbpress 2.4. All other themes and plugis current. Problem on the main site only. Sub-domains not effected.

    I found the title tags aren’t showing up correctly. On all pages other then BP pages and home page only the site name shows up as title in the browser. I can see that the page name/site Page | site name is trying to show but loops back to just the site name without the page or pipe.

    I change the theme to 2012 and I still had the same problem.

    I’ve tested in Chrome, Firefox and IE all behave the same.

    I cleared, cache, temp internet history and file throughout the process of finding what’s wrong.

    I deactivated all plugins and Title tags returned to normal tag behavior. I activated the plugins 1 by one and discovered that BBPress is causing the problem with the title tags. I deactivate all plugins again and activated only bbpress and sure enough it’s the problem. Right now I have BBPress deactivated.

    Please help me through this issue.

    #136962
    ovizii
    Participant

    btw. did anyone else notice that the latest bbpress killed the display of the date of the latest post/reply?

    Its simply not showing anymore even though I checked the box in the widget settings.

    #136930
    mediaplasmid
    Participant

    Hi all,

    here is a problem that one of my members ran into whilst testing out the different tags available in the text editor. As he was unfamiliar with html tags he didn’t realise that a list tag would need to be nested within a ul/ol. Anyway, the problem occurs whenever someone posts a reply which contains an unnested list item (<li>list item</li>). Once the post is published the list tag is rendered underneath the unordered list class=”forums bbp-replies”. This causes styling issues for anything being displayed underneath the post.

    I thought this may of just been my forum, but i briefly tested it on this forum and it also causes styling issues.

    You can find a screenshot comparison of how my forum looks normally and how it looks with the tag breaking the style.

    Comparison screenshot

    The image doesn’t show the severity of the issue, but you can see how a simple tag that any user can post can effect styles which are outside of the text editor.

    I tried searching but couldn’t find anyone else reporting a similar issue. Has anyone else run into this before? are the bbpress developers aware?

    #136909
    miracleren
    Participant

    i have updated to 2.4,I find a problem for search.
    when the wordpress Permalink Settings use Numeric like(http://localhost/test/archives/123),
    use the bbPress forum search form, It will not result always.

    #136855
    friedVol
    Participant

    I’m getting the same message – “You do not have sufficient permissions to access this page” – when I click on Settings in the plugin.

    Also the Forums button does not show up in the left-side menu of my WP admin panel. Yet I have 7 bbPress widgets.

    I’ve deactivated and reactivated the plugin. When I first clicked “activate” I got the “You do not have sufficient permissions…” message. I clicked activate a second time, and the plugin showed as activated. But still no Forum button.

    This bbPress.org site says easy instructions are provided, but my installation has no instructions. I was expecting to paste a shortcode to the forum on a blank page. I can’t imaging putting all 7 bbPress widgets in a sidebar.

    I do not have the Page.ly plugin the previous poster said affected his/her bbPress. I do have a time.ly plug in (calendar) which I need. Why would plugins interfere with each other?

    I need help with this because no other forum plugin is showing as tested with my version of WP which I believe is WP3.6, although I’m not able to find the version number anywhere on my dashboard.

    #136854
    casesolver
    Participant

    Hi, I just started with a new website so all lastest versions, WP, Buddypress, BBpress.
    Buddypress theme Klein, created in August 2013.

    Key factor is prioritizing, rating, like topics.

    looking for a BBpress and Group forums plugin I cannot find a plugin. (installed -buddypress rate forum post- but I do not see a button in the posts.)

    Do you have a suggestion? Have a nice day, Anne

    #136849
    Nykess
    Participant

    Is there a temporary fix for the latest topics/replies widgets so that they once again show avatars/users/dates? Not having them is awful. Having to wait for another patch isn’t ideal.

    #136839

    Topic: Delete Sidebar

    in forum Installation
    indietest
    Participant

    WP Version: 3.6 | bbPress Version: 2.4 | Website: http://indietest.de/forums/

    Howdy Guys,

    i have the problem, that i cant delete the sidebar. i already searched for this problem but all the solutions deosnt work for me, because most of the files (like forum.php) is not existing.

    Greets.

    fskrdla
    Participant

    Hello, I have been looking for a solution all day, and cannot find someone with a similar problem.

    WordPress 3.6
    bbPress 2.4
    BuddyPress 1.8.1
    Genesis 2.0.1

    I can have either BuddyPress activated or bbPress, but not both. When one is activated and I activate the other, I get a server error. It doesn’t not matter which one I activate first, or which one I deactivate. My site front end still works, but in the back end I just get a server error and cannot access the admin dashboard without renaming or deleting one of the plugins through my host’s cpanel.

    I have tested with basic WP themes. I get the same error using both Twenty Twelve and Twenty Thirteen, basic Genesis framework theme, and my child theme.

    Thank you for any help you can offer.

    #136801
    Andrew Tegenkamp
    Participant

    We installed http://northstarfamily.org/forums/ for our church and want to have it show both the forum index and the latest topics on the main page.

    Also, I think that http://northstarfamily.org/forums/forum/homecoming-and-10th-anniversary/ should show the description and the topics but only shows the topics.

    Is this how the default is setup or do I have a possible conflict?

Viewing 25 results - 5,351 through 5,375 (of 11,580 total)
Skip to toolbar