Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 25,426 through 25,450 (of 26,836 total)
  • Author
    Search Results
  • statusquo
    Member

    Hi all

    I am interested in moving my forum from Punbb to bbpress as my site is powered by WordPress.

    The only converter that I could get my hands on is the phpbb converter. However I seem to be encountering errors whilst attempting to import phpbb database.

    The converters do not seem to have been updated and are stated to be compatible with the earlier 0.73 release.

    Where can I get (download) earlier releases on bbpress especially version 0.73. I intend to update to the current release as soon as I import all of my posts.

    Thanks in advance.

    #58882

    Thank you for the help! Actually I solved it just now, I had to put

    global $current_user; echo $current_user->ID;

    to get it right!

    #55233

    In reply to: Favourites

    _ck_
    Participant

    Heh, thanks for the compliment but I am completely self-trained and rather unprofessional in my code (translation: I’d make a mess)

    I just seem to have a knack at code, I learn very quickly from examples and can figure out how to apply them. Also, exhaustive hours at hacking pre-2.0 wordpress taught me a lot.

    ps. what “serious” issues – I might have a go… maybe…

    #58881
    _ck_
    Participant

    Just an untested guess on my part but what you want is something like this?

    <a href="/forum/profile.php?id=<? echo $user_ID; ?>">your profile</a>

    #58901
    _ck_
    Participant

    Yeah I’ve already hacked the core code to make it say “Track this topic in your forum favorites” to make it sound different than adding to your bookmarks which every site nags the visitors to do and so they ignore it.

    Too much hacking needed to change the term “favorites” everywhere unfortunately and it was the first thing I sadly had to touch the core for. After hacking up wordpress so much that I cannot easily upgrade it, I swore not to do that on BBpress, especially since it’s so early in alpha/beta

    It’s also going to be a problem eventually that a tracking level is not set for each “favorite”, so now they can only get every topic emailed, or none at all.

    When in doubt, study vbulletin as a model I suggest…

    #56708

    In reply to: Plugin: Avatar Upload

    LMD
    Participant

    @Beaver6813:

    The error sounds like it’s trying to call the add_action() function when either the file containing the function (wp-functions.php) isn’t included for some reason, or the plugin is being called before it has been included.

    I do not know why this might occur, although the fact you are using an integrated WordPress/bbPress combo might be a factor. We really need somebody who knows more about the internals of both system to help.

    Anyway, by commenting out the add_action() function all you have done is prevent the plugin from automatically creating an identicon for newly registered users. So, it’s not such a biggie while trying to solve the problem.

    @_ck_

    Feel free to hack the script however you see fit — I realise I have been rather too strict with the filenames, especially as it is really only a first-stage precaution (the file gets renamed n the server anyway). Also, I believe some browsers add the whole path to the uploaded filename (something I neglected to address).

    A solution I am adding to the next version will be to extract the actual filename from the path before checking.

    $img_name = basename($img['name']);

    Then, the number of necessary characters to allow is greatly reduced. I just prefer to approach it from the other end, block everything except what I explicitly allow. But as I said, feel free to hack it to suit your needs.

    I was completely unaware that you could enter a URL into a file input (“browse”) field? You indicate that it forces Windows to download the file, but I am wondering whether it is a browser specific feature and whether it is supposed to work like that? I would not rely on it.

    The mime-type comes from the uploaded file in $_FILES which, you are right should not be trusted. I’m experimenting with checking whether the uploaded file is areally an image doing something like imagecreatefromjpeg() – obviously using the appropriate function for the reported file extension (so if it’s all wrong/missing/forged an error will result). Alternatively, a simple solution might be to use getimagesize() (just the one function for all types), which I already use later in the code.

    _ck_
    Participant

    I’ve just discovered that any member who registers through BBpress instead of WordPress never gets a Role set (ie. Subscriber) so while they can use the forum, they can do anything on the WordPress part, even though they are logged in.

    #54695
    rbytes
    Member

    Very interesting solution to display latest post from wordpress, i’ll try it!

    #58858
    _ck_
    Participant

    Well with wordpress, the override is right in the code but obviously to leave the bbpress core alone it would have to be a plugin. (Kinda wondering what all these plugins are doing to the supposedly high performance of BBpress).

    I’d like to see admin/mods have zero limits on what they put into their posts. So to write a plugin I need to find out how to check the user level, then figure out what filter to attach it to (probably pre_post)

    #58877
    _ck_
    Participant

    AHA!

    I found a bug. Finally I can contribute.

    WordPress does indeed auto-close tags and has a fantastic routine, the balancetags I mentioned above.

    HOWEVER

    it was copied raw into BBpress and it won’t work by default because it’s looking for an option that will never be set because BBpress doesn’t have it

    function balanceTags($text, $is_comment = 0, $force = false) {

    if ( !$force && get_option(‘use_balanceTags’) == 0 )

    return $text;

    See what I mean? There’s no manually way to set use_balanceTags in BBpress.

    So how do we force the filter on? I know it has to be balanceTags ($text,1,1) to work.

    #58880

    Ok so it won’t type out the code the way I want to here. I did the backsticks thing… But I know someone out there will be able to help me out anyway :)

    #2063

    I’m calling the wp-headers in forum as advised in seamless integration thread. I need to add a link to the forum profile in the header as users get confused when they only see the admin tab for wordpress. I have the loginanywhere script, and need a link to the users profile edit somewhere in this code:

    `echo “<div class=’greeting’>nHej, “; echo $user_identity; echo “! Inställningar | “;

    echo “Logga utn</div>n”;`

    My forum is here: http://www.doublepeace.se/forum/

    #57690

    In reply to: Tags not separating

    Sam Bauers
    Participant

    WordPress uses commas to separate tags, so I wouldn’t expect this to change back to spaces for the 1.0 release.

    Perhaps mdawaffe can chip in on this one?

    #2058
    _ck_
    Participant

    On WordPress, admin can post any content, any html markup regardless of restrictions for visitors.

    I’d like to be able to do that on BBpress?

    #57450

    Ok, so answered my own question in the last post. Just had to go through everything step by step and see what collides and adjust accordingly. No, however, I need help with something else regarding this! I need to add a link to my forum profile edit to my loginanywhere script. It works at the bbpress site but then I switch over to the blog and it says profile_tab_link is an undefined function. Maybe there’s even another way to link to the profile edit? Please help!

    #57583

    In reply to: BB Moderation Hold

    _ck_
    Participant

    Is it possible to make this plugin use the existing wordpress moderated word list? (and optionally the link count limit moderation setting)

    #49620

    In reply to: Emoticons For bbPress?

    _ck_
    Participant

    I’ve now made a smilie plugin here:

    https://bbpress.org/plugins/topic/bb-smilies

    By the way, WordPress’s default smilie detection code and therefore the code converted here in the earlier post are very flawed when it comes to whitespace issues.

    I created a patch awhile back that made it work 99% of the time regardless of spaces before, after or at the end/beginning of a sentence.

    add this function:

    function prepSmilies($string) {return "/(s|^)".quotemeta(trim($string))."(s|$)/";}

    then add this near the start of function convert_smilies:

    $prep_search = array_map('prepSmilies', $wp_smiliessearch);

    then change the $contenst=str_replace line near the end of function covert_smilies:

    $content = preg_replace($prep_search, $wp_smiliesreplace, $content);

    Now if only it was this easy to tweak wp/bb’s search function to be so much more intelligent.

    #2011
    chaoticmess
    Member

    I edited the Karma Fruit theme for wordpress a bit to match the Bbpress theme. They dont look totally alike. There are some slight differences but I think when you look at it you think

    of the Bbpress theme. I loved the Bbpress theme so much I wanted my WordPress to look the same :) . If you want the file changes let me know. Its just a few lines of css to make the difference in the original look for Karma Fruit.

    http://chaoticmess.sittingonair.com/ < — Karma Fruit Theme

    http://chaoticmess.sittingonair.com/forum/ <—- Bbpress Green Theme

    MJ

    #56706

    In reply to: Plugin: Avatar Upload

    beaver6813
    Member

    Hey there, i’ve just installed Avatar Upload and it works brilliantly i must say! However identicon for bb-press as posted by louisedade (created by fel) gives me an unexpected error when i try to activate, running this outside of the plugin centre or whatever you want to call it, it gives:

    Fatal error: Call to undefined function: add_action() in /home/bblocked/public_html/www/forums/my-plugins/identicon.php on line 286

    Inside the plugin centre it just says fatal error :-P

    I have identicon installed on my wordpress blog and bbpress retrieves all functions from wordpress etc etc intergrated bla bla bla :-P Any ideas?

    EDIT: When editing out add_action at the bottom it doesn’t produce any errors… so i don’t know what bbpress’s problem is :-/ anyway of getting it to give more info? “Fatal Error” doesn’t explain much lol

    #58821
    _ck_
    Participant

    Aha!

    I thought the hash value was unique for each user.

    Apparently it’s unique for each blog.

    so

    $bb->usercookie = ‘wordpressuser_full.hash.number”;

    $bb->passcookie = ‘wordpresspass_full.hash.number”;

    Did the trick in config.php

    Since WP 2.1+ uses the hash number, probably should update the instructions around the site. Thanks again!

    #2044
    _ck_
    Participant

    Hi, sorry I’ve read and read and tinkered and tinkered without luck.

    BB does not see the WP logged in cookie for some reason.

    wordpress is in /news/

    bbpress is in /forum/

    I am using a plugin on wordpress to change the cookie path to “/” and firefox shows the cookie is indeed set to the “/”

    the domain is set to “example.com” without the “.”

    right now I’ve got in config.php set as

    $bb->usercookie = ‘wordpressuser’;

    $bb->passcookie = ‘wordpresspass’;

    $bb->cookiedomain = ‘example.com’;

    $bb->cookiepath = ‘/’;

    So what little detail have I missed?

    Thanks for any help!

    #57514
    Trent Adams
    Member

    If the twitter API can bring in an RSS feed, it can pull your bbPress feed for sure. That would be what the wordpress plugin is doing anyways. Just need to look into that I would guess.

    Trent

    #51129

    In reply to: drupal integration

    Trent Adams
    Member

    Interesting to see if anyone is since most people here concentrate on bbPress and WordPress.

    Trent

    #58838
    Trent Adams
    Member

    There is a plugin here called ‘bbPress Post’ that integrates your wordpress blog comments into your bbPress forum as topics for posts. Fel64 also ‘redid’ this plugin and has it so the posts are created in the bbPress forum from the wordpress blog and all comments are in the forum, but also show up in the wordpress post as comments as well.

    Other software blog programs, I haven’t heard of any. Moving over to WordPress is a good option in my mind if you haven’t looked at it already since bbPress and WP are made and developed by many of the same people ;)

    Trent

Viewing 25 results - 25,426 through 25,450 (of 26,836 total)
Skip to toolbar