Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 13,901 through 13,925 (of 26,880 total)
  • Author
    Search Results
  • #113944
    enderandrew
    Participant

    I’m using them both together successfully. In fact, I’m using WP 3.4 and the SVN version of bbPress 2.1.

    There are a variety of reasons why a particular request might take 30+ seconds. It could be updating DB tables or making one-time changes to the site.

    Do you have access to server logs through your hosting company?

    #45338

    WordPress and bbPress are made by the same folks, as far as I understand, so while this sounds a bit odd to me it does appear to be the case… WordPress v3.4 and bbPress are not compatible. My site informed me of a WordPress Update today and I was like COOL… update that puppy! Now the Forums are gone and all I get is this lovely message…

    Fatal error: Maximum execution time of 30 seconds exceeded in /public_html/wp-content/plugins/bbpress/bbp-includes/bbp-forum-template.php .

    I contacted my Hosting Provider and they said it basically means that part of bbPress is taking LONGER than 30 seconds to do… SOMETHING. I told them that’s ridiculous as my website doesn’t take 30 seconds to do ANYTHING. The guy said yeah, my guess would be that the NEW WordPress isn’t compatible with bbPress. I was a bit floored and I said, again, well that’s ALSO ridiculous as they are BOTH made by the same folks, surely they wouldn’t release an Update to WordPress that is going to render bbPress disabled. But surely enough that does appear to be the case…

    http://goodintoday.com/discussions

    Is someone working on a resolve for this, I hope?

    Andrew

    Good in Today

    http://goodintoday.com

    #45335

    Topic: bbPress Smilies

    in forum Plugins
    rmmorley
    Member

    I’ve whipped up a little bbPress 2 plugin for my site that lets my users embed smiley shortcodes in forum posts.

    You can customize the shortcode delimiters (defaults are ”) so your smiley codes could look like [happy] or :happy: or {*happy*} etc.

    The shortcode list is built dynamically based on the contents of the smilies directory. You just need to place any number of GIF, PNG, or JPG images into that directory, so adding the file “happy.gif” will allow [happy] to be used in posts. It caches the list though, so it’s not scanning the directory all the time.

    Anyway, this is the first plugin I’m publishing for others to use, and I’ve just started the process of putting it on wordpress.org’s plugin directory, which takes a while to get approved it seems.

    Until it shows up there, I’d be happy to email it to anyone who wants to take it for a spin.

    I have it running on http://christian.net, and you can see the smilies that I have available at http://christian.net/forum-smilies

    #45334
    Garbonso
    Member

    Looking at the installation docs on here, it keeps saying to sync with my database in the “WordPress Integration” section in the Settings, but when I go to settings, there is no such section. Only “Main Settings”, “Per Page”, “Per RSS Page”, “Archive Settings”, and “Single Settings”.

    I am pretty lost on all of this really. Definitely not trying to sound whiny, but it seems like it would be a pretty helpful and easy idea to have an up-to-date video tutorial on the site. Looking at YouTube they are sort of dated.

    Anywho, I would really appreciate some help on this if anybody is available.

    My email is garyu {AT} shiftisgood {dot} com if anybody can personally help me out and get me started I would very much appreciate it.

    Thanks,

    – Gary

    Moderator: edited your email address so you don’t get spammed!

    #113923
    Steve
    Participant

    What I found was that going to a specific Post was OK but the further and further up the Forum tree I went the slower it got until eventually it dies with:

    [13-May-2012 14:13:33] PHP Fatal error: Maximum execution time of 90 seconds exceeded in /webstuff/wordbooker/wp-content/plugins/bbpress/bbp-includes/bbp-forum-template.php on line 554

    [13-May-2012 14:14:10] PHP Fatal error: Maximum execution time of 90 seconds exceeded in /webstuff/wordbooker/wp-content/plugins/bbpress/bbp-includes/bbp-forum-template.php on line 173

    I actually raised this over on the main WP forums back in May because here always seems to be over-run with spam but I guess no-one checks over there.

    #113922

    Check your error logs. Try turning wp_debug on and see if that spills any problems.

    #113899
    Lynq
    Participant

    I found this: http://en.support.wordpress.com/code/posting-source-code/

    If you look down the bottom they are using: https://wordpress.org/extend/plugins/syntaxhighlighter/

    You could use this to allow you to use a shortcode.

    You could then create a bit of javascript to replace the currently highlighted text with the shortcode with the text inside.

    Good luck!

    #113608

    In reply to: GD bbPress Tools

    enderandrew
    Participant

    I literally grabbed a nightly build of WordPress yesterday, so it is possible something changed. I was also using bbPress 2.1 from SVN yesterday and the only other bbPress plugin I was using was your Attachments plugin. I’ll check again in a week or so.

    #113921

    /push – it is very important for me to solve this problem, but I’m absolutely clueless. I updated today from RC1 to RC3 and still have the same problem.

    #113704
    bookespana
    Member

    //Map bbPress topics to WordPress posts structure.

    foreach($bb_topics as $bb_topic){

    $bb_first_post = $wpdb->get_results(“SELECT post_text FROM bb_posts WHERE post_position = ‘1’ AND topic_id = $bb_topic->topic_id”, ARRAY_A);

    $bb_post->post_author = $bb_topic->topic_poster;

    $bb_post->post_date = $bb_topic->topic_start_time;

    $bb_post->post_content = $bb_first_post[0][post_text];

    $bb_post->post_title = $bb_topic->topic_title;

    $bb_post->post_status = “publish”;

    $bb_post->comment_status = “open”;

    $bb_post->ping_status = $bb_topic->post_id;

    $bb_post->post_name = “forums/topic/”.$bb_topic->topic_slug;

    $bb_post->post_type = “forum_topic”;

    $bb_post->comment_count = $bb_topic->topic_posts-1;

    //add bbPress topic to WordPress posts array.

    $wp_posts[] = $bb_post;

    };

    ?>

    Flamenco Shows In Madrid

    Ballet Flamenco Madrid

    #113858
    bookespana
    Member

    In WordPress, there’s a chance to pick out the template for every page (dropdown on Edit Page and Edit Post pages).
    bbPress forum root, forums, topics and replies are custom post varieties.
    It would be smart to check in bbPress the flexibility to line the default layout for every of those.
    Dropdown (like the one on Edit Page page), whereby the admin will choose the layouts from among the active theme’s layouts shall be ideal.
    (I perceive that if once this the admin decides to alter the theme, he can got to choose the default layouts for bbPress custom posts once more – similar to he has to do therefore for traditional pages and posts

    sandeepj
    Member

    I have a custom wordpress theme for my company’s blog to match the styling of my non-wordpress company website. I came across bbpress and wanted to integrate it into my wordpress company blog.

    I followed this tutorial for a basic forum setup:

    http://codex.bbpress.org/home/step-by-step-guide-to-creating-a-custom-bbpress-theme/

    My Parent Theme: XX

    My Child Theme: XX-bbpress

    I created my child bbpress theme and imported the necessary templates as suggested, however, I am baffled by what I observed when I visit the blog landing pages:

    I went into WP-ADMIN and activated the child theme. When I visit:

    http://www.companydomain.com/blog/forums

    – I can see the default forum layout

    but when i vist my blog

    http://www.companydomain.com/blog

    – my blog page is completly blank

    I’ve disabled all but the bbpress plugin. WP_DEBUG doesn’t show any errors when I visit my blog page either. HUH?

    Am I missing something? Thanks!

    #113821
    DarwinsDream
    Member

    Hey guys,

    Ok here is what the Developer of the plugin hat told me. Does this help? I tried this fix and it doesn’t work but it is a step in the right direction. And would also help me get around. The shortcode permissions issue I believe.

    Hi,

    I’m the developer of the wordpress plugin.

    One thing to note is that the JW Player tag is not actually a shortcode but a filter that is applied to post content. Using a filter was necessary to support the syntax needed to customize the player. However, it has the unfortunate side effect of making stuff like this more challenging. The filter function is called “jwplayer_tag_callback” and is applied to “the_content”.

    So in your case I’m hoping the following would work for you:

    <?php

    add_filter(‘bbp_reply_content’, ‘jwplayer_tag_callback’);

    add_filter(‘entry_content’, ‘jwplayer_tag_callback’);

    add_filter(‘bbp-reply-content’, ‘jwplayer_tag_callback’);

    add_filter(‘entry-content’, ‘jwplayer_tag_callback’);

    ?>

    If not, we can work on another solution.

    Thanks.

    #113775
    DarwinsDream
    Member

    Are you trying to sell me on the whitelist plugin? I lready tried that about 3 weeks ago. It wouldn’t install because of a fault error. I don’t have time to try and make non working plugins work.

    I have multiple video plugins that work fine on my site already… maybe you should have checked the links……..

    My issue is that EVERY plugin offered for wordpress merely links to offsite content. Requiring my site content to be dependent on data from another website.

    As a web developer this is unacceptable. And is RULE #1 with developing a website.

    Also plugins such as shortcode white list are bandaids to the real issue. I am looking for a solution not a bandaid. Bandaids cause issues down the line.

    #45283

    Hey,

    I tried the last few days to figure out, what I did wrong. On my test version of WordPress I installed bbpress for development. Everything is working fine there.

    For the customer, I installed the latest WordPress 3.4 Release Candidate. But when I tried to call */forums, the request slows down and All I get is the theader element. I can get to single forums, topics etc, but I cannot see the whole forums.

    Any Idea how to solve this?

    #45278
    zeaks
    Participant

    I wasn’t sure where to ask this. I want to put a note above or next to where it says “Reply” and “Topic Description:” for posting instructions. Anyone know what files I need to edit, or some sort of function I can use?

    I did this with wordpress comments EX: Use “< code > to display code in your comment” above the comment box, using a function, no idea how to do it with bbpress though.

    #113896
    Lynq
    Participant

    I am using jQuery Mobile on my wordpress site which works pretty nicely (I still have some work to do on it).

    You could look into that, you would need to do some customization to get a forum working though as of course width can be restricted on mobile devices.

    #45237
    zeaks
    Participant

    This is probably a stupid question, but I can’t figure it out.

    What is the proper way to post php and html code into a bbpress 2.0 forum post? I tried using < code > but when posting some html, it’s not displayed, tried using the little like on wordpress.org but that didn’t work either.

    #113790

    In reply to: Register on Multisite

    murrayac
    Participant
    #113789

    In reply to: Register on Multisite

    Tried registering, and it does redirect me to some other weird site (which I assume is the main one on the network.)

    I bet it’s WordPress redirecting, since it expects the root site to manage all sign-ups. Could probably use some help figuring this out and fixing, since you have an installation exhibiting the issue already. :)

    #113871

    In reply to: Login/Logout URL Issue

    What version are you running?

    I believe this is fixed in the upcoming bbPress 2.1

    https://bbpress.trac.wordpress.org/ticket/1645

    If you don’t have anything in your forums yet I’d give 2.1 a try and see if that fixes it.

    #45200
    operative_me
    Member

    I’m just doing this as a favor to a friend, but there’s some problems with adding bbpress. I have tried FTPing the files up and installing using the built-in wordpress installation process, to no avail. In both instances, adding BBpress makes the entire front page of the website blank. It’s a pretty frustrating process. Uninstalling fixes the problem with no information lost.

    I should note that this is a multi-site install, and I’m trying to install it only on a single site within that network (the idea being to have only a single forum common to all the sub-sites).

    wpmhweb
    Participant

    John thanks for your reply!

    #110911
    Lynq
    Participant
    if ( bbp_has_topics( array( 'post_parent' => $postmeta["forum_id"] ) ) )
    bbp_get_template_part( 'bbpress/loop', 'topics' );

    You see the part about $postmeta["forum_id"] you need to grab the post meta data with <?php $meta_values = get_post_meta($post_id, $key, $single); ?>

    https://codex.wordpress.org/Function_Reference/get_post_meta

    Then once you have all the post meta data in an array you can grab the forum ID and put it in the arguments.

Viewing 25 results - 13,901 through 13,925 (of 26,880 total)
Skip to toolbar