Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 1,651 through 1,675 (of 6,794 total)
  • Author
    Search Results
  • #176589
    expectancy
    Participant

    For anyone that hasn’t solved this yet, it’s actually a very easy and quick fix!

    In the W3 spec (http://www.w3.org/TR/dom/), the “insertBefore” method requires 2 arguments. The second can be null, but it is still required. It looks like IE doesn’t require the second argument (which is why it works in IE as is) while Chrome, Firefox, and Safari do.

    bbpress/templates/default/js/reply.js – line 18
    Added a null argument as the second argument on “insertBefore”.

    Before Fix: reply.parentNode.insertBefore(respond);
    After Fix: reply.parentNode.insertBefore(respond, null);

    
    reply.parentNode.insertBefore(respond, null);
    if ( post && postId )
    	post.value = postId;
    parent.value = parentId;
    cancel.style.display = '';
    
    #176566
    Matoca
    Participant

    I disabled Jetpack and have left it disabled since this happened.

    However, something happened this Sunday that might be part of this problem, though I can’t be sure. Just posting it here so others can benefit.

    Trying to view my forum on my phone last night, but not logged in. I get the message “oops nothing here.” No forum at all. That’s not right, the forum should be visible to everyone!

    I try to log into my WP site on my phone. Instead of logging me in a form pops up that wants me to prove I am human by performing a simple math equation. This has happened before and I had no idea why, but usually only when I am trying to access the site via my phone. So now I am locked out of the dashboard by this form that is never satisfied by my answers and I can’t see the forum either. Great.

    Searching the WP troubleshooting forum I discover this Prove You Are Human math form is a function of the Jetpack setting called Protect. Many people have been locked out of their dashboard for days at a time. In the forum topic three ways to defeat this are suggested. The simplest, if you can get into your dashboard, is to turn off this Protect setting. More complex is doing it via WordPress.com settings or changing a file in your server.

    Today, Monday, I am able to log into my forum via my computer, and the forum is visible. Jetpack, for some strange reason, is no longer disabled. I have no explanation for that, I left it disabled.

    The first thing I look at are all the Jetpack settings and I unchecked the Protect function. I noticed that the default settings for Jetpack includes many things I had no idea were part of it. Very powerful plugin.

    Will this allow folks who have been blocked to post topic and replies in the forum? I don’t know yet. I would be curious if anyone has tangled with this Protect function prohibiting anonymous users from posting in the forum?

    #176559
    Matthijz98
    Participant

    I have made some adjustment to the default theme files it now looks like this:

    In the last Colom I want to display the last activitie in that category something like this
    ””
    But I don’t know which function I need and how I need to implement it in the theme.
    The code looks something like this
    ””

    #176484
    uschesch
    Participant

    My gravitar is wokring fine in WordPress; however, it no longer appears in the forum. Now a default image appears. Does anyone know what would have caused this issue?

    Wordpress: 4.5.3
    bbPress: 2.5.9-6017

    Thank you.

    #176467

    In reply to: BBPress slowness save

    TriiXx
    Participant

    Done P3 Plugin.

    All it’s good when i don’t post a message but with a manual check and post a message on bbpress :

    Theme Load Time: 7.3342seconds avg.

    Query Timeline : 3444 querries

    Detailed Timeline : 87 s (for theme)

    I try tonight with the default template but i think it’s the same.

    #176455
    Stephen Edgar
    Keymaster

    $content_dir (from the constant ‘WP_CONTENT_DIR’) resolves as:
    /var/lib/openshift/hexkey/app-root/data/current/wp-content

    content_url gives mydomain/wp-content

    and the file location starts out as :
    /var/lib/openshift/hexkey/app-root/data/plugins/bbpress/templates/default/js/editor.js

    That last path, I’d expect that to be /var/lib/openshift/hexkey/app-root/data/wp-content/plugins/bbpress/templates/default/js/editor.js

    i.e. after data is wp-content which is before plugins

    Plugins are “typically” installed unto the wp-content directory, WordPress has some constants available to change these, typically WP_CONTENT_DIR and WP_CONTENT_URL are used, WP_PLUGIN_DIR and WP_PLUGIN_URL are not used anywhere near as much, maybe the Openshift configuration has these defined in the wp-config.php file in the root directory?

    https://codex.wordpress.org/Determining_Plugin_and_Content_Directories#Constants

    This probably needs further investigation by bbPress, mainly to check the constants WP_PLUGIN_DIR and WP_PLUGIN_URL so these can be used standalone when WP_CONTENT_DIR and WP_CONTENT_URL are not used at all.


    @oldshaghat
    can you check in your wp-config.php if any of the above constants are defined please?

    #176435
    akkuakku
    Participant

    Dear All,

    In my new forum, I am finding out that as replies are given, the default indent space is eating in to the post space rather than the post adjusting the text to fit it within the available width (after reducing the indent space). You can see that clearly in the second reply post #942 (posted by Fazil) in the below link

    http://solarwindconsultants.com/forums/topic/economic-viability-of-solar-energy-at-any-given-location-latlong/

    My versions are: WordPress 4.5.3 & bbPress 2.5.10. Also, my “Reply Threading” tick box is not enabled.

    Please let me know what it is that I could be doing wrong?-

    #176426
    oldshaghat
    Participant

    I dug down into bbpress/includes/core/template-functions.php and inspected a couple of variables there in the enqueue_script call to see what’s going on.

    $content_dir (from the constant ‘WP_CONTENT_DIR’) resolves as:
    /var/lib/openshift/hexkey/app-root/data/current/wp-content

    content_url gives mydomain/wp-content

    and the file location starts out as :
    /var/lib/openshift/hexkey/app-root/data/plugins/bbpress/templates/default/js/editor.js

    So the string replace is going to fail – because that constant content-dir isn’t where you expect it to be – which is maybe something stupid openshift has done. Or goodness knows.

    Seems like if I edit this file to trim the “current/wp-content” piece off the content dir location I’ll be in business.

    #176415
    oldshaghat
    Participant

    Redhat’s Openshift has a nice WordPress option which was how I found bbPress. However, I am seeing that when deployed on openshift, the URL that the page ends up using to obtain the default bbPress theme data seems to be looking in the wrong spot.

    The root page is looking at mydomain/var/lib/openshift/longHexKey/app-root/data/plugins …
    This yields a 404 for the bbpress.css file and editor.js.

    whereas if I change that to mydomain/wp-content/plugins …
    The file comes back correctly.

    I’m just starting to get things going here with this stack so I’m not sure if this is a bbPress thing, a WordPress thing, or an OpenShift thing, but other plugins seem to be doing it ok. Is there a straightforward edit I can make to the bbPress files?

    #176395

    In reply to: BBPress slowness save

    TriiXx
    Participant

    Hi again,

    I’ve created a developpment server and disabled all plugins (without bbpress) and change my template to use default template.

    Same issue :/

    #176391
    Robkk
    Moderator

    Surely there is a way to change the reply author without going into the admin panel?

    The devs made it possible in the 2.6 version of bbPress I think.

    https://github.com/ntwb/bbPress/blob/master/src/templates/default/bbpress/form-reply.php#L117

    Not sure how to do what you want with a filter.

    #176385
    Robkk
    Moderator

    I rolled back bbPress since I read they changed their mail headers in 2.5.4 – so I went from the latest (2.5.9) to 2.5.3

    Update it to the latest version.

    Edited the database and added multiple addresses in the wp_options field for admin – still no notifications.

    Maybe consider reverting this to what you had previously.

    Did you do all what is described below @benjieblock?

    Create a forum and subscribe to the forum, and create a topic with your admin account and also subscribe to it on a live test site to test these subscriptions in.

    Create a test participant user to just post test posts in that topic you just created to test topic subscription emails, and create topics in the forum to test forum subscription emails.

    I guess now just check on your Admin/Keymaster email {your admin user email} to see if any of them sent.

    This is just troubleshooting to see if you can even get 1 subscription email, either topic or forum subscription emails using bbPress by default without any new plugins.

    If it works without any plugins we can go from there.

    IF it doesn’t we need to find a plugin/theme/custom code snippet that might be causing an issue.

    Also in the future the larger your forums grow and if you allow both subscription emails for every mod and keymaster in your forum, you will need to consider using smtp and AsynCRONous bbPress Subscriptions.

    #176382
    Robkk
    Moderator

    Follow this. If you theme has a specific way of creating a child theme follow any of their own guides.

    https://codex.wordpress.org/Child_Themes

    The categories and topics are all weird. I just wish it looked standard like every other major forum out there.

    It may be how the default category and forum layout bbPress uses. Maybe consider using this loop-forums.php file in a child theme.

    https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout

    #176368
    @mercime
    Moderator

    @earl_d I made a tutorial for BuddyPress which you could adjust for the bbPress version. e.g. in the B. Full-width Layout section, instead of creating buddypress.php, create bbpress.php at the root of your theme’s folder. Good luck.

    Twenty Twelve Theme

    #176344
    abuosama36
    Participant

    I reper this proplam:

    Hey,

    It’s pretty simple, install User Role Editor plugin into your WP. Then visit plugin and reset all user roles to default and it’ll work…I had same problem but now it’s working..

    Thanks

    and

    Never mind I just fixed it. In case anybody else experiences this problem, here is what I did:
    (back up database first)
    1) deactivate BBPress
    2) install User Role Editor
    3) Click the red Reset button which will reset all roles to WP defaults
    4) Re-activate BBPress.

    thx

    Dan
    Participant

    @shoelje this worked great for me. Thank you!
    I made a few small tweaks that will make the next person’s set that much easier.

    
    <?php
    include "../wp-config.php";
    
      // If all else fails, use this url.
      $defaulturl = "http://your_domain_goes_here/forums/";
    
      // Build the query according to url parameters p or t.
      $query = '';
      if (!empty($_GET['p'])) {
          $query = "SELECT {$table_prefix}posts.guid FROM {$table_prefix}postmeta
                    INNER JOIN {$table_prefix}posts ON {$table_prefix}posts.ID = {$table_prefix}postmeta.post_id
                    WHERE {$table_prefix}postmeta.meta_key = '_bbp_old_reply_id'
                    AND {$table_prefix}postmeta.meta_value = '" . $_GET['p'] . "';";
      }else if (!empty($_GET['t'])) {
          $query = "SELECT {$table_prefix}posts.guid FROM {$table_prefix}postmeta
                    INNER JOIN {$table_prefix}posts ON {$table_prefix}posts.ID = {$table_prefix}postmeta.post_id
                    WHERE {$table_prefix}postmeta.meta_key = '_bbp_old_topic_id'
                    AND {$table_prefix}postmeta.meta_value = '" . $_GET['t'] . "';";
      }
    
      // Set the new url to the default url
      $url = $defaulturl;
    
      // Check if we need to make a database connection.
      if (!empty($query)) {
        //echo "connecting...<br>";
        // Make a connection
        $mysqli = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME) or die("mysqli connect error: "+mysqli_connect_error());
    
        // Check the connection.
        if (!mysqli_connect_errno()) {
          // Run the query.
          //echo $query."<br>";
          $result = mysqli_query($mysqli,$query) or die("mysqli query error: ".mysql_error($mysqli));
    
          // Get the new URL.
          if ($result) {
            $row = $result->fetch_array(MYSQLI_ASSOC);
            $guid = trim($row["guid"]);
            if (!empty($guid)) {
              $url = $guid;
            }
          }
    
          // Free the result set.
          $result->free();
    
          // Close the connection.
          mysqli_close($mysqli);
        }
      }
    
      //var_dump($url);
    
      // Write the header.
      header("Location: " . $url, true, 301);
    ?>
    
    snowcrash101
    Participant

    Hello

    I’m using buddypress with bbpress. When a buddypress group creates it’s own group forum, it is created automatically with a default forum order of 0. This results the group forum to placed near the top of the main forum list.

    Is it possible to specify the forum order when a group forum is created? And is it possible to to automatically create the forum as a sub-forum, so it doesn’t mess up the layout/order of the main forum list? Say for example I have 3 main forums:
    – Announcements
    – General
    – Projects

    I would like it when a buddypress group creates its own forum, it is located as sub-forum within Projects.

    Thanks for any help

    #176149
    matilda4
    Participant

    Hello Support Forum
    I have a displaying issue I couldn’t find the issue until now and was wondering if someone experienced similar or has a hint what could resolve it.

    Issue:
    We setup several forums, which are accessible only with corresponding membership (using plugins, see below). Under each forum we created one topic only so far. When accessing a specific forum (example qigong and meditation as per the link below) it lists all topics; even the ones from the different forums. As per my understanding it should only display the topics of that specific forum.

    Theme is Newstube, but I changed it to the wordpress latest default theme (twenty sixteen) and the issue persists. I have also deactivated all but the bbpress plugins and the issue persists.

    Wordpress: 4.5.3
    BBpress: 2.5.9

    Is installed in combination with iThemes Exchange / Membership and Membership bb press add-on.

    Website: Redacted

    Under menu “account”, login. Test user we setup is (since only members can access the forum):
    User: Redacted
    PW: Redacted

    Am I overlooking something simple and obvious, or what could the issue be? Any help is very much appreciated.

    Thank you.
    Matilda

    #176140
    darkoned12000
    Participant

    Just to describe my process in this trial run I am doing with the import of IPB 3.47 to bbpress 2.6a:

    – Install latest version of WP
    – Download and install latest version of bbpress
    – Open ‘Tool -> Forums -> Import Forums’
    – Selected ‘Invision’ and put in all my database info. I did set ‘Table Prefix’ to ‘ipb_’ since all of my tables in my ipboard setup start with ‘ibp_’
    – Row Limit and Time Delay (set to default), Convert Users is checked and nothing else is checked and I clicked ‘Start’

    Here is a listing of the sql code executed, I only listed items that there was something done, ‘no conversions’ for items are not listed:

    Code for convert Forum:
    <p class="" title="SELECT convert(forums.id USING &quot;utf8mb4&quot;) AS id,convert(forums.parent_id USING &quot;utf8mb4&quot;) AS parent_id,convert(forums.topics USING &quot;utf8mb4&quot;) AS topics,convert(forums.posts USING &quot;utf8mb4&quot;) AS posts,convert(forums.name USING &quot;utf8mb4&quot;) AS name,convert(forums.name_seo USING &quot;utf8mb4&quot;) AS name_seo,convert(forums.description USING &quot;utf8mb4&quot;) AS description,convert(forums.position USING &quot;utf8mb4&quot;) AS position FROM ipb_forums AS forums LIMIT 100, 100">Converting forums (100 - 199)</p>

    Code for Forum Heirarchy:
    <p class="" title="SELECT post_id AS value_id, meta_value FROM wp_postmeta WHERE meta_key = &quot;_bbp_old_forum_parent_id&quot; AND meta_value > 0 LIMIT 0, 100">Calculating forum hierarchy (0 - 99)</p>

    Code for Topics:
    <p class="loading" title="SELECT convert(topics.tid USING &quot;utf8mb4&quot;) AS tid,convert(topics.posts USING &quot;utf8mb4&quot;) AS posts,convert(topics.forum_id USING &quot;utf8mb4&quot;) AS forum_id,convert(topics.starter_id USING &quot;utf8mb4&quot;) AS starter_id,convert(posts.post USING &quot;utf8mb4&quot;) AS post,convert(topics.title USING &quot;utf8mb4&quot;) AS title,convert(topics.pinned USING &quot;utf8mb4&quot;) AS pinned,convert(topics.start_date USING &quot;utf8mb4&quot;) AS start_date,convert(topics.last_post USING &quot;utf8mb4&quot;) AS last_post FROM ipb_topics AS topics INNER JOIN ipb_posts AS posts ON(topics.tid = posts.topic_id) WHERE posts.new_topic = 1 LIMIT 1100, 100">Converting topics (1100 - 1199)</p>

    Code for Topic Stickies:
    <p class="" title="SELECT post_id AS value_id, meta_value FROM wp_postmeta WHERE meta_key = &quot;_bbp_old_sticky_status_id&quot; AND meta_value = &quot;sticky&quot; LIMIT 0, 100">Calculating topic stickies (0 - 99)</p>

    Code for Topic Tags:
    <p class="" title="SELECT convert(core_tags.tag_meta_id USING &quot;utf8mb4&quot;) AS tag_meta_id,convert(core_tags.tag_text USING &quot;utf8mb4&quot;) AS tag_text FROM ipb_core_tags AS core_tags LIMIT 1800, 100">Converting topic tags (1800 - 1899)</p>

    Code for Replies:
    <p class="" title="SELECT convert(posts.pid USING &quot;utf8mb4&quot;) AS pid,convert(posts.topic_id USING &quot;utf8mb4&quot;) AS topic_id,convert(posts.ip_address USING &quot;utf8mb4&quot;) AS ip_address,convert(posts.author_id USING &quot;utf8mb4&quot;) AS author_id,convert(posts.post USING &quot;utf8mb4&quot;) AS post,convert(posts.post_date USING &quot;utf8mb4&quot;) AS post_date,convert(posts.edit_time USING &quot;utf8mb4&quot;) AS edit_time FROM ipb_posts AS posts LIMIT 400, 100">Converting replies (400 - 499)</p>

    Conversion Complete
    Warning: ini_set() has been disabled for security reasons in /home/darkone/public_html/wp/wp-content/plugins/bbpress/includes/admin/converter.php on line 319

    <Script started over again with ‘Converting Fourms’

    #176135
    darkoned12000
    Participant

    Hello Everyone

    I just recently installed bbpress 2.6 alpha build because I heard there was some more improvements to the database importer. I was trying a test run of converting my IPB v3.47 forums to bbpress 2.6a and I put in all of the info into the script and it looks like it was working and I went away for a few hours and came back and it was still running. I thought this was odd because the forums/users are not abnormally large.

    I opened up the forums link inside the WP admin and noticed that it had created several duplicates of each forum area and replicated posts more than once. It’s almost like it didn’t know it finished and restarted the process all over.

    Is there any logs or debugging that I can turn on that would provide help into troubleshooting this issue as to why the importer never stops processing? If there is mods installed on IPB could this mess with the importer at all?

    I did find an error_log file and here is some of the issues I saw in it:

    [03-Jul-2016 17:18:48 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/darkone/public_html/wp/wp-content/plugins/bbpress/includes/admin/converter.php on line 319
    [03-Jul-2016 17:18:48 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/darkone/public_html/wp/wp-content/plugins/bbpress/includes/admin/converter.php on line 320

    [02-Jul-2016 17:10:39 UTC] WordPress database error Specified key was too long; max key length is 1000 bytes for query CREATE TABLE wp_bbp_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(255) null,
    meta_value varchar(255) null,
    PRIMARY KEY (meta_id),
    KEY value_id (value_id),
    KEY meta_join (meta_key, meta_value) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci made by do_action(‘wp_ajax_bbconverter_process’), call_user_func_array, BBP_Converter->process_callback, BBP_Converter->sync_table, dbDelta

    Any help is appreciated, thanks.

    #176121
    SignalWarrant
    Participant

    Forum Root Slug – forums
    Single Forum Slug – PCSCalc
    Dynamic forum page – http://www.pcscalculator.com/Forum/
    My custom page – http://www.pcscalculator.com/forum/
    If you look at my custom page, can someone tell me how to unscrew the breadcrumbs? The bbpress breadcrumbs link back to the default dynamic page.
    Anyone have any ideas?

    #176089
    Robkk
    Moderator

    I dont get this logic, despite if it is only WP logic, not bbPress one.
    Maybe I missunderstool it all. New Users (Roles = Subscriber, Participant) have access to add new Posts, and attach them to taxonomies.

    Forum Users are forum USers, not Portal editors of Articles.


    @stagger-lee
    you may need to track back and look at any custom code you may have and see if any is granting users specific permissions that would grant your users to be able to do this. Of course your new forum users shouldn’t be able to do this by default. Regular subscribers/participants should only be able to edit their profile usually.

    #176080
    Robkk
    Moderator

    I couldn’t get it to see anything I put in my child theme, because it is accessed through plugins, not themes. I know I’ll have to update the file again manually as soon as I update bbPress.

    You don’t need to change anything in bbPress to do this type of thing, just put any template files in a child theme or custom theme package plugin (there is no info on this but this is possible too).

    https://codex.bbpress.org/themes/theme-compatibility/

    Also, that plugin only allows you to add new fields, not display existing ones. Doesn’t it seem odd that you would be prompted to enter data in fields on user profile edit, but then not have any of them show on view? By default the user fields should be available to show, at least standard ones like description, website, and social media profiles.

    This is the only plugin I can think of that might be easy for some users to display content. If you want contact Robin later in the support forum to see if he would add existing fields to it.

    How are some people not caring about this? It just seems so fundamental to me.

    There is a plan to add certain fields to the profile page in the future, mostly default existing fields for now.

    https://bbpress.trac.wordpress.org/ticket/2570

    #176071

    In reply to: Login form problems

    Robkk
    Moderator

    Actually bbPress does not have a “thank you page” instead I think it mostly piggybacks off of the default WordPress registration process and this issue you are talking about seems sort of common, but I think the whole frontend forms bbPress provides are either incomplete functionality or functionality that has broken along the way through upgrades in WordPress or something.

    You do not necessarily have to use the frontend forms anyway, as all your users can just the default WordPress registration forms. Or use another plugin for now for frontend forms like Theme My Login.

    #176058
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

Viewing 25 results - 1,651 through 1,675 (of 6,794 total)
Skip to toolbar