Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 48,226 through 48,250 (of 64,515 total)
  • Author
    Search Results
  • #79705

    In reply to: Need A Project ShowOff

    looking for more suggestions? I do get a few hits from this page but the responses are very minute as compared to that. Please take out some time to comment or suggest here on a new bbPress theme – Pour in your suggestions for an ultimate bbPress theme

    #80093

    Try matching the code with the default theme and if you need to show more additional info then you can take a look at this too https://bbpress.org/forums/topic/unhide-profile-email-adresses

    #80119
    johnhiler
    Member

    I was researching this for ya, and noticed that your host had fixed it for you:

    https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/page/9/#post-4698

    Glad it worked out! Let us know if your host ever lets you know what they changed/fixed, if you could… thanks!

    #80118
    Jim R
    Participant

    My host took care of that issue, but now I’m getting this from the plug-in:

    Not allowed: [bbPress part] Invalid anonymous user id

    #31961
    Jim R
    Participant

    I’m not getting a lot of help where the plug-in is actually posted. As best I can tell my settings are correct. I’m getting this response though:

    URL is incorrect or connection error, please verify it (full variant): http://hoosierhoopsreport.com/bbpress/my-plugins/wordpress-bbpress-syncronization/bbwp-sync.php

    When you click on that link, it brings up a 404 page, but having checked my server files, it’s there. The plugin has been uploaded in the my-plugins folder of my bbPress folder.

    #80115

    Why not just use bbPress native functions and adapt code? :)

    #31960
    ggwarpig
    Participant

    I run a service that has it’s own user data. I want my users to be able to login to bbpress using the same username/password that they use for my service. I figure ill just generate a user record in the bb_users table when someone signs up for my service. So…

    1) Besides adding the record to the bb_users table, is there anything else I need to do?

    2) How are the passwords encrypted?

    Thanks!

    #80111
    Ben L.
    Member
    #31958
    Peter A. Gebhardt
    Participant

    I’ve copied the complete ‘bbpress’ directory tree (with all it’s subdirctories) from my server to ‘htdoc/mydomain/bbpress’ and reloaded a complete dump of mySQL database (DROP table enabled) into the local one under XAMPP.

    Accessing it under ‘http://127.0.0.1/mydomain/bbpress’ worked fine w/o any flaws – until I looked at the Plugin list within Admin. Although all Plugins (activated on the server) still worked flawlessly, each one in the XAMPP listing does only show the ‘Activate’ status!

    Any idea what causes the wrong status display? Where is the status information stored?

    #80103

    Both the “Freshness”/latest reply and normal links in the Search function should be including the page number in links, as that’s allowed for in the function used, get_topic_link() .

    Sort’ve worrying if it’s not including it! bbPress.org includes the page number…

    It’s not included for any page 1 links though.

    #80100
    #31956
    chandersbs
    Member

    I noticed today, that the profile page, in the section Recent Replies, that the links are actually to the topics and not the posts itself.

    How do I make this go directly to the post?

    Also, in the search.php, when you search for something, it gives you the actual topic, but not the post which has the information you’re searching for.

    I noticed a missing “page id” in the search results, for example:

    A link in the search result will look like domain/topic.php?id=823#post-32876

    EVEN THOUGH the actual post might be located at

    Domain/topic.php?id=823&page=12#post-32876

    I tested the same thing on this website, BBPRESS.ORG, I think it has the same problem. The posts in the search results page is not taking you to the exact post, but just the topic.

    How do I change it into the exact post?

    I have been going through ashfame’s plugin, but it didn’t make me much wiser.

    #73217
    johnhiler
    Member

    There was a great plugin called “Move It” that did a lot of what you described:

    https://bbpress.org/plugins/topic/move-it/

    But it was designed for bbPress 0.8x I believe… ck recommended that 0.9 and 1.0 users not use it.

    But if you’re interested in coding something similar, her code might be a good place to start.

    Good luck!

    #80076
    johnhiler
    Member

    Line 48 in the plugin has the following setting:

    $bb_attachments=true; // auto insert uploaded images into post49

    source: https://plugins-dev.bbpress.org/browser/bb-attachments/trunk/bb-attachments.php

    Is that set to true? I noticed that the image wasn’t showing up in your post at all (only in the list of attachments at the end of the post).

    Also… you mentioned, “I modify the line in both folders, in the root and the other in my-plugins folder, and nothing happend”.

    What do you mean, both folders… the code should only be in the /bb-attachments/ folder under /my-plugins/.

    The bb-attachments folder over the root is meant to hold the uploads… the one in /my-plugins/ is designed to hold the code. :-)

    #79311

    In reply to: Wall updates, anyone?

    chandersbs
    Member

    Yes, budypress has this feature, a similar thing for bbpress, would be cool though

    #31954
    lilblogger
    Member

    Is there a bbPress theme that looks like this: http://makeupalley.com/board/board.asp?bid=1

    where the replies are threaded?

    #31953
    #73215
    Fernando Tellado
    Participant

    And … what about to move posts between different topics or separate posts from a topic to a new created topic?. These are basic features in other forums software and there’s nothing similar in bbPress.

    I think that bbPress need these type of features in order to be a serious forums software, isn’t it?

    Ben L.
    Member

    error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED should actually remove those errors. Something must be wrong with your server configuration.

    #78602
    JohnAKeith
    Member

    Oh, it’s the simplest things. You just saved me a lot of time. Thanks.

    Mark Kehn
    Member

    Hmm, okay that isn’t working.

    Using error_reporting = E_ALL & ~E_NOTICE still shows the warnings for my bbPress

    How do I do this properly?

    I’m not even sure php.ini is the place to do this because even if I totally remove the error_reporting line from the php.ini file it still shows the errors. Even if I set: display_errors = Off it still shows errors.

    So what file am I supposed to be editing?

    Mark Kehn
    Member

    Hi Nightgunner5,

    Can you tell me how to turn that off? Is there a file somewhere in the PHP folder that I would change this?

    EDIT:

    I found this in the php.ini file.

    So all I have to do is change –

    error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED

    to this –

    error_reporting = E_ALL & ~E_NOTICE

    Would that be correct? Anything else I should do? Also, does this mean that I can turn ON error logging again via my .htaccess file for everything else? I like to have the error logging enabled in case I install a plugin or something this way I would know when it is broken.

    This is the code I use in the .htaccess –

    # SUPPRESS PHP ERRORS FROM SHOWING PUBLICLY:

    php_flag display_startup_errors off

    php_flag display_errors off

    php_flag html_errors off

    So again I would like to turn the switches back to ON but at the same time not show the errors in bbPress regarding the DEPRECATED stuff.

    Thanks

    #80064
    gerikg
    Member
    #80096

    In reply to: Page Breaks

    https://bbpress.org/plugins/topic/bbpages/

    Broken apparently, but it’d be fixable if I knew what was wrong with it

    #80094

    In reply to: Page Breaks

    johnhiler
    Member

    Like a cut tag? If so, I don’t believe so – since the front-page.php and forum.php files don’t show the text of the topics, it’s not as pressing a need on bbPress.

    But I could see it being useful if someone wanted to use bbPress to serve Pages/Articles… maybe there’s a plugin that supports this? I haven’t seen it though…

Viewing 25 results - 48,226 through 48,250 (of 64,515 total)
Skip to toolbar