Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 50,351 through 50,375 (of 64,394 total)
  • Author
    Search Results
  • #15241
    Python3
    Member

    How can I move database from phpbb2 to bbpress with the same links without losing them scanned by google?

    #15240
    citizenkeith
    Participant

    I’m running 1.0 on Media Temple’s Grid Service.

    As reported earlier, every once in a while, bbPress requires the database to be “upgraded”. All my plugins are messed up (some on, some off) and the theme is switched to Kakumei Blue.

    This happened again last night, but this time I am unable to activate certain plugins. When I try, I get fatal errors.

    When activating bbPM, the error is:

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 4864 bytes) in /domains/mydomain.com/html/forums/bb-includes/backpress/functions.kses.php(104) : runtime-created function on line 1

    With bb Topic Views, the error is:

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 14592 bytes) in /domains/mydomain.com/html/forums/my-plugins/bb-topic-views/bb-topic-views.php on line 194

    For Members Online, the error is:

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 14592 bytes) in /domains/mydomain.com/html/forums/my-plugins/members-online/members-online.php on line 116

    For Topics Per Page, there is a fatal error but no specifics.

    For Unread Posts, the error is:

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 14592 bytes) in /nfs/c04/h04/mnt/68418/domains/citizenkeith.com/html/forums/my-plugins/unread-posts/unread-posts.php on line 127

    Before last night, all these plugins worked fine. Then suddenly, I had another database upgrade and they wouldn’t work. I upgraded to 1.0.1 and that didn’t help.

    I am going to speak to Media Temple tech support today. Hopefully these errors can be explained and perhaps help somebody else in the future.

    #75709

    You can make a menu nav bar by editing your theme.

    https://bbpress.org/documentation/themes/

    #75752
    _ck_
    Participant

    Ah I see it was even pulled from the download page, which bothers me of course.

    It’s always available via trac too:

    https://trac.bbpress.org/changeset//tags/0.9.0.5?old_path=%2F&format=zip

    or the branch might have a few fixes someday in the future

    https://trac.bbpress.org/changeset//branches/0.9?old_path=%2F&format=zip

    #75779
    _ck_
    Participant

    If the new cookie has a different name, you should not be having a problem because bbpress should not even be looking at the old cookie?

    You are getting a header error because you would have to put it at the very, very top of header.php before doctype – if that doesn’t work, you’d have to add it via a mini-plugin, put it into a file called function.php in your template folder

    add_action('bb_send_headers','delete_old_cookie');
    function delete_old_cookie() {
    setcookie('wordpress_logged_in_REPLACEDcabef','',time()-3600);
    }

    #64877
    Florian
    Member

    Just in case anyone else (like me) stumbles over this thread on the search for an WYSIWYG editor. The problems discussed above seem to have disappeared. I just added TinyMCE 3.2.5 to my bbPress 1.0.1 installation and it works like a charm without modifications besides the removal of obviously unsupported elements.

    Cool. :)

    #15239

    Topic: Auto Login

    in forum Troubleshooting
    sanraj
    Member

    Hi all,

    I want to auto login in bbPress from my site.

    How can I do that?

    Thanks in advance……………………..

    #75790
    _ck_
    Participant

    There have been tag problems even here on bbpress.org with 1.0 and the problem may be related.

    Try it with javascript disabled so the ajax doesn’t kick in and you can see the actual error perhaps.

    #15238
    Jose Conti
    Participant

    Ya puedes descargarte la traducción de bbPress 1.0.1 al español castellano desde http://www.buddypress-es.com

    Download bbPress 1.0.1 Spanish castellian from http://www.buddypress-es.com

    #75736
    Ohna
    Member

    Thank’s _CK_ !!

    But, your code doesn’t seem to work in bbPress 1.0 (I tried to add it in functions.php or directly in topic.php).

    However I have no problem if I add your code in bbPress 9.0 theme.

    I want to add ” <?php echo bb_get_avatar( $poster_id->ID, $size , $default); ?> ” in your code, but I can not ?

    #75644
    ovizii
    Participant

    I guess the 1.0.1 update fixed it so far. still got two remaining issues:

    – the feed still shows every topic/post double

    – my key master still has (Inactive) after his name, refreshing sometimes shows him as (key master) but rarely although the integration works, wordpress realizes the user is a keymaster and logged in I can go to the admin part of wordpress and bbpress without hickups, but when viewing a key master’s psot, it still says: Inactive :-(

    #75371

    In reply to: bbPress 1.0 released

    Dolugen
    Member

    @_ck_

    Does it mean the 0.9 and 1.0 have different code architectures ?

    #75787
    johnhiler
    Member

    Someone reported a similar issue:

    https://bbpress.org/forums/topic/bbpress-10-released#post-37903

    Apparently some themes use AJAX to delete tags… those are now broken I think?

    If you use a default theme like Kakumei, can you delete the tag?

    #75708
    ArnyVee
    Member

    I hadn’t noticed them before, but there are some tabs on the profile pages of bbPress. How can I add some of those tabs as menu items on the main forum page and/or under the header?

    #74435
    punktoronto
    Member

    Has this been solved? I’ve been trying to figure it out as well. Everything I’ve found is for wordpress-mu and I’m not sure what needs to be changed to use it with regular wordpress.

    I found this http://insecure.no/2009/01/wordpress-and-bbpress-nice-url-rewrite-for-nginx/ it sort of works. pretty permalinks work but any attached files such as the css sheet or jquery.js returns a 404 not found error. Any Ideas?

    # SEO friendly URLs for bbPress

    #

    location /forums/ {

    root /path/to/YOURDIRECTORY/public_html/forums;

    index index.php;

    if (!-e $request_filename) {

    rewrite ^/forums/topic/(.*)$ /forums/topic.php?q=$1 last;

    rewrite ^/forums/forum/(.*)$ /forums/forum.php?q=$1 last;

    rewrite ^/forums/profile/(.*)$ /forums/profile.php?q=$1 last;

    rewrite ^/forums/view/(.*)$ /forums/view.php?q=$1 last;

    rewrite ^/forums/tags/(.*)$ /forums/tags.php?q=$1 last;

    rewrite ^/forums/rss/(.*)$ /forums/rss.php?q=$1 last;

    rewrite ^/forums/bb-admin/ /forums/bb-admin/index.php last;

    rewrite ^/forums/ /forums/index.php last;

    break;

    }

    }

    #75769

    John,

    I do not have a WordPress install attached to bbpress. The upgrade went smoothly except for one error that said I already had forums. Other than that, everything seemed to work fine except for the registration. For registration, I am using the plugins “approve user registration”, “terms of service”, and “human test”, but I had deactivated all of these prior to upgrade and then again when testing the default theme.

    #15233
    Dreamcolor
    Participant

    bbPress 1.0.1 Simplified Chinese Translation.

    You can download it with the URL below.

    http://wpcn.googlecode.com/files/bbPress.1.0.1.Simp.Chinese.pack.only.v1-wpcng.zip

    There maybe still have some translation bugs. So please let me know and I will fix it.

    #75606

    In reply to: Mobile Uploads?

    ArnyVee
    Member

    ck, so maybe use a service like flickr and have them display in the sidebar or something? That might be an option it seems.

    I’m brand new (as you know) to the bbPress side and don’t have any coding experience. So, I’ll have to hope that someone comes up with a plugin down the line for flickr (although I’ll go check in case there’s one already out there) or a similar service.

    How do I get to the sidebar? Meaning, which file do I edit to add the code for that flickr embed file?

    #75410
    grassrootspa
    Member

    @Michael3185 meant Sam giving his two sense to the Gravatar selection direction idea. It’s cool to get his take since he is Mr. bbPress.

    #75604

    In reply to: Mobile Uploads?

    ArnyVee
    Member

    I haven’t launched my site yet, but I know of some other blogs where they take a mobile picture, send it to an email address and it posts as a new post on their blogs.

    So, I was wondering if I could do it on bbPress as well and it would show as a new post. Any thoughts or ideas?

    Could I have something on the WP side and then have that blog post start a new post on the bbPress side? Maybe that’s a work around?

    #75370

    In reply to: bbPress 1.0 released

    _ck_
    Participant

    I have to say that while I may not agree with some of the politics around the 1.0 release, the amount of effort Sam has put into 1.0, especially over the past few months, is simply amazing and very impressive. Converting the entire bbPress core to use the WordPress core was not a trivial task.

    #75759
    frooyo
    Member

    To motivate user interaction (sign up), the best approach is to do something like this:

    http://www.streeteasy.com/nyc/talk

    Where for non-logged in users, you display the comment field to post a reply. But once you click submit, it asks you to login/register.

    I talked about this in a previous post –>

    https://bbpress.org/forums/topic/allow-anyone-to-post-to-bbpress-including-non-logged-in-visitors

    #75558
    Marcomail
    Member

    any way ?

    Marcomail
    Member

    is it possible link, for each registered user, the link to the relative profile on bbpress ?

    #75757
    johnhiler
    Member

    This is the closest plugin, I think:

    https://bbpress.org/plugins/topic/force-login/

    Maybe it could be adapted to do what you described?

Viewing 25 results - 50,351 through 50,375 (of 64,394 total)
Skip to toolbar