Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 3,901 through 3,925 (of 11,584 total)
  • Author
    Search Results
  • #157676

    In reply to: PLEASE HELP!

    Seo45
    Participant

    http://thevrlife.com/community/

    Basically, I made a bunch of changes, and for some reason, the changes won’t go back when I delete the changes. The worse part (and I have no clue how this happens) is that when you click on the “test forum,” the background to the whole site gets darker randomly. I have no clue how it did this, and after changing everything back to how it was before, it still does it.

    #157667
    peter-hamilton
    Participant

    Hi Lynqoid

    Yes, the landing page is very much a work in progress.

    It is also the page where I am testing my @media queries on so lots of CSS problems.

    If I knew how XAMPP worked I would develop sites local first, but I am a total noob and have chosen to build whilst live.

    Every page is still under construction, but I aim to finish before the end of February.

    I am adding a few more functionalities, like member blogs, and as soon as they all work as expected I can finalize the CSS.

    Thanks for the response.

    P.H.

    #157656
    Martyn Chamberlin
    Participant

    Hi,

    When a user creates an account at http://thewritepractice.com/index.php?/register/JUZsw5 and then goes to the bbPress forum at http://thewritepractice.com/bw and posts a topic, there is an Edit link at the bottom of that topic. But when they click that link, they get this error message:

    You are not allowed to edit this item.

    A few notes:

    1. I’m on the latest version of WordPress.
    2. This problem persists when all plugins but bbPress is activated.
    3. This problem persists when the 2015 theme is activated.

    I installed and activated the bbPress Advanced Capabilities plugin and learned that if I enabled “Edit others topics” for Participants, the participant could then edit their topic.

    So in other words, bbPress thinks that the topic is being created by someone other than themselves.

    Any ideas how this could be the case? It’s very strange…

    Thanks!

    #157643

    In reply to: Searching

    Robin W
    Moderator

    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 twentytwelve, and see if this fixes.

    Then come back

    #157635
    Robin W
    Moderator

    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 twentytwelve, and see if this fixes.

    Then come back

    #157623
    andreippo
    Participant

    @Killerrabbit2

    I did contact Robin, his response:

    “The only fixes (http://www.rewweb.co.uk/reply-subscribed/

    http://www.rewweb.co.uk/topic-subscribe/) I have are the ones in the original email.

    If emails are coming from wordpress, then they should be ok from bbpress.

    Do you have any plugins that could be causing conflict, or maybe your theme.

    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 twentytwelve, and see if this fixes.”

    Did anyone solve this?

    #157572
    Stagger Lee
    Participant

    This seems to work, just tested. Adjust after need.
    Limit user upload by KB size:

    add_filter('wp_handle_upload_prefilter', 'f711_image_size_prevent');
    function f711_image_size_prevent($file) {
    
        // get filesize of upload
        $size = $file['size'];
        $size = $size / 1024; // Calculate down to KB
    
        // get imagetype of upload
        $type = $file['type'];
        $is_image = strpos($type, 'image');
    
        // set sizelimit
        $limit = 700; // Your Filesize in KB
    
        // set imagelimit
        $imagelimit = 7;
    
        // set allowed imagetype
        $imagetype = 'image/jpeg';
    
        // query how many images the current user already uploaded
        global $current_user;
        $args = array(
            'orderby'         => 'post_date',
            'order'           => 'DESC',
            'numberposts'     => -1,
            'post_type'       => 'attachment',
            'author'          => $current_user->ID,
        );
        $attachmentsbyuser = get_posts( $args );
    
        if ( ( $size > $limit ) && ($is_image !== false) ) { // check if the image is small enough
            $file['error'] = 'Image files must be smaller than '.$limit.'KB';
        } elseif ( $type != $imagetype ) { // check if image type is allowed
            $file['error'] = 'Image must be ' . $imagetype . '.';
        } elseif ( count( $attachmentsbyuser ) >= $imagelimit ) { // check if the user has exceeded the image limit
            $file['error'] = 'Image limit of ' . $imagelimit . ' is exceeded for this user.';
        }
        return $file;
    
    }
    #157562
    Robin W
    Moderator

    just tested and

    add_filter( 'bbp_get_author_link', 'remove_author_links', 10, 2);
    add_filter( 'bbp_get_reply_author_link', 'remove_author_links', 10, 2);
    add_filter( 'bbp_get_topic_author_link', 'remove_author_links', 10, 2);
    function remove_author_links($author_link, $args) {
    	$author_link = preg_replace(array('{<a[^>]*>}','{}'), array(" "), $author_link);
    	return $author_link;
     }
     
    
    add_filter ('bbp_before_get_author_link_parse_args' , 'rew_remove_avatar' ) ;
    add_filter ('bbp_before_get_reply_author_link_parse_args' , 'rew_remove_avatar' ) ;
    add_filter ('bbp_before_get_topic_author_link_parse_args' , 'rew_remove_avatar' ) ;
    function rew_remove_avatar ($args) {
    	$args['type'] = 'name' ;
    	return $args ;
    }
    
    

    seems to do what is required

    #157553
    Lynqoid
    Participant

    If you have done the following:
    – disable ALL plugins one by one (not just ones you think could be causing it)
    – activated a default theme
    – used the repair tools
    – re-saved permalinks

    And it’s still broken, then the only next thing you can do is create a local installation of bbPress and test the reverse way, test it’s working, add your theme, test it’s working, add one plugin and keep going till it breaks.

    Good luck with your site.

    #157533
    Robin W
    Moderator

    ok, you’re stating stuff that I’m finding hard to visualise/understand, and adding further info which again is not clear.

    It’s not that you are not trying to explain, it’s just that as I can’t see your site, and issues with themes, plugins, and servers can be many and varied, there’s not a quick ‘do this’ answer.

    de-installing and re-installing rarely fixes 🙂

    So as I can’t see your site to start with lets eliminate theme and plugins

    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 twentytwelve, and see if this fixes.

    Come back with the results – If that finds a fault it doesn’t mean you can’t use that theme or that plugin, just that we know where the issue is.

    If that doesn’t fix try

    Dashboard>settings>permalinks and just click save – you don’t need to change anything – that just re-sets the links and sometimes fixes issues.

    If not then also let us know your forums slug dashboard>settings>forums and look for the forums root slug.

    Also let us know your permalink setting Dashboard>settings>permalinks

    MyNation
    Participant

    For years i have been using bbpress 1.0.3 and its works fine but now search engines creating error and mobile users are not able to browse. so i wanted to Import to latest bbpress forum plugin 2.5.4.

    i went through step by step guide;
    created new site (subdomain)
    added plugin bbpress 2.5.4
    setting as per guide
    setup theme
    created test forum
    and when i went to import from old…. NOTHING IS IMPORTED.

    PLEASE let me know where i went wrong or missing something.

    #157490
    YardenSade
    Participant

    Hello guys,
    I tried to search for this topic for some time, and I found a lot of answers but non of them was on the point for my simple yet maybe difficult task.
    My client needs the forum to be visible only for users/some users.
    Basically only the users should be able to see the forums while others won’t even know it exist.

    Can someone please help me with on the point solution, and if non exist I would have to use some bypass, maybe even make my own php code – which I rather avoid.

    Thanks for reading and helping!
    Techical: using 4.1 WP and latest bbpress.

    #157471
    Rameshpardhi
    Participant

    Wordpress Version: 4.1
    Latest bbpress version
    website: http://www.gizmoids.com

    I want to show my forum topics as post on my website. Not all, jest some of them which I will choose.
    Can I do this with bbpress? how?

    If it is not possible can you tell me how to use default taxonomy (categories) with forum? I want to store some topics in these default WordPress category.

    Thank You

    #157470
    Steve
    Participant

    Hi,

    When I receive an email notification, if I’m logged in and I click the link it takes me directly to the thread/post in question.

    However if I’m not logged in I simply get:

    Sorry, the page your requested could not be found, or no longer exists.

    Running WordPress 4.1 and bbpress 2.5.4

    I have tested with the bundled themes and the issue persists.

    Cking
    Participant

    Hi,

    I am using Mesocolumn theme as it claims it is bbPress compatible.

    I am having issues with the forum category widget. I have defined 4 categories but none appears in the widget.

    Also, how do I add first-time bbPress registration to my forum page.

    The link to my site is : http://www.ckingsensors.com/ckingforums/

    I am using WP 4.1 and the latest bbPress version.

    Any help would greatly be appreciated.

    Thanks,
    Jay

    #157409
    arnie2015
    Participant

    Hi all I have the forum installed but I wish to include widgets to the right of it such as forum lists, latest posts etc
    but my forum is the full width of my site, can anybody help me please.
    I have no idea of coding or anything please can somebody help me as my forum looks ruubish and plain

    #157369
    Stagger Lee
    Participant

    Yes, so it is vith github and updates. I had some old code, testing something on my old website. Noticed on github changes for GD Attachments.
    Now it works very nice.

    Put this plugin in WP repository. It is very unique.

    #157342

    In reply to: Importing from Xenforo

    bazaarocommunity
    Participant

    Disregard, I have discovered the issue. I was attempting to do a migration test run by importing the content to a local machine. The problem was that the host IP called out in my config file is a ServiceNet IP which my local machine doesn’t have access to. Using the public address wouldn’t work either because that is not what XenForo uses. So, I instead took the plunge and began migration from one of my network servers to the other, using the ServiceNet IP and was successful. Import appears to be working fine.

    #157341
    bazaarocommunity
    Participant

    I’ve installed the latest version of bbpress and WordPress, and am attempting to migrate my forum from XenForo using the built in migration tool. I am receiving the following:
    No reply_to parents to convert
    No replies to convert
    No tags to convert
    No super stickies to stick
    No stickies to stick
    No topics to convert
    No forum parents to convert
    No forums to convert
    No passwords to clear
    No users to convert
    I’ve used my config.php file from XenForo to obtain the host, username, password, and dbname. I also used the prefix ‘xf_’.

    Any ideas?

    #157329
    stmux
    Participant

    The “Edit” link is there in every post. For the test I just did the link takes me to the following address:

    http://www.spatialhaze.com/wordpress/index.php/forums/topic/freqently-asked-questions/edit/

    And the following error message is what pops up on the screen for every post I try to edit:

    Not FoundIt looks like nothing was found at this location. Maybe try a search?

    It’s like the the edit link is pointing to a place with no data.

    I will go through the links you provided to see if there is something I missed. BTW, I have removed and reinstalled the bbPress plugin twice with the same results.
    Thanks,
    mux

    #157321
    Robkk
    Moderator

    @stagger-lee

    I this sentence i said you can do much with only CSS and styling. To “sell” bbPress to WP beginners.

    WordPress has its own “demo” websites, all those nice and fancy themes around web. BbPress has it not.

    this is the featured sites section on here bbpress.org/about/examples/

    and maybe this site should show any heavily designed WordPress themes integrated with bbPress in the themes section of this site?? the section isn’t really being used anymore ,but it could be a cool place to show off cool themes. i think that would have to wait for the bbpress theme tag though??

    There is a reason why WP holds so much of web, and bbPress is not in this league.

    well ones a cms/blogging software and the other is a forum software.

    alot of people would want to create a blog over a forum , a forum requires alot more responsibility to take of and handle.


    @robin-w

    I’m working on one now that adds some styling changes (the common ones asked for)

    if you need anybody to test it out you can email me it if you want to.

    Contact

    #157303
    Stagger Lee
    Participant

    I am not saying all this because of me. I have now so many (tested) snippets and tweaks i can make bbPress more advanced than phpBB3 forum. I am thankfull to core guys, and I am not complaining.

    Integration (affinity better to say) with WP core is so amazing it just blow minds.

    I am saying this because of core coders guys. It is pitty lose hours, days, weeks and last nobody or very few people use bbPress.

    #157286
    Sterke-Jerke
    Participant

    Hi,

    I have latest version of BBpress, Buddypress and Tapatalk running.
    All seems to be working fine. But…
    I use the Buddypress groups to limit users access to certain forums. This works OK with the Web Ui.
    If you are not a member, buddypress shows that you can ask access….

    Only problem I am facing is: tapatalk does not respect all these settings, It is able to post and retrieve forum posts, even if the users are not members of the groups.
    Doesn’t matter if I make the forum hidden or private.

    I hope I am on the rigjt place. Perhaps I should post this in the Buddypress support part …

    Thx

    #157284
    Stagger Lee
    Participant

    First, for a whole week now I am collecting, testing, verifiyng snippets around the web, most from this forum, and make my own collection. To have it all on one place on localhost. Stop making it, it never ends. 🙂 bbPress is so, so, so manageable and easy to add all functions other forum software have.

    Second, you won hearts of coders and developers. What about WP/bbPress beginners ?
    As you already lose your time coding make some new theme for this support forum. To make it as demo for bbPress, to make it shine and stick out.

    There is a reason why WP holds so much of web, and bbPress is not in this league.
    Dont get me wrong, I read your topic about complicating things and rised support with new functions/options. I am talking about plain old CSS2/CSS3. No database queries, and you “sell” your product/code.

    So, thanks and apologies if I offended someone.

    #157257
    Stagger Lee
    Participant

    Old topic but if it can help someone. Code is tested and still works, just formatting of code on this forum is wrong.

    add_filter('bbp_current_author_ip', 'my_anonymize_ip');
    
    function my_anonymize_ip($retval) {
    $retval = '0.0.0.0';
    return $retval;
    }
Viewing 25 results - 3,901 through 3,925 (of 11,584 total)
Skip to toolbar