Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 11,026 through 11,050 (of 11,523 total)
  • Author
    Search Results
  • #56061
    Trent Adams
    Member

    I don’t think it was designed for ‘undelete’ on tags. I haven’t test this myself, but there is a utility in the admin to delete tags on posts that don’t exist, so I was under the assumption that the tags stay even if the post is deleted. I have some time tonight and will test this further myself. If it deletes the tags with the recent TRAC version, then I can file a ticket for you.

    Trent

    #56045
    Trent Adams
    Member

    I am over my head when combining WP and bbPress functions and know next to nothing with Ajax. Hopefully mdawaffe (Michael) will see this post or head over to https://bbpress.org/about/development/ and see if you can contact him another way!

    Trent

    #56039

    In reply to: Tags not found

    Trent Adams
    Member

    If you changed from 1.3 to 2.2 in Apache and it worked before the upgrade, it must have something in there that it doesn’t like with the Mod Rewrite handling. I am not sure myself, but I would change my .htaccess in the bbPress root folder of http://www.canadianbookclubs.com/forums/ to have only:

    Options +MultiViews

    Nothing else. Try it in that and in your http://www.canadianbookclubs.com/bkrv/ test run with the new version as well. Either way, it should work for one of them. That works best with most servers I have used and they are using Apache 2+. Try that out maybe and if not, take Fel64’s suggestion and put the contents of what is outputted by: /bb-admin/rewrite-rules.php

    Trent

    #55640

    In reply to: What’s integration?

    Trent Adams
    Member

    If you change the config.php to have the correct information for WP and then login using a user from WP, it will start to use the users out of the wp_users versus bb_users table. I tested this back with 0.74 and it worked, so I can’t see why it would not do this with the newest version, but it is worth a go to prove it. The biggest thing is copying the information from bb_usermeta to wp_usermeta for the keymaster, admin, mods, ect because that is where the information on the user will ‘now’ need to be from that table. If I try this again in the next day or so, I can try and post up some kind of FAQ.

    Trent

    #1620
    c00l2sv
    Member

    Currently i’m trying to develop something using wordpress & bbpress.

    Everything flows pretty good when talking on functionality and the rest of features, but there is a problem.

    Actually 2 problems. First I already posted here: http://bbpress.org/forums/topic/867

    And now the second one:

    The final release has to be in another language but english. It’s true, I found no troubles translating bbpress in my language and the rest of updated wordpress. But after what I’ve integrated both of api’s: the wordpress and bbpress; this resulted in the following error:

    Fatal error: Cannot redeclare class streamreader in /var/www/pm/forum/bb-includes/streams.php on line 26

    I suppose it’s because of the translations, cause when I did not defined BBLANG, everything worked well.

    After a bit I thought, that a solution for my problem can be joining both of the bbpress and wordpress translation .mo’s and defining just WPLANG for my language settings. That worked, but I dont see this as a pretty simple and accessible solution for everybody!

    I would be glad getting some help on that, If there is any other more easier solution, that would be cool.

    #56067

    In reply to: Spoiler plugin?

    fel64
    Member

    If Trent’s theory is correct (and it sounds good) I think the best thing for you to do is to plonk that javascript reference in a plugin (that’s certainly the neatest thing). This is probably the code you need.

    <?php
    /*
    Plugin Name: Javascript Spoilers
    Plugin URI: [Enhanced SS page]
    Description: Makes little javascript buttons to show and hide text in spoiler tags. A port of a WP plugin.
    Author: [Author of Enhanced SS]
    Version: 0.1
    Author URI: [Author of Enhanced SS homepage]
    */

    function ess_addjs()
    {
    $plugin_uri = bb_get_option('uri') . str_replace(BBPATH, '', BBPLUGINDIR);
    $js_uri = $plugin_uri . 'enhancedss.js';
    echo '<script type="text/javascript" src="' . $js_uri . '" />' . "n";
    }

    add_action('bb_head', ''ess_addjs);
    ?>

    You will have to modify the javascript filename from enhancedss.js to whatever it’s actually called.

    Copy and paste all that into a plain-text file, call it something.php and upload it to your plugins folder. Also upload the enhancedss.js file to that folder.

    Almost all that code was totally ripped off from Sam Bauer’s Page links plugin. :)

    #55922

    In reply to: Show off your Forum !!

    Trent Adams
    Member

    I went back to my roots and changed from my “onvertigo – binary moon” theme back to my trentadams.ca theme! I attempt to use every single plugin I find as I usually test them out on my forum! I always run the most recent TRAC version!

    http://onvertigo.com

    Trent

    #55875

    In reply to: links to forums broken

    Trent Adams
    Member

    Bedbugger, kannued found out that an upgraded apache server caused the permalinks problem for them and the default theme worked with permalinks turned off. Could you test that for me?

    Trent

    #56066

    In reply to: Spoiler plugin?

    Trent Adams
    Member

    If you can just put the tags in if you don’t have the ‘visual editor’ turned on for WP and it calls a javascript in the header, it must just parse the page for those tags. Why not test this theory and include the javascript in your theme’s header.php and make a post with the tags you have! It might also need including the other files as well, but I know the anarchy media script works that way. The script called in header.php parses the page for files that end with .mp3, .mov, etc and then creates the flash file around them! Worth a try!

    Trent

    #56024

    In reply to: Tags not found

    Trent Adams
    Member

    First off, do this. In your config.php, turn the mod_rewrite to false and make sure that it works that way. If that works, we can try getting your URL’s working again, just make sure that it is working. If you have phpmyadmin access on your server you can check the bb_posts table to see if the actual posts are there (I am sure they are) as they are showing the topics and the number of posts still. It seems like a permalinks problem and starting by turning them off will be the quickest way to test that.

    Trent

    #55996
    Trent Adams
    Member

    Oh….akismet is in the config.php and it shouldn’t have a number in there, but be false. If the posts are not showing up in Akismet, then they are most likely not being stopped by it…..you are using the plugin for WP to show the lastest bbPress topics then?

    Trent

    #55995
    Trent Adams
    Member

    Strange….could you give me a URL to see this problem in action? Maybe create me as a user if you confine bbPress registration to your WP or give me the URL of your forum? I might be able to test this and see if we can fix it.

    Trent

    #55903
    Trent Adams
    Member

    Brilliant Sam! I will implement this one for sure and test it out!

    Trent

    #1622
    inkington
    Member

    This might be a feature rather than a bug, but anyway:

    I did a long test post with the tag ‘test’, and then clicked “not spam” on the Akismet Spam page. The post then appeared on the site, but the tag was removed. (The tag still appears in the tag cloud, but doesn’t point to anything.)

    I’m guessing Akismet strips tags since they’re an easy target for spam. If so, would it be possible for it to remember the tags for the sake of false positives?

    #56014

    In reply to: Tags not found

    kannued
    Participant

    http://www.canadianbookclubs.com/bkrv/

    If I move to the latest version, I understand there is a problem with the new version finding themes. I have my modified theme files, directly under “my-templates” and not in a sub-directory. So I assume there will be problems. That will take time to fix, and time is not in abundance right now.

    #56013

    In reply to: Tags not found

    chrishajer
    Participant

    I would suggest moving to the latest version.

    But, do you have an example of where this can be experienced? Might help.

    #52815
    Arlo
    Member

    This trick doesn’t work if the latest post is on page 2+…ideas how to get around that?

    #1619
    kannued
    Participant

    One of my viewers emailed me that I have a problem with my tags. My tags appear on the main page. When the mouse hovers, it shows the number of topics, but when it is clicked on, it goes to page not found.

    I know when I first installed with version 71 it worked. But I haven’t tested it as I moved up in versions. I am on version. 75.

    Any suggestions?

    #1614
    stasi
    Member

    Hi..

    I’v installed bbPress correctly (i guess) and intergrated it with WP, and it words fine. The problem is, that the link: http://stasi.se/forum/?new=1

    that comes up, when I push “Add new / Tilføj ny (danish) » “

    The a form should appear (like the one i then buttom), but all that appears is a info “Hello user” edit etc.. no form..

    Someone how know whats wrong, or do you know another link/file that I could redirect the link to, so I will word?

    I’v created a user: testtest pass: 0b28fc

    – so you can try to login at se the faoult with you own eyes..

    I hope someone has a golden solution :)

    //And sorry, that the page is translated to danish

    #56001
    fel64
    Member

    My default is actually http://www.example.com/topic/topicnumber.

    It is possible to have topic-title in the link instead of the number, but you need to be running the very latest version of bbPress from SVN, which is likely to be buggier than the official releases. The Download page has both.

    #55915

    In reply to: Show off your Forum !!

    wittmania
    Member

    http://www.lne97.com/bbpress/

    user name: just a test (note the spaces)

    password: justatest (no spaces)

    This is a WP/BBP installation for my upcoming 10 year class reunion. I originally launched the site as static pages and a phpbb board. However, about a month ago I put WP behind it to manage updates, add payment collection capabilities, and rotating ads. After that I added a bbpress installation, which is integrated with WP. I used the phpbb import plugin, with some minor tweaks, to bring all of the posts and users over from phpbb. I’ve made minor changes here and there to the default template, and I am using most of the available plugins. So far my classmates haven’t had any trouble with anything, and it has been much easier to manage and moderate the boards, especially with MUCH less spam and bogus user registrations than on phpbb.

    Cheers!

    #55994
    zapata
    Member

    oops… sorry forgot to mention version… I’m using 0.8.1 integrated with WP 2.1

    #55914

    In reply to: Show off your Forum !!

    Null
    Member

    http://www.sourceskins.com/bbpress is my area 51 where i test my plugins (bbmenu, bbportal,bbwysiwyg)

    #1616
    zapata
    Member

    My bbpress is exclusively for only authors who write on the attached WP Blog. Recently I found that on the home page of my bbpress, I can see latest posts in threads… which when I click on – go to the thread of the lastest post – scroll down – the latest post isn’t there. I check Akismet filter and the post is not there either.

    I don’t use blocking or bozos for authors. Could someone advise what could be going wrong and how can I rectify them.

    On a seperate note, how can I turn Akismet for bbPress off?

    #53899

    In reply to: Bozo problem

    Arlo
    Member

    None of these tricks work for me. I’m using latest bbPress and fix plugin. Even with a clean install, my keymaster user will randomly become a bozo. I have a either a “1” or ny login name in the profiles bozo field (yes, it’s a field, not a checkbox). Akismet is not enabled.

    Also, there is no “is_bozo” in my usemeta table at all, and sure enough it’s not listed in the admin bozo section.

    Is there a fix for this? It’s a big mess.

Viewing 25 results - 11,026 through 11,050 (of 11,523 total)
Skip to toolbar