Skip to:
Content
Pages
Categories
Search
Top
Bottom

Plugin allow-images.php, how do I get it to work?

Published on March 6th, 2009 by

I am trying to figure out how to allow people to embed images and flash code in our forums.

I came across the allow-images.php plug-in, and installed it in “bb-plugins” and “my-plugins” under the forum directory.

I then went to admin and activated the plug-in.

What I can’t figure out is how to get it to work. I can’t figure out how one inserts an image still, or if what I installed and activated actually made a difference.

Once I get this resolved, I will move on to allowing embedded flash objects.

thank for helping…

Feed rss not working …

Published on March 5th, 2009 by

My site http://www.allywood.org feeds not working. I tried to add given rss, rss2, atom at feedburner but error comes there.

1. error: with this http://www.allywood.org/feed

FeedBurner encountered some kind of error performing the task or displaying the page you requested. Fear not, this event has notified the appropriate people within FeedBurner and we will have this all ironed out soon.

2. error with this http://www.allywood.org/feed/atom

Error getting URL: 404 – Not Found http://www.allywood.org/feed/atom {Connection=[Keep-Alive], ETag=[“xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”], Date=[Thu, 05 Mar 2009 21:02:41 GMT], Keep-Alive=[timeout=15, max=99], Server=[Apache], Content-Type=[application/atom+xml; charset=UTF-8], Last-Modified=[Thu, 05 Mar 2009 08:18:59 GMT], Transfer-Encoding=[chunked], null=[HTTP/1.1 404 Not Found], X-Pingback=[http://www.allywood.org/xmlrpc.php]} GET

Plz suggest my, what is problem and how it will be solve??

Create multiple forums

Published on March 5th, 2009 by

Hi everyone,

I was wondering if it’s possible to have multiple forums running on a site (i.e. site.com/forum1, site.com/forum2) running from a single database

I have a site where I have about 10 completely unrelated topics and I’d like to create 10 seperate forums for them – bbpress looks like a brilliant, lightweight option and I’m really hoping there is a solution to this!

Warning: cannot yet handle MBCS in html_entity_decode()! in /home2/ …

Published on March 5th, 2009 by

Hey Guys,

Just recently discovered that I can’t get my bbPress Forum to load. I get this error all down the page, and to the best of my knowledge, I haven’t changed a single thing since it last worked?

Any help appreciated.

Kind Regards,

Cal :)

Placing the bbPress forum within a WordPress Page?

Published on March 5th, 2009 by

Hello,

I have bbPress installed but not yet really active. I also have Simple:Press installed, and it is set up the way I want bbPress to look here:

http://architecturecartoon.com/forum/

Is there a theme or way to get bbPress incorporated into a WordPress page like that?

Thanks

Possible integration bug in BBpress install for WPMU 2.7 and BP RC-1

Published on March 5th, 2009 by

For starters my site runs the following WPMU 2.7, Buddypress RC-1 and BBpress 1.0 alpha 6 – if you’ve had problems with any of the following then this is worth a read …

This is a weird one but totally worth mentioning. I just re-installed bbpress for the fifth time and found a wee error that seems to bugger everything up.

If you’ve got everything working properly and you’re in the admin screen on bbpress ‘Settings/Wordpress Integration’ DO NOT hit the ‘Save Changes’ button at the bottom of the user integration menu.

The reason being is that it breaks everything and you have to reinstall bbpress. I can’t remember the exact error as I did this late last night but the error occurs in ‘bb-includes/backpress/class.bpdb.php’ on line 123 and 377

I also noticed that (once you get it back up and running) you can’t post on existing group forums but if you create new groups then everything is hunky-dory :)

Just as well I hadn’t populated the site LOL

It’s been a hell of a learning curve this but not a bad one by any means – I’s say I’m very proficient now at reinstalling bbpress and integrating!

After all this rant I’m not sure if this is a problem specific to me but please let me know if you’ve suffered the same. I’ll put something on the BBpress forums too shortly.

Cheers,

Phil

Installed fine but no automatic login

Published on March 5th, 2009 by perrymyk

Installed new WP 2.7.1 and bbpress 0.9.0.4 just fine – I see my WP users in bbpress; I believe I integrated cookies correctly too.

However when I log into WP as another user and click the link to bbpress the new user is NOT logged into bbpress.

What am I missing?

Thanks much for any help.

Fatal Error installing in v 2.7.1

Published on March 4th, 2009 by perrymyk

New to WordPress and certainly am not impressed with this Plugin.

Installed new WP v 2.7.1 and uploaded this module bbpress-0.9.0.4 and it fails with the following error message:

Fatal error: Call to undefined function bb_get_option() in /home/m4inform/public_html/wordpress/wp-content/plugins/bbpress/bb-plugins/akismet.php on line 72

I just can’t imagine I did something wrong but assume this plugin works.

Appreciate any pointers.

Blank pages after successful installation

Published on March 4th, 2009 by batesy

Hey guys,

I just installed bbpress at www.halifamous.com/staff for writers of a new blog to discuss ideas for the site. I am able to view the main forum page, and get into the admin section. The problem is that I’m getting a blank page any time I try to click through to the test post or into the ‘Introductions’ forum section I created. I also get a blank page when I try to access my user profile.

I haven’t touched the code. Any idea why this might be happening?

Thanks,

Greg

Making Forum Tab hilited when viewing forum

Published on March 4th, 2009 by thindery

I am using the StudioPress theme and I have fully integrated bbpress into the theme. I think it looks great, and all the pages seem to be working. View at http:.//mipages.net/forum/ The only problem is that the “forum” tab isn’t hilited when viewing the forum. It always does the “home” one instead.

In my theme I hardcoded the first forum link to http://mipages.net/forum/

The second forum link is actually to just a page I created in wordpress called “forum”. I thought I could edit the link in phpmyadmin to http://mipages.net/forum/ somehow but I couldn’t seem to figure it out. So the link for the second forum tab is actually just a page, and not the actual forum.

So basically I just want one of those forum tabs to be hilited when viewing the forums. It doesn’t matter to me how to get it done. Any suggestions by anyone?

below is my header code for the forum page.

Code:
<div id=”nav”>
<?php function get_the_pa_ges() {
global $wpdb;
if ( ! $these_pages = wp_cache_get(‘these_pages’, ‘pages’) ) {
$these_pages = $wpdb->get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by ID’);

}
return $these_pages;
}

function list_all_pages(){

$all_pages = get_the_pa_ges ();
foreach ($all_pages as $thats_all){
$the_page_id = $thats_all->ID;

if (is_page($the_page_id)) {
$addclass = ‘ class=”current_page”‘;
} else {
$addclass = ”;
}
$output .= ‘<li’ . $addclass . ‘>ID).'” title=”‘.$thats_all->post_title.'”><span>’.$thats_all->post_title.'</span>‘;
}

return $output;
}
?>

    <?php

    if (is_home()) {
    $addclass = ‘ class=”current_page”‘;
    } else {
    $addclass = ”;
    }
    echo “<li” . $addclass . “><span>Home</span>“;

    if (is_page(‘190’) ) {
    $addclass = ‘ class=”current_page”‘;
    } else {
    $addclass = ”;
    }
    echo “<li” . $addclass . “><span>Forum</span>“;

    echo list_all_pages();?>

<div class=”cleared”></div>
</div> <!– Closes Nav –>

I changed the code to use the function is_page() when trying to identify it as a forum because that is what it looked like I needed to use, but I’m still pretty new to wordpress functions. the “190” is the id of the entry in my wp_posts table that contains the guid of http://mipages.net/forum/ (the link itself)

So I know it is kind of working, because it is grabbing the right url and everything, I just can’t get it to recognize that is is viewing that current page to add the class.

Help anyone! As soon as I can get this resolved I’d like to publish the modified theme files so other users can easily implement bbpress with their studiopress theme.

Skip to toolbar