Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 7,776 through 7,800 (of 11,591 total)
  • Author
    Search Results
  • #90188
    Ricardo
    Participant

    i quickly made a crash course on how to use svn (tortoise) to download latest version and it says ir downloaded version 2535 to my pc, tested it locally using wampserver but it says

    bbPress 1.1-alpha-2530 in the admin panel

    do i need to download each file from :

    http://svn.automattic.com/bbpress/trunk/

    to get version 2535?

    #93203
    Ricardo
    Participant

    here’s the screenshot showing the fix + sitemap generator work properly, i tested it by sbmitting it to google

    http://img707.imageshack.us/img707/3936/siteq.jpg

    #93267
    chrishajer
    Participant

    Thanks for the screenshots, those are perfect. There doesn’t seem to be anything weird with the .htaccess or permalinks settings, and it looks like you are accessing the proper directory.

    As the other thread mentioned, there were public HTML files in two locations on the server, and that poster had installed into a directory that was not being served, making it look like the files were not there.

    One thing that is probably unrelated – the forum files have loose permissions. The directories have 775 and they should be 755, and the files (php, css, js, images) should have 644, but they have [edit] 664. Should not matter, but some hosts won’t serve content when the permissions are too permissive.

    Please do a test. Put a html file in the WordPress root (where the forum directory is located) and see if you can access it at http://klinewedding.com/test.html. If that comes up, put another file in the forum directory, and see if you can access that at http://klinewedding.com/forum/test-2.html. That will ensure we are looking at the correct directories. The file can be as simple as this:

    <html><head><title>WordPress test</title></head><body><p>Test WordPress</p></body></html>

    Save that as test.html in the WordPress root. See if you can access it by URL. Then try the same in the forum directory.

    #93263
    chrishajer
    Participant

    bb-lover, I closed your topic because it is WordPress specific and asking _ck_ for help specifically. You should post at wordpress.org or any of the other WordPress-specific help sites, or try contacting _ck_ directly at her site bbshowcase.org.

    Closing this topic because it too has turned WordPress-specific as well.

    #35192
    cyberskier
    Member

    I’m trying to install bbpress at a test site, klinewedding.com.

    – I uncompress the files

    – I then upload the files to my root directory, in a folder “forum” (so the files are at klinewedding.com/forum

    I can’t get any further. When I navigate to http://klinewedding.com/forum, I get a 404 error. It is as if my site isn’t seeing any of the uploaded files.

    Any help is much appreciated.

    Thanks,

    Evan

    #93262
    Ricardo
    Participant

    can’t help you porting it to wordpress but i have a suggestion for you:

    WP-captcha free

    https://wordpress.org/extend/plugins/wp-captcha-free/

    its the one i use and it doesnt require any action from the user.

    its very clever how it works…i’ll try to explain…

    a normal form for comments has 3 fields, all spam bots automatically fill all 3, what this pluggin does is addding a fourth field only visible to spam bots, if the fourth box id filled it automatically means its been made by an automated spam bot and that coment its blocked… at least its how i understand it works but i might be confused with another one.

    Try it, visitors don’t like math problems etc.

    Edit: it seems you want to block spammers from the registration form… don’t know if this pluggin works when a user tries to register.

    #35191
    bb-lover
    Member

    I don’t know why my this topic is closed without any reason.

    @Moderators: Did I say something wrong?


    @_ck_
    I think this plugin is for only comments?

    http://wordpress.org/extend/plugins/math-comment-spam-protection/

    I need simple math captcha plugin for wordpress registration form, like Human Test for bbPress.

    If you are not interested then other developers are welcome here and their help would be appreciated.

    But if someone else wants to convert it they are more than welcome.

    If anyone else want this plugin please ask in this topic.

    I’m hoping this topic will not be closed if any Mod don’t like it.

    Thanks,

    bb-lover

    #35189
    Ricardo
    Participant

    Hi everyone!

    Ive been playing with some forum software/scripts and i would like to ask the bbpress/wordpress coummunity some questions/opinions on this.

    I’ve tested bbpress and so far i can see its a very lightweight forum system, it integrates nicely with wordpress, it doesnt have many functions the competition has but in my opinion most of them are really not needed and make the forum heavy on server resources.

    Having said this here’s the questions?

    1- Spammers – How’s the protection/management on this, is there a way of bulk deleting spammers or keeping them “at bay”?

    2- Translation – i’ve been trying to translate bbpress but the info on how to do it is mostly wordpress as the process is very similar…so i looked in to online translation tools but none of them have bbpress as a project…not even Glotpress itself…i know there are desktop tools but for example i tried poedit and i only want to translate what the user sees not the admin panel, but it seems i have to copy every line to the translated section…there isnt a method to copy all strings and then edit the ones i want, i would take me a while doing it one by one and my professional life doesnt allow me, im sure more are interested in this and adding bbpress to glotpress would be a good idea as “everyone” could “chip in”.

    3- search engines – some of the traffic to forums are made by search engines but unlike the competition bbpress doesnt have a method to manage them, the last forum script i tried was mybb and it has a whole section dedicated to bots and their permissions. Can this be overcomed in bbpress with a simple sitemap? the way i see it a sitemap only has urls not the content… if i keep the forum readble to everyone will the sitemap be enough, the way i see it the bot finds the url in the sitemap and then crawls the pages for content, i think this is enough.

    4- Besides bbpress what other forum scripts would you recommend, personnaly mybb and fluxbb caught my eye and seem very lightweight, also i noticed the wp-foum pluggin as been forked into the WP Forum Server, one of the things i like on a forum is the ability to have a name based permalink like wordpress and bbpress, i find this feature very usefull as people can see by the words on the url (hovering mouse above link) what the link is about.

    I know its a lot of questions but any info even if little is apreciated.

    Thanks

    #93125
    zaerl
    Participant

    I have written a plugin that does what you want but isn’t released to the public.

    The code that follow deactivate all HTML tags. Keep in mind that it’s not tested at all.

    <?php
    /*
    Plugin Name: zaerl No HTML
    Plugin URI: http://www.zaerl.com
    Description: no HTML tags in posts
    Author: zaerl
    Author URI: http://www.zaerl.com
    Version: 0.1
    */

    function za_nh_allow_tag($tags)
    {
    return array();
    }

    function za_nh_initialize()
    {
    add_filter('bb_allowed_tags', 'za_nh_allow_tag');
    }

    add_action('bb_init', 'za_nh_initialize');

    ?>

    If you are interested contact me.

    #93196
    _ck_
    Participant

    Don’t take it personally – akismet screws up dozens of posts here each week, seemingly at random. It either doesn’t like your IP or email address or some weird combo of keywords. It’s also probably why you had so much trouble registering.

    At least you spoke up, imagine how many other people have tried to post here and gave up in vain and wrote off bbpress entirely.

    This is why I tell people not to use akismet but human-test/blocklist instead and rely on mods to look for bad posts.

    #88148
    DKB
    Participant

    Hi I installed the latest trunk version now my feed wont show via Buzzboost of feedburner, anyone have a clue?

    #35187
    Ricardo
    Participant

    Hi everyone!

    I´ve just installed bbpress and the nicer permalink pluggin (http://bbpress.org/plugins/topic/nicer-permalinks/), it works but it kind of messes up the sitemap, ive tried 2 sitemap pluggins and same result

    for example the topic url is:

    mydomain/forum/mytopic.html

    but the sitemap url is:

    mydomain/forum//mytopic.html (double // before the individual topic permalink)

    Can anyone tell me if im doing something wrong or check if its the pluggin fault?

    i deactivated the nicer permalink plugin, added a dummy post to refresh the sitemap and voilá the url is correct without “//”, i guess its the pluggin fault here.

    think i might have found something in the nice-filters.php file, altough im no expert it seems the error comes from here, but i think its a fix from someone, so removing the “/” will break something..

    function get_forum_nicer_link( $link ) {

    global $bb;

    // Remove redundant "forum" word from forum link and append '/'. Mandatory! Props: Mohta

    return str_replace( $bb->uri . 'forum/', $bb->uri, $link ) . '/';

    heres my forum (test) url: http://www.ricardouk.com/forums/

    and my sitemap url: http://www.ricardouk.com/forums/sitemap.xml

    Thank you

    Original post started here: (someone should take a look at the registrations here as i’ve been unable to register, so far i tried 3 times until CK told me i could use the wordpress.org forums account over here)

    http://bbshowcase.org/forums/topic/nicer-permalinks-plugins-messes-up-the-forum-sitemap

    #93193
    _ck_
    Participant

    I probably won’t be working on WordPress anymore, at least I hope.

    But if someone else wants to convert it they are more than welcome.

    I find it hard to believe with the dozens of captcha plugins for WP, none can satisfy you. How about this one?

    https://wordpress.org/extend/plugins/math-comment-spam-protection/

    #35186
    bb-lover
    Member

    Hi _ck_

    I hope you’ll be fine. I always praise your work that’s why I was really happy when you came back to bbPress.

    I know this question is not related to bbPress. But I need your co-operate.

    I am looking the Simple Math Captcha Plugin for My WordPress.

    Yes there are lot of captcha plugins, like Sabre, Register Plus.

    But they are really complicated. I need simple solution, like Human Test for bbPress.

    Humble Request: Can You please convert this plugin for WordPress.

    I hope, Once again you’ll give me a chance to praise your work.

    Thanks, and God Bless You Always and All The Ways.

    bb-Lover

    #35160
    Erlend
    Participant

    Will the new bbPress be able to support co-authors?

    Apparently this here is the most commonly used co-authoring plugin, and it reportedly works with 3.0. I’ll test it myself soon.

    http://wordpress.org/extend/plugins/co-authors-plus/

    #35173

    I am wondering how I can show on topic.php the latest discussions from within the same forum that the current topic is in.

    A sure it should be pretty simple but i cant seem to get it to work.

    For instance here:

    http://airportroute.com/test/forum/topic/simon-latham-august-10-11

    I want to show the 3 other discussions that are at this point in the Mixes forum.

    (this is all still in deep Beta testing)

    I guess the secret must lie in this line:

    ´<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>´

    Any ideas?

    Thanks

    #92251
    minervaa
    Participant

    Hey CK, thanks again. I activated all of the “views” related plugins just to make it work.

    The “Forum” section views is working and showing the total number of views but if I click on the “Forums” it brings the list of discussions but again the views column are empty.

    I am quite confused as the list of the discussions are showing the views on the Latest Discussions list but when seeing them under “Forum” name none of them are showing the view counts

    Is there any other plugins I shall be using?

    #92249
    minervaa
    Participant

    Hi CK,

    As you advised, I newly installed the forum and template in another server. After activating your plugin “bb Topic Views” the view count on the latest disccusions is working, but it is not working on “Forum names” section. It just shows an empty column.

    Any idea why it’s not working on that part?

    Thanks

    #35147
    ph23man
    Member

    I’m using bbPress 1.1-alpha-2518 and there seems to be something broken with the drag-and-drop interface for forum ordering.

    I have 3 forum levels, the top level and 2 nested levels. When trying to order the forums, I can drag and move the top level forums and 3rd level forums. But the 2nd level forums won’t budge.

    I tested this in all major browsers with the same result.

    Maybe upgrading to jQuery 1.4 broke something in the script that handles forum sorting?

    #69824
    andrusch
    Member

    Hi, I’ve made some tests and I have seen that the topics are not loading (links not working) when the permalinks are set to be name based.

    #92848

    In reply to: Where is the plugin..?

    Rich Pedley
    Member

    It is still in the process of being developed, you can keep an eye on the progress here. Though I think when it is near to be being ready for a few people to test it it might be added to the plugin repository over on WordPress.org.

    The last estimate was that it might be ready for some initial tests in a month – but don’t expect a full release for several months as yet.

    #35095
    slee
    Member

    I have just started using bbpress and I would like the theme to look like the main wordpress theme ie use the header and footer. I came across themepress but when i installed it i get:

    Fatal error: Call to undefined function get_header() in /forums/bb-templates/ThemePress/front-page.php on line 1

    I am using the latest version of bbpress and wordpress ie wp 3.0.1 and bb 1.0.2

    is there a better way to integrate the theme?

    #92863
    brucini
    Member

    sorry didn’t see this

    Possible to make certian forums not appear in latest discussion?

    the core bit of info posted in this thread below. this worked fine for me with BBPress 1.0.2:

    Just edit it to exclude whatever forum numbers you want and add it to the plug-ins folder.

    <?php
    /*
    Plugin Name: exclude
    */
    function filter_front_page_topics($where){
    $exclude_forums=array ("13","19"); // enable this to manually specify specific forums by id #
    // $forums = get_forums(); foreach ($forums as $forum) {if ($forum->forum_parent) {$exclude_forums[]=$forum->forum_id;}} // exclude ALL sub-forums
    if ( is_front() ) {foreach($exclude_forums as $forum) { $where.=" AND forum_id != ".$forum." "; }}
    return $where;
    }
    add_filter( 'get_latest_topics_where', 'filter_front_page_topics');
    add_filter( 'get_latest_posts_where', 'filter_front_page_topics');
    ?>

    brucini
    Member

    hi,

    I’m not using a latest discussion plugin, but want to prevent posts in a specific forum from showing in the latest discussions.

    how can I do this?

    cheers

    b

    kaihsynliu
    Member

    This is my first try to translation.

    Have tested on my own install of bbPress for couple times.

    How do I submit it to the bbPress?(Can I?)

    Sincerely.

Viewing 25 results - 7,776 through 7,800 (of 11,591 total)
Skip to toolbar