Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'updated'

Viewing 25 results - 376 through 400 (of 2,086 total)
  • Author
    Search Results
  • Robin W
    Moderator

    Pascal (@casiepa) has been in touch with the bbpress topics for posts author, and Pascal is taking it over, so expect an updated version soon.

    #190239
    pixelnated
    Participant

    In an unrelated item – whenever I post on these forums in FireFox my posts seem to vanish as soon as I hit submit (although the forum post time seems to have updated) & the formatting tools can’t be seen.

    Writing this from chrome….

    #190221
    pixelnated
    Participant

    Since I was helping a friend convert a phpbb2 board to phpbb3 I thought I’d take the time to also import the forums into bbpress (my preference).
    I initially tried the import but could not get it to work and after looking on the forums saw that I was not alone.
    To get the import to work I had to remap some fields in the phpbb conversion script and comment out some obsolete ones (took about 30 minutes.

    If anyone needs to get your PHPBB3 users and forums converted in BBPress you can replace the phpBB.php file in wp-content\plugins\bbpress\includes\admin\converters to match the following updated code: https://gist.github.com/pixelnated/a7a9c41154cf64696ddd1c2e4f4327ed

    AdventureRidingNZ
    Participant

    For good UX you also need the plugin ‘bbPress Forum Redirect’ so that when a user accesses the forum topic directly the topic is redirected to the page with the forum topic displays underneath so that the user gets the page content and the forum posts, not just the forum posts.

    That plugin suffers the same where it hasn’t been updated in a year and 3 major WP versions and needs PHP 7.x compatibility updates.

    #189706
    Robin W
    Moderator

    ok, I think the key item is that it is repairing the post_parent, so a reply gets back it’s topic ID.

    I can only presume this is from the topic_id held in postmeta.

    Can you confirm for another reply that you haven’t updated that

    1. post_parent is 0 and
    2. postmeta has the entry _bbp_topic_id with a number against it.

    and then randomly check several more.

    then update a couple and confirm that post_parent is now complete.

    If all that checks out – I can write a quick programme that will go through each reply, pick up the topic_id from postmeta and set post parent.

    cjerrells
    Participant

    @jsteckler1: We use GF to set a custom field called “_mu_autogenerated_post_to” and then our code looks like this:

    
    /*
     * Small fix for posting new introductions to the introductions thread
     * Would be nice to use the GF hook but post_id not set with Custom Post Types addon -_-
     */
    function set_post_parent($post_id)
    {
        if (get_post_meta($post_id,"_mu_autogenerated_post_to",true))
        {
            remove_action( 'save_post', 'set_post_parent',10); // Avoid infinite loop when wp_update_post calls save_post
            $target_discussion = get_post_meta($post_id,"_mu_autogenerated_post_to",true);
            error_log("Detected new _mu_autogenerated_post_to " . $target_discussion);
            wp_update_post( array('ID' => $post_id,'post_parent'=>$target_discussion) );
            error_log("Updated post parent.");
            add_action( 'save_post', 'set_post_parent',10);
        }    
        else
        {
           // error_log("Ignoring non-_mu_autogenerated_post_to post creation");
        }
    }
    add_action( 'save_post', 'set_post_parent',10);
    

    Hope that helps!

    #189653
    Robin W
    Moderator

    see this link

    http://www.wpbeginner.com/plugins/how-to-deactivate-all-plugins-when-not-able-to-access-wp-admin/

    The issue is with this plugin

    bbPress Login Register Links On Forum Topic Pages

    which was updated a day ago.

    so don’t re-enable that one

    if you go to that plugins support page, you’ll find someone has already logged that error.

    You should revert to the earlier version until it is fixed

    #189652
    thecollegedorm
    Participant

    Hi, my site has been working fine all along till I updated my plug-ins a few hours ago. Now I can’t even access my homepage (thecollegedorm.com) and instead I receive an error message like this:

    Fatal error: Can’t use function return value in write context in /home/thecollegedorm/public_html/wp-content/plugins/bbpress-login-register-links-on-forum-topic-pages/bbpress-login-register-links-on-forum-page.php on line 30

    May I know if this is an issue with the plug in or? I cannot even access the wordpress admin page for my site now which really sucks as I can’t uninstall the plug-in.

    Pascal Casier
    Moderator

    @swagataminnovations as there are no changes to bbPress 2.5 , there was no need to update anything to that plugin, but you are right that it seemed very old.

    Updated now 🙂

    swagataminnovations
    Participant

    Looks interesting, but this one’s too is not updated since 2 years…folks normally won’t install a plugin which are not timely updated and the untested version…

    swagataminnovations
    Participant

    Hello,

    I have checked this plugin and it still works nicely at the moment.
    I have followed the suggestions provided by “makingcircuits” in one of the other threads, and could convert all my existing wordpress comments to bbpress forum discussion with a few clicks.
    I think this is a unique feature which only bbpress is able to provide with the help of this plugin, therefore we really want this plugin to be maintained and updated from time to time so the users can feel comfortable about implementing for the said purpose.
    I have tons of comments in wordpress which are not getting indexed by Google, therefore turning them into forum can instantly provide a huge SEO boost for these comments and could hugely improve the search engine presence of my site.
    However I could go ahead with this only when I feel assured that the mentioned plugin would be maintained regularly by the author or if there could be an alternative to this plugin.

    The plugin looks very useful and enables only bbpress with this very crucial feature of turning wordpress comments into bbpress forum, with just a few clicks.

    I hope somebody will take an initiative in this regard

    makingcircuits
    Participant

    The existing plugin “bbpress topics for posts” by Mr. David Dean is too old and seems like it is now no longer being updated and almost abandoned by the owner, therefore I would request bbpress or somebody here to take over this plugin or create an alternative for this plugin.
    It is because this is the only plugin which allows merging existing wordpress comments with bbpress forum.
    I have successfully tried the procedures and could merge my earlier regular wordpress comments inside bbpress under every post.
    So this plugin is very important considering that it converts your ordinary wordpress comments into SEO rich bbpress forum replies.
    Please help! I would really appreciate if somebody could come with a similar version of this plugin

    #189205
    vokzal48
    Participant

    updated wordpress and bbpress to the latest versions, but unfortunately it did not help.
    WP: 4.9.1 bbPress:2.5.14

    brent0r
    Participant

    On the forums index under Last Post I have:

    “Title Of the Thread That Was Updated Most Recently”
    “17 hours, 11 minutes ago”

    I am wanting to put the two on a single line.
    eg. “Title of the Thread (7 hours, 11 minutes ago)”

    The area of the loop-single-forum file is as follows:

    <li class="bbp-forum-freshness">
    
    		<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
    
    		<?php bbp_forum_freshness_link(); ?>
    
    		<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
    
    		<p class="bbp-topic-meta">
    
    			<?php do_action( 'bbp_theme_before_topic_author' ); ?>
    
    			<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
    
    			<?php do_action( 'bbp_theme_after_topic_author' ); ?>
    
    		</p>
    	</li>
    

    I’ve tried editing this quite a bit but all attempts have failed. Any tips or feedback on how I can display the Thread Title (time posted) on a single line would be greatly appreciated.

    Thank you!

    Robin W
    Moderator

    issue is with the plugin Paid Memberships Pro – bbPress Add On v 1.5.4 with Plugin Paid Memberships Pro 1.9.4.2 prevent Plugin Google Photos Version 1.0.1 embed from working.

    from @mattdmcleod

    I rolled it back to the previous version (1.5.3) on the staging site and it worked. Made that change on the production site and it also seems OK.
    The PMPro plugin was the one updated in December, but the current BBPress (v1.5.4) connector hasn’t been updated for 5 months (and last tested with WP 4.8.4). I guess the PMPro update affected the BBPress connector in some way? Or maybe it doesn’t like WP 4.9x? I’ll post in their support forum to let them know.

    #188762
    Bharat Karavadra
    Participant

    @robin-w,

    1) I use two sidebar widget areas from the theme. One for blog archives and posts, and one for pages. These function and appear OK. There is also a WooCommerce sidebar but I don’t have WooCommerce installed so I can’t comment on that.

    2) When using the instructions at the link on the first topic post I made here, and also the bbPress WP tweak plugin the bbPress sidebar widget area appears, I’ve added the text area and some dummy text, saved it, but the sidebar does not appear on any of the forum pages (e.g. main forum index, topic list, topic).

    It came to mind that I’m quite sure that I used the linked instructions to they the sidebar to appear and it worked OK with a previous version of the theme. There have been a few updates since, where I have copied the customisations over to the updated theme, but I had assumed that the bbPress sidebar would continue to work. It was only when I looked at the forum recently, it looked and felt odd and that is when realised the sidebar had stopped working. But I’m not sure why the plugin does not work, but again these two non-functioning issues with the sidebar may be related.

    I hope that helps.

    And thank you.

    #188334
    Justin
    Participant

    I tried 2.6Rc3 and it did more, but still getting the same error along with a lot of others:

    Import Finished
    17: No threaded replies to import
    16: No anonymous reply authors to import
    WordPress database error: [Table 'db507177147.Comment' doesn't exist]
    SELECT convert(Comment.CommentID USING "utf8mb4") AS CommentID,convert(Comment.DiscussionID USING "utf8mb4") AS DiscussionID,convert(Comment.InsertIPAddress USING "utf8mb4") AS InsertIPAddress,convert(Comment.InsertUserID USING "utf8mb4") AS InsertUserID,convert(Comment.Body USING "utf8mb4") AS Body,convert(Comment.DateInserted USING "utf8mb4") AS DateInserted,convert(Comment.DateUpdated USING "utf8mb4") AS DateUpdated FROM Comment AS Comment WHERE Format != "Deleted" LIMIT 0, 100
    15: No replies to import
    14: No favorites to import
    13: No topic subscriptions to import
    WordPress database error: [Table 'db507177147.TagDiscussion' doesn't exist]
    SELECT convert(TagDiscussion.DiscussionID USING "utf8mb4") AS DiscussionID,convert(TagDiscussion.TagID USING "utf8mb4") AS TagID,convert(Tag.Name USING "utf8mb4") AS Name FROM TagDiscussion AS TagDiscussion INNER JOIN Tag AS Tag USING (tagid) LIMIT 0, 100
    12: No topic tags to import
    11: No closed topics to close
    Continuing Import
    Import Stopped (by User)
    10: No super stickies to stick
    9: No stickies to stick
    8: No anonymous topic authors to import
    WordPress database error: [Table 'db507177147.Discussion' doesn't exist]
    SELECT convert(Discussion.DiscussionID USING "utf8mb4") AS DiscussionID,convert(Discussion.CountComments USING "utf8mb4") AS CountComments,convert(Discussion.CategoryID USING "utf8mb4") AS CategoryID,convert(Discussion.InsertUserID USING "utf8mb4") AS InsertUserID,convert(Discussion.Name USING "utf8mb4") AS Name,convert(Discussion.Body USING "utf8mb4") AS Body,convert(Discussion.closed USING "utf8mb4") AS closed,convert(Discussion.InsertIPAddress USING "utf8mb4") AS InsertIPAddress,convert(Discussion.Announce USING "utf8mb4") AS Announce,convert(Discussion.DateInserted USING "utf8mb4") AS DateInserted,convert(Discussion.DateUpdated USING "utf8mb4") AS DateUpdated,convert(Discussion.DateLastComment USING "utf8mb4") AS DateLastComment FROM Discussion AS Discussion WHERE Format != "Deleted" LIMIT 0, 100
    7: No topics to import
    6: No forum subscriptions to import
    5: No forum parents to import
    WordPress database error: [Table 'db507177147.Category' doesn't exist]
    SELECT convert(Category.CategoryID USING "utf8mb4") AS CategoryID,convert(Category.ParentCategoryID USING "utf8mb4") AS ParentCategoryID,convert(Category.CountDiscussions USING "utf8mb4") AS CountDiscussions,convert(Category.CountComments USING "utf8mb4") AS CountComments,convert(Category.Name USING "utf8mb4") AS Name,convert(Category.Description USING "utf8mb4") AS Description,convert(Category.Sort USING "utf8mb4") AS Sort,convert(Category.DateInserted USING "utf8mb4") AS DateInserted,convert(Category.DateUpdated USING "utf8mb4") AS DateUpdated FROM Category AS Category WHERE Category.CategoryID > 0 LIMIT 0, 100
    4: No forums to import
    3: No passwords to clear
    WordPress database error: [Table 'db507177147.User' doesn't exist]
    SELECT convert(User.UserID USING "utf8mb4") AS UserID,convert(User.Password USING "utf8mb4") AS Password,convert(User.Name USING "utf8mb4") AS Name,convert(User.Email USING "utf8mb4") AS Email,convert(User.DateInserted USING "utf8mb4") AS DateInserted FROM User AS User WHERE Deleted !=1 LIMIT 0, 100
    2: No users to import
    1: Skipping sync-table clean-up
    WordPress database error: [Specified key was too long; max key length is 1000 bytes]
    CREATE TABLE GcuHRqrGbbp_converter_translator ( meta_id mediumint(8) unsigned not null auto_increment, value_type varchar(25) null, value_id bigint(20) unsigned not null default '0', meta_key varchar(191) null, meta_value varchar(191) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key(191), meta_value(191)) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
    Starting Import
    Ready to go.

    Any suggestions? Is my database not allowing writes? I am using 1and1 as my web and database host.

    #187965
    uddin33
    Participant

    I am using WordPress Version 4.7 And have installed bbpress version 2.5.12.Every thing is working fine but in edit profile page no edits are updating.I have checked it for both admin and participant role.After edit profile button submit it redirects to following url
    http://mysite.com/forums/user/pro2/edit/?updated=true but nothing is changed actually.How can i solve this problem?pls help

    #187528
    Kristian Yngve
    Participant

    Sure, here’s all that info:

    I am using the very latest WordPress, I updated recently but unaware if the problem existed beforehand. I have had this wp theme for 3 years and I remember BBpress working well when I first installed it just over 2 years ago.

    The only affected area is only within topic at the point of conversation threads. The issue happens when the screen is at iPhone6+ size and smaller when viewed on the portrait side.

    All avatars shift to the top left-hand side of screen together as they all sit on top of each other. I have viewed this on the chrome and safari browser.

    Any ideas upon what I can do to overcome this?

    #187321
    Robin W
    Moderator

    And it doesn’t end up the same, not really. Everytime bbpress is updated now I have to hope 20 different authors of 20 different plugins also update their code in a timely manner, and if any of them decide to stop the project I now lose functionality.

    not really here for a philosophical argument – that’s the way bbpress authors (which I am not) wrote it, and as free software they should be able to write what they want.

    I just write some additional plugins which again I do for free and yes I have to update for free, and provide some support here for free.

    #187318
    paladinbrewer
    Participant

    No answer to the other ones? 🙂

    And it doesn’t end up the same, not really. Everytime bbpress is updated now I have to hope 20 different authors of 20 different plugins also update their code in a timely manner, and if any of them decide to stop the project I now lose functionality.

    #187164
    moejonet
    Participant

    There is an infite loop on reply update caused by buddypress activity from bbpress if bbp_thread_replies() is false.

    activity tries to get reply position, in this call position is updated for the reply but we are still in edit_post action so wp_update_post is called recursively until server gives up.

    stacktrace:

    
    var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #2 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #3 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #4 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #5 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #6 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #7 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #8 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #9 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #10 /var/www/clients/client1/web17/web/wp-includes/post.php(3591): wp_insert_post(Array, false)
    #11 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #12 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #13 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #14 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #15 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #16 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #17 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #18 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #19 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #20 /var/www/clients/client1/web17/web/wp-includes/post.php(3591): wp_insert_post(Array, false)
    #21 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #22 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #23 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #24 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #25 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #26 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #27 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #28 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #29 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #30 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(45): wp_insert_post(Array)
    #31 /var/www/clients/client1/web17/web/wp-content/themes/mikmag-child/lib/core/MundrImportForums.php(663): bbp_insert_reply(Array, Array)
    #32 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): lib\core\MundrImportForums->post_import_forums_threads('')
    #33 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array)
    #34 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #35 /var/www/clients/client1/web17/web/wp-admin/admin-ajax.php(91): do_action('wp_ajax_post_im...')
    
    #186819

    In reply to: bbPress error

    Sammes
    Participant

    Never mind, I updated bbPress and all issues are fixed!

    #186814
    mariealline
    Participant

    I just got notice when I went to the backend of my wordpress site that there was an update. It was a bbpress update, so I clicked to install it and it broke my website. I can’t get to the plugins page or anything to uninstall the update. Please help! Even the front end of my website is down. http://mariealline.com.

    It looked like it installed correctly, but I get a HTTP ERROR 500 when I try to access my homepage or any other page on the website.

    “Downloading update from https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip…

    Unpacking the update…

    Installing the latest version…

    Removing the old version of the plugin…

    Plugin updated successfully.”

    Thank you,
    mariealline

    #186720
    Robin W
    Moderator

    It will be something that has changed – so what have you (or wordpress) updated or added ?

Viewing 25 results - 376 through 400 (of 2,086 total)
Skip to toolbar