Skip to:
Content
Pages
Categories
Search
Top
Bottom

Integrating Aggrss into bbPress theme?

Published on February 23rd, 2007 by CMoseley

I use aggrss to do syndication of my own website’s RSS feeds to the front page (OncTalk) and I want to be able to do the same thing on my bbPress theme (which is nearly identically to my WordPress theme). I’ve setup integration between the two theme systems, and I know it works becuase all of my WordPress Conditional tags and things I’m using in my bbPress theme are working, but when I put in aggrss, I get this error:

Fatal error: Call to undefined function: get() in /usr/home/josh/domains/onctalk.com/public_html/wp-content/plugins/aggrss.php on line 127

When looking up the code on that, I didn’t seen anything blatantly obvious that would cuase a screw up, but im still a beginner at this.

This is the code around line 127 from aggrss.php:

(From line 123-131)

function aggrss($rssurl,$striptags=false,$num=0) {

global $lastRSS;

$lastRSS->CDATA= ($striptags) ? “strip” : “content” ;

$lastRSS->items_limit=$num;

if ($aggr = $lastRSS->Get($rssurl))

return $aggr;

else

return 0;

}

Full view of the code can be found here.

Any help in getting this fixed/solved would be much appreciated.

Memberlist plugin: need a few testers

Published on February 23rd, 2007 by

I’m trying to test a new deletion routine in the Memberlist plugin, but the problem is I don’t have a WPMU integrated site to test with. I usually use Trent as my tester, but he de-integrated.

So if a few of you who use the plugin and are integrated and are willing to test something, let me know. The problem being addressed is how currently the plugin does not delete usermeta data when deleting the user, which causes errors in the backend user pages (particularly when the user is a bozo). I have already tested it using non-integrated bbpress, I just need one or two people to let me email them an updated file to test with WPMU. You’ll need to know how to look in your database to make sure the data is being deleted.

Thanks!

Template Tags

Published on February 23rd, 2007 by

I would like/want to know about all the various template tags there are. For example, I wanted to change the way authors are presented next to their post, but found it impossible without changing core files (and those fairly confusing anyway). It would be nice if there were more template tags like there are in wordpress, so that I could call the_author(), the_author_title(), the_author_website(), the_author_profile() (or some variation with parameter-passed requested details). I’d like something, in other words, that was simple and straightforward to use, where looking over code you could immediately see the function. Maybe it’s implemented but I couldn’t see it?

If they exist, then at least a list of them would be nice.

More template tags would be great.

underscore stripped from username?

Published on February 23rd, 2007 by

I have a user that had the underscores stripped from his username when he registered. Is there any way to curb this unhappy behavior?

How to PERMANENTLY delete a post?

Published on February 23rd, 2007 by

Hi, this is a newbie to bbPress. Thanks for the great work.

Just want to ask before deploying the code into a semi-production environment.

It’s great to hear that deleted posts can be undeleted.

But, how am I going to clean up posts that I’m sure I no longer need anymore?

I pay for web hosting and don’t have a very large database.

Thanks a lot. Take care.

–acefinale5

Problems with ‘Profile’, ‘Add New’ links just after installation !

Published on February 23rd, 2007 by

Although it is Turkish but as u see on that page there is no Add New link or when u want to click on Profile u will have an error screen about “Page Not Found” or something like that. I couldnt understand that why i am having this problem.

Also i cant see the site styled on FireFox2

Note: I integrated bbpress with wordpress and they are using the same database. WordPress is a sub-directory of an other site of mine and bbpress is a sub-directory of wordpress.

Sub-Categories?

Published on February 23rd, 2007 by

I’m looking into adding my categories for real now (testing’s pretty much over) and I am *thinking* I would like sub-categories. Is this a feature available through a plugin yet? I know this adds another level of complexity, and I apologize if in asking for this feature I am speaking heretically. Just trying to make this right before my major launch.

Thanks!

Search no longer finds users

Published on February 22nd, 2007 by chrishajer

When I upgraded from .73 to .80, the search stopped finding users. In the templates folder, search.php, this code exists:

<?php if ( $users ) : ?>
<h2><?php _e('Users')?></h2>
<ol>
<?php foreach ( $users as $user ) : ?>

which makes me THINK it should display users, and it used to display users, but it doesn’t any more. There were quite a few changes in that file between versions. Does anyone else have this problem? Try searching your forum for an exact username and see if you find any users. It also used to match part of a username, so searching for “river” would return “riverside” and “riverfront” if those were valid users.

Anyone?

Integrating bbpress into my own community website…

Published on February 22nd, 2007 by

Hi folks,

I like the simplicity of the bbpress forum very much. Since I’m currentlu developing my own travel community (which is a pretty huge project with a blogging system, member profile pages etc) I’m looking at the question which forum I should use.

How hard is it to connect bbpress to an existing member database? I also want to customise the forum heavily so that it fits exactly into my design.

Are there any tutorials or good posts that cover this issue extensively? Or do you recommend using an entirely different forum script for this matter? If so, I need a very very simplistic one.

Thanks very much for your help.

Kai

wordpress integrate problem when enable BBLANG

Published on February 22nd, 2007 by tzangms

Today I am integreating wordpress and bbpress, it’s works fine, but after I set BBLANG to my language(zh_TW), this message below shows up.

“Fatal error: Cannot redeclare class streamreader in /path/to/bbpress/bb-includes/streams.php on line 26”

Coz StreamReader class has been declared in wordpress, but bbpress will declare it again in ‘bb-settings.php’, this coz the error.

here is the code in ‘bb-settings.php’

Code:
include_once(BBPATH . BBINC . ‘streams.php’);
include_once(BBPATH . BBINC . ‘gettext.php’);

I use class_exists to avoid these two files, ‘streams.php’ and ‘gettext.php’ to be include twice.

the code came into these:

Code:
if (!class_exists(‘StreamReader’))
include_once(BBPATH . BBINC . ‘streams.php’);

if (!class_exists(‘gettext_reader’))
include_once(BBPATH . BBINC . ‘gettext.php’);

then it works! bbpress came back to normal, but my language file seems not to be loaded.

After all, I find out, that bbpress uses wordpress function after integrate, so I place my .mo file into /path/to/wordpress/wp-includes/languages/ , then, my language file finally loaded. but ….. here is another problem, the .po of wordpress and bbpress will mess up into one file. but I want my wordpress not to be translated. ><

Skip to toolbar