Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 22,851 through 22,875 (of 32,481 total)
  • Author
    Search Results
  • #81388
    arpowers
    Member

    < this is a test >

    hpguru
    Member

    My plugins

    * Akismet

    * Human Test for bbPress

    * BB Anonymous Posting

    * Related Topics

    * bbVideo

    * Allow Images

    * BBcode Lite

    * BBcode Buttons Toolbar

    * bbPress Smilies

    * Topics Per Page

    #81454
    brayjason
    Member

    Here is a screen shot of what I’m dealing with.

    screen.png

    http://i19.photobucket.com/albums/b174/bmxpunker2005/screen.png?t=1258347755

    #81400
    chrishajer
    Participant

    I would stop using the Mass Delete Users plugin. I suspect it’s doing something that’s incompatible with 1.0 and something is going on with the users it deletes and the ones that are left behind. I would stop using that then do a recount in the admin. I’m not sure if recounting fixing user-related things that might have gotten borked.

    I don’t think Allow Images, either BBcode plugin, BBvideo or Social It would cause any problem like this. Unless the problem occurs on threads with (or without) images or threads with (or without) video.) The Social IT appears to be on every post.

    I’m not sure about Human Test for 1.0 – I don’t think I’ve ever tried it. I do have it working with a 1.0RC, I forget which version though. All you can do is try it. If it activates without error, that’s good. If you try to register and it prevents incorrect answers and allows correct answers, and the registration goes through, then it works.

    I don’t think disabling Mass Delete is going to make everything better right away. I have a feeling that it’s doing something to the user data in the database, and that will remain there even after you deactivate the plugin.

    The other possibility is something going on with the host. But if all the other software is running fine there, that’s probably not a problem.

    #81399
    Marius-
    Member

    chrishajer, I use the following plugins:

    Allow Images

    BBcode Buttons Toolbar

    BBcode Lite

    BBvideo

    Mass Delete Users

    Social It

    These are vital for me though, I got many users depending on these as core functions already. This problem did interestingly enough, occur after I had installed Mass Delete Users. Not imediatly though.

    Deleting users works, but maybe it does something else that I can not see – that fucks up something else?

    Do human test work for 1.02?

    #81387
    chrishajer
    Participant

    That’s a single quote or apostrophe, not a back tick. On a US English keyboard, the single quote is on the same key with a double quote. The back tick is in the upper left corner or the keyboard, usually on the same key as the tilde (tilde requires shift.)

    http://upload.wikimedia.org/wikipedia/en/5/51/KB_United_States-NoAltGr.svg

    You want to use the upper left key in this keyboard layout around your code.

    <?php e_('This is code'); ?> and ‘this is just inside single quotes’.

    #80383
    chrishajer
    Participant

    OK, I see.

    How are you getting your WordPress header to display in the forum? Did you just integrate deeply and the include the header <?php get_header(); ?>?

    #81195
    fifthhouse
    Member

    I have a developer who does some work for me sometimes fixing up my blog, and this week he made a nice theme for me to match my wordpress theme :)

    http://angerwise.com/forums

    #81427
    billerby
    Member

    Found out the two ways to make it sticky :)

    #81382

    In reply to: Pretty-URLS

    Olaf Lederer
    Participant

    I’m sure they will offer a similar system as in WP in a future version ;)

    #32318
    edbarton1989
    Member

    For the life of me I can’t see why although I’m sure it’ll become obvious. None of the navigation links in my header to elsewhere on the site work (even though the logo image does). The code looks fine to my eyes, why could this be?

    See http://www.bangbangs.co.uk/msgboard/

    #81358
    Dailytalker
    Member

    Many thanks. That’s exactly what I was looking for. ;-)

    #81385

    Put them in backtick characters (see below the post field here) or in <code> tags

    #32313
    arpowers
    Member

    hi!

    I have a forum here: http://www.pagelines.com/forum

    I sometimes want to add HTML tags to explain things to people but they get stripped out or used as real HTML…

    Is there a way to do this (display HTML code) in BBPress?

    #32312
    Dailytalker
    Member

    Dear coders, please remove “forum” and “topic” from the urls in your future editions of bbpress.

    http:www.xxx.com/forums/topic/how_to_remove_unnecessary_things

    doesn’t look nice, especially when you run forums in another language than English. Because this gives you a mix of languages in the url.

    http://www.xxx.com/forums/troubleshooting/how_to_remove_unnecessary_things

    looks better.

    Please see also the following topic about this issue:

    http://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done

    #60401
    Dailytalker
    Member

    Hi, I’ve just followed your instructions and was also able to remove “forum” and “topic” from the urls.

    But something is wrong because the pages cannot be found. This is my rewrite code (it is a bit different from your code because I am using the newest version of bbpress):

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum/

    Options +FollowSymlinks

    RewriteRule ^page/([0-9]+)/?$ /index.php?page=$1 [L,QSA]

    RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forum/([^/]+)/?$ /forum.php?id=$1 [L,QSA]

    RewriteRule ^forum/?$ [R=302,L,QSA]

    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^topic/([^/]+)/?$ /topic.php?id=$1 [L,QSA]

    RewriteRule ^topic/?$ /forum/ [R=302,L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/([^/]+)/?$ tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ tags.php [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/?$ profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/([^/]+)/?$ profile.php?id=$1 [L,QSA]

    RewriteRule ^profile/?$ profile.php [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([^/]+)/?$ view.php?view=$1 [L,QSA]

    RewriteRule ^rss/?$ rss.php [L,QSA]

    RewriteRule ^rss/topics/?$ rss.php?topics=1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/topics/?$ rss.php?forum=$1&topics=1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)/?$ rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/?$ rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/topics/?$ /forum/rss.php?tag=$1&topics=1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)/?$ rss.php?profile=$1 [L,QSA]

    RewriteRule ^rss/view/([^/]+)/?$ /forum/rss.php?view=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^.*$ /forum/index.php [L]

    </IfModule>

    # END bbPress

    Probably I made something wrong with point four where you say that the lines 46 and 48 have to be switched. What do I actually have do do there?

    Quote: “4. Open up bb-post.php at the root of your bbPress install and simply switch lines number 46 and 48”

    Is it this code?

    $link = get_post_link($post_id);

    $topic = get_topic( $topic_id, false );

    #81351
    Sushubh
    Member

    well its hard to restrict the title limit on a community. twitter is hard enough to manage with a limit.

    i was actually surprised that no one has had this issue and there were no plug-ins either. :)

    well words would be fine. 3-4-5 to keep the link short and sweet. of course i am not looking for a wordpress like slug feature. but a vbseo like fixed limit on the number of words.

    #81363
    chrishajer
    Participant

    Sounds like you need to add some rewrite rules for use with that plugin. I don’t see anything about it in the readme.txt, but now that I think about it, those non-pretty links should even when permalinks are enabled. For example, this link will be rewritten to my profile, even though it’s an ugly link:

    https://bbpress.org/forums/profile.php?id=65703 end up here:

    https://bbpress.org/forums/profile/chrishajer

    Also, there shouldn’t be two forum in your pretty link. It should look like this:

    http://www.mysite.com/forum/profile/xx

    #81326
    billerby
    Member

    Thanks for your reply, just like you said Akismet has identified those posts as spam. I contacted the user and asked for a report and he replied that every time he tried to submit the topic he got an error message stating “no subject”, which is strange since all five posts had a subject(the same). I understand if Akismet reacts on five messages in a row with the same subject in a short time, but the real question is why bbPress presents an error message when a subject is both submitted and inserted? Lets hope this will not happen again :) Maybe a one time error?

    #81273

    I have a tutorial for that coming online on my series WP as CMS on my blog – http://blog.ashfame.com/2009/11/wordpress-cms-series/

    I will be demonstarting how to do it without deep integration. You might want to check that out if you are comfortable with code and love to do it yourself ;)

    #81323
    lukeah
    Member

    yeah im stupid. can anyone tell im a newb :)

    #32291
    #78458
    circuit
    Member

    i upgraded bbpress and converted wordpress to MU, then added buddypress on top. i didn’t run into any major issues, but then again, i made sure to back up before i made any major changes to the database, so a few disasters were avoided that way ;)

    #81272
    circuit
    Member

    “the latest forum posts on the right hand side are visable on your wordpress pages. Was this achieved by calling bbpress header after wp header?”

    no, it’s a plugin called bbpress latest discussions.

    i dislike unhelpful meanies who hang around on techy forums, and i don’t mean to be one of them, but you honestly need to search the forum (and google) because the answers are out there! if you don’t do the research you’re going to waste time on things that have been done for you already.

    just migrating my wordpress+bbpress install to MU+buddypress+bbpress took me around 30 hours. that’s not including the initial setup of wordpress+bbpress, or the re-theming of template files to acommodate the upgrade. most of that 30 hours was spent searching google for plugins and hacks and reading around.

    thanks for the compliments on my site. believe me, i am not a coder, i am just persistent!

    #81320
    hatter
    Member

    Are you trying to synchronize posts between the two, so that you can continue the discussion in the forum? If so, you can use the plugin found here: http://bobrik.name/code/wordpress/wordpress-bbpress-syncronization/ Or are you just trying to transfer from bbPress into WordPress completely?

Viewing 25 results - 22,851 through 22,875 (of 32,481 total)
Skip to toolbar