Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,201 through 19,225 (of 32,500 total)
  • Author
    Search Results
  • #104179
    koyuncu
    Member

    bump.. still can’t post on the plugins page :/ help?

    #99101

    The problem is an ongoing one that even Matt has blogged about in recent past. Part of the reason they’re able to pass the human test it because they might be humans registering real accounts and making real posts. WordPress.org, bbPress.org, and BuddyPress.org all suffer from a similar problem. I’m about sick of it though. :)

    #99099

    Email addresses from user are always gmail

    And lo.tso.fun.nyd.ots in the address before the @ — the same idiots spamming at me. And I changed the Human Test plugin code a little to get a larger range of numbers for the little addition. So a simple editing of the plugin may not work.

    #99092

    In reply to: Strange SPAM problem

    Same problem on my site, but I looked a little.

    These spammy tags are from spams automatically detected as spam in Akismet, written by a user marked as bozo. (That’s the good part of it.) Nothing is visible from this user except for the tags.

    As a quick and dirty workaround I deleted the tags and the referred tag-id in the MySQL tables term_relationships and terms. But it is a bug, this kind of tags should not appear. Generally tags from bozos should not be visible (its a join on usermeta on ID = usermeta.user_id where meta_key = 'is_bozo' and meta_value = 1).

    But don’t expect a quick fix, its bbpress here. Even more important things need a lot of time.

    #104192

    In reply to: Strange SPAM problem

    Same problem on my site, but I looked a little.

    These spammy tags are from spams automatically detected as spam in Akismet, written by a user marked as bozo. (That’s the good part of it.) Nothing is visible from this user except for the tags.

    As a quick and dirty workaround I deleted the tags and the referred tag-id in the MySQL tables term_relationships and terms. But it is a bug, this kind of tags should not appear. Generally tags from bozos should not be visible (its a join on usermeta on ID = usermeta.user_id where meta_key = 'is_bozo' and meta_value = 1).

    But don’t expect a quick fix, its bbpress here. Even more important things need a lot of time.

    #94894
    wildkyo
    Member

    OMG! :) thanks for that Willabee, I will do a test tonight!

    #99091

    In reply to: Strange SPAM problem

    Mealin
    Member

    +1 :/

    #104191

    In reply to: Strange SPAM problem

    Mealin
    Member

    +1 :/

    #76479
    Willabee
    Member

    Hard coded translations can NEVER be translated by a .mo/.po language file, since there’s no indication of it needing a change.

    #76478
    lespionage
    Member

    My bb-press root is in a map called “forum” and in that folder I have put the my-languages folder and inserted the sv_SV.mo i that folder. I have edited the bb-config.php only.

    I think that I have gone trough these steps a thousend times.

    Would i be possible that some code or something is blocking this thing out. I am using a copy of kakumei which I have edited to fit my design and there I have “manually” translated some of the english text that I found in the files. could that be a problem?

    #99096
    Willabee
    Member

    Try contacting her, or try changing something in the code so that the bots will be stopped once again.

    Either way, spam will always be there.

    #94893
    Willabee
    Member

    @ dudd, wildkyo

    You can throw the twentyten bbp plugin theme in your original theme folder (excluding files like functions.php, just add those to your existing one). Then make a page with a template (in wp-admin), one with the name Forum Index will show up and you have integrated the bbp theme with your normal theme. ^^

    This does kinda clutter up your theme folder, but it works for me. Don’t have time atm to wait for more flexible options. :)

    #76477

    Not sure! Recheck your steps.

    Make sure you have uploaded to the right place. Make sure it is there.

    Add the file is to be added in bb-config.php and not bb-config-sample.php

    We can generally make mistakes of uploading it somewhere and then trying to figure it out. :)

    #76476
    lespionage
    Member

    Hi Ashfame! Thank you for your response. However I have done exactly as in the description of the link you posted. I have made a folder in my bb_press root folder called my-languages and inserted the sv_SE.mo file on to that folder. In the bb-config file I have changed the code string to

    define( ‘BB_LANG’, ‘sv_SE)’ );

    Still english on my forum.

    What´s up with that?

    #98535

    The news is in trac. There’s one ticket left in 1.1 and then it gets released. No sense in putting out a 1.0.4 to fix one bug that 1.1 will fix. Right now we’re in the middle of a WordPress, BuddyPress, bbPress trifecta release, so there’s three times as much testing to do to make sure nothing breaks.

    If you can’t wait for a public release, download the trunk and do some testing. :)

    #103635

    The news is in trac. There’s one ticket left in 1.1 and then it gets released. No sense in putting out a 1.0.4 to fix one bug that 1.1 will fix. Right now we’re in the middle of a WordPress, BuddyPress, bbPress trifecta release, so there’s three times as much testing to do to make sure nothing breaks.

    If you can’t wait for a public release, download the trunk and do some testing. :)

    #94892
    wildkyo
    Member

    dudd, or you can wait to a future release where JJJ said will be more flexible to put the forum in our existing theme. :) I’m waiting for!

    #93223
    blupp
    Member

    I made a workaround. Not ideal and not performant, but it works for me…

    function discover_topics() {

    global $bbdb, $frequency, $priority, $bb, $topic;

    $topic_query = "SELECT t.topic_id AS tid, t.forum_id as fid, p.post_time AS tim, t.topic_posts AS nposts FROM $bbdb->posts p, $bbdb->topics t WHERE p.topic_id = t.topic_id AND post_status = 0 GROUP BY t.topic_id ORDER BY p.post_time";

    $matches = $bbdb->get_results($topic_query);

    if ($matches) {

    foreach($matches as $match) {

    $url = get_topic_link($match->tid);

    if ($match->fid!=5) {

    $topic = bb_get_topic_from_uri( $url );

    $url = str_replace( $bb->uri . ‘faq’, $bb->uri . get_forum( $topic->forum_id )->forum_slug, $url );

    }

    Note: set $match->fid!=5 the forum_id of the corresponding forum and replace 'faq' with the slug of the corresponding forum.

    #93222
    blupp
    Member

    Hello I have the same problem with the sitemap plugins as OreilleMalade.

    As far as I understand the code, the problem lies in the function:

    function discover_topics() {

    global $bbdb, $frequency, $priority;

    $topic_query = "SELECT t.topic_id AS tid, p.post_time AS tim, t.topic_posts AS nposts FROM $bbdb->posts p, $bbdb->topics t WHERE p.topic_id = t.topic_id AND post_status = 0 GROUP BY t.topic_id ORDER BY p.post_time";

    $matches = $bbdb->get_results($topic_query);

    if ($matches) {

    foreach($matches as $match) {

    $url = get_topic_link($match->tid);

    Here is the url generated every time like this:

    domain/topic/topic-name

    If we use nicerpermalinks than we have not the topic-directory in our url and the function get_topic_link gives us the url with the name of the first forum or a random forumname (didn´t figured it out yet).

    domain/first_forum_name/topic-name

    but we have different forum_names now. If I understand the code right, we have to use now get_topic_nicer_link instead of get_topic_link.

    How to make it??

    #96884
    intimez
    Participant

    I understand that this theme isn't readily downloadable, but is it available for purchase? I wouldn't mind putting a bit of cash up to get it

    @RegNatarajan

    Have you tried this?

    http://bbshowcase.org/themes/WPMimic.zip

    #101984
    intimez
    Participant

    I understand that this theme isn't readily downloadable, but is it available for purchase? I wouldn't mind putting a bit of cash up to get it

    @RegNatarajan

    Have you tried this?

    http://bbshowcase.org/themes/WPMimic.zip

    #99078
    koyuncu
    Member

    *i solved the issue with the forum not showing, I simply went through the install instruc. and undid some of the edits in the php file.

    still wondering why I couldn’t get it to work, why it kept refreshing :P

    #104178
    koyuncu
    Member

    *i solved the issue with the forum not showing, I simply went through the install instruc. and undid some of the edits in the php file.

    still wondering why I couldn’t get it to work, why it kept refreshing :P

    #37293
    koyuncu
    Member

    hi,

    I don’t know what’s going on but the site is acting weird from time to time (seems bugged) :D. Few days ago I couldn’t register and now it seems I can’t post comments in the plugin page.

    Anyways, I just recently discovered bbpress and it immediately caught my attention. :) I tried to install the following plugin http://bbpress.org/plugins/topic/facebook-graph-connect/ but I’m having some troubles with it. once I have followed the instructions I tried to test it by register via it, so I accepted the FB app req. and then when I got ‘re-directed’ to my site it just kept refreshing and wouldn’t stop. So I went back in to deactivate it however now my forum has ‘disappeared’. you can’t see any of the forums unless you login nor the search bar etc. just wondering if I could get some help. I know it’s in beta and all but if there is a fix let me know otherwise I’ll have to re install bbpress :P

    * reason to I’m posting this here is of course because I can’t post on the plugin page itself, as I explained above.. weird bug:P

    #89150
    iamanasha
    Member

    Adam Kayce Says in this forum post:

    Apostrophe and or quotation marks cause backslash to appear.

    Never mind – I got it, thanks to an old post from two years ago.

    The code has changed a bit, so here’s how I fixed it:

    1) open up /bb-includes/functions.bb-template.php

    2) replace line 1074 with:

    return stripslashes(apply_filters( ‘get_topic_title’, $topic->topic_title, $id ));

    3) and line 1782:

    return stripslashes(apply_filters( ‘get_post_text’, $bb_post->post_text, $bb_post->post_id ));

    That did the trick for me.

    {This worked for me,too. It worked on the front end and back end.}

Viewing 25 results - 19,201 through 19,225 (of 32,500 total)
Skip to toolbar