Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 44,251 through 44,275 (of 64,527 total)
  • Author
    Search Results
  • #88031
    chrishajer
    Participant

    There has always been some overlap with functions being declared in both bbPress and WordPress. I don’t know the solution to this one.

    Does the same problem happen on endurodoc.net? Installing on localhost on MAMP can be troublesome, and if you’re going to host it on the Internet anyway, it would be better to solve problems in the environment where it will ultimately reside.

    #88108
    gerikg
    Member

    I think we had some successful people using it with WP 3.0. I personally don’t recommend automatic upgrade. Sometimes it might be a drastic code change that will mess your integrated bbpress theme.

    #87720
    chrishajer
    Participant

    so there is no way to reply to a comment, only to the entire post thread? how does somebody quote another person to reply to them within the post?

    You copy and paste into your reply and just wrap it in html <blockquote>

    Replies are not threaded in bbPress. Comments *are* threaded in WordPress, if you want them.

    #87719
    josh16
    Participant

    Nice to see that big changes are finally happening here. Now all we need is a look-a-like theme to go with it. bbShowcase is back on? Sweet!

    #34211
    merddyn2002
    Member

    I just integrated my wp with bbpress and its working wonderfully, however, now i’m wondering if I should still be using the “automatically upgrade” feature in wordpress when they release a new version of it. I routinely do that. I currently have the most up to date version, but I’m wondering if I do that in the future if something will break now that I have this integration setup.

    The integration instructions I followed were here:

    http://wpbbpthemes.org/integration/

    #87718
    mi bro
    Member

    so there is no way to reply to a comment, only to the entire post thread? how does somebody quote another person to reply to them within the post?

    iq9
    Member

    We have our bbPress forum hosted at Network Solutions [unfortunately]. When we activated SSL in bbPress, any SSL-secured page would immediately go into an infinite redirect loop to itself. After a little PHP debugging, I determined that the cause was two-fold:

    1. $_SERVER does not exist, for some reason, at NetSol.

    2. $_SERVER always returns 80 at NetSol, even when accessing the site via https. It should return 443.

    This causes the two conditions in the is_ssl() function to fail, so the function incorrectly returns false. When the secured page redirects itself from http to https, bbPress still thinks it’s an unsecured page and redirect back to itself again… and again… and again.

    We had no choice but to hack the core, which is bad because it will get overwritten when we upgrade bbPress. is_ssl() resides in /bb-includes/backpress/functions.core.php. I added a condition to simply look at the scheme of the URI and return ‘true’ if it is ‘https’.

    I added this line to the first line of the function:

    $uri_ssl = parse_url(bb_get_option('uri_ssl'));

    Then this add’l elseif condition:

    } elseif ($uri_ssl == 'https') {

    // Hack to support NetSol's questionable setup.

    return true;

    }

    Has anyone else ever experienced this at NetSol?

    #88030
    kikko088
    Member

    then, now with your path is ok!i make a mistake, the file was find but, i get this error:

    [06-May-2010 19:02:23] PHP Fatal error: Cannot redeclare wp_clone() (previously declared in /Applications/MAMP/htdocs/wp2.9/bbpress/bb-includes/backpress/functions.core.php:1043) in /Applications/MAMP/htdocs/wp2.9/wp-settings.php on line 308

    some ideas?

    tank you very much for your help :)

    kikko088

    #88029
    chrishajer
    Participant

    The path and the URL (technically URI) are not the same. To use “require_once” it needs to be a file system path. So, your “http://www.endurodoc.net/forum/bb-load.php&#8221; would never work. You need to use a file system path there (relative or absolute.)

    chrishajer
    Participant

    This is my favorite topic of all time on bbpress.org – thanks _ck_

    #87717

    Looks nice. Just discovered bbpress and had the site open the other night, wake up and click to a new section and it was different! Fun.

    #88028
    kikko088
    Member

    I try your path but nothing…:( I also try to put the code on wp-config of my site online, where the path is http://www.endurodoc.net/forum/bb-load.php but nothing… :( blank page!

    kikko088

    #87716
    qprints
    Member

    It’s great to see the site updated

    it’s also great to see _ck_ as well w/b :o)

    #87715

    It is good to see such a nice work. Congrats.

    #87714
    _ck_
    Participant

    Gautam, I would at least remove the bbpress header and bee graphic on yours.

    #87713
    Gautam Gupta
    Participant

    Oh, so I would have to stop making it.. :(

    #87712
    _ck_
    Participant

    Chris the bbpress.org theme willl likely never be available since it’s not a GPL creation, Matt paid employees to have it made.

    However there is a WPMimic theme for bbPress which makes it look very close to this since it simulates wordpress.org

    For some reason I have the wrong screenshot of it but you can see it in action like this:

    http://bbshowcase.org/forums/?bbtheme=WPMimic

    #87711
    Gautam Gupta
    Participant

    Well, I have some part of it live on my test forums – http://forum.gaut.am/ (I think I won’t be sued for copying the design.. lol.. I will release it after I have finished it.)

    There are many pages still which need to be changed on this site like profile, profile edit, favorites, views, etc.

    I have made some changes like pushed the search box up (on the left side of login bar), made a function for generating topic table (it becomes easier to tweak if a change is needed in the table), and another function for generating feed box in sidebar.

    #88088

    Ok, seem like i may have pushed it too far staying up to work on this, i overwrote home.php in my template dir. Thanks for your response, prompted me to go check that out :)

    #88087

    Hmmm, you’re right. Actually i am not seeing the dropdown to select any templates, even the custom homepage I made. In quick edit there’s only the the “Default Template” option.

    #88086

    I assume that the news page is using your blog template rather than page.php.

    I recommend checking the template which the page is using and then checking the template in the editor and take it from there.

    Hi there, after installing and integrating bbpress on our WordPress site, the “news” page which is the blog portion of the site only shows partial content, of the last post created, not showing any of the “blog” stuff like date, author, sidebar, etc. Here’s the address if that may help: http://www.apps4good.ca/news

    Would appreciate any help!

    Thanks,

    Ian

    PS. I’ve installed bbpress again with no integration at /forums (previously /forum).

    #87710

    Great work guys… looks great !….

    How would I get my hands on this version of bbpress 2.0, not to go live but have a look and a play around with locally… ?

    #87709
    _ck_
    Participant

    Keep up the great work Noel, thanks!

    #87708
    noel
    Member

    We’ll definitely be tweaking things out a lot over the next few days. This theme was definitely a huge group collaboration :)

Viewing 25 results - 44,251 through 44,275 (of 64,527 total)
Skip to toolbar