Search Results for '\"wordpress\"'
-
Search Results
-
Is it possible with a plugin (or existing functionality?) to create a bbpress forum topic everytime a new wordpress posts is made? And everytime a visitor writes a comment in that wordpress posts, it will appear as a post in that bbpress forum? (and vice versa)
Cheers all!
If anyone is using ‘ Avatar pluginsuleiman, here’s a hack I use to show the WPMU’s avatar in BBPress:
In post.php, after the
<small><?php post_author_title(); ?></small>bit I use the following:<?php
$userid = get_post_author_id();
$wp_avatar = '/full/path/to/public_html/wp-content/avatars/' .$userid. '.jpg';
$wp_avatarURL = '/wp-content/avatars/' .$userid. '.jpg';
if (file_exists($wp_avatar)) {
echo '<img class="avatar" src="'. $wp_avatarURL.'" />';
}
?>Probably not the most elegant, but it works:
Vincent
I made a plugin that allows you to change wordpress cookie path&domain (and even cookieHash) to suit the need of bbPress.
My configuration was not “simple” :
wordPress : http://www.2diabolos.com/blog
bbPress : forum.2diabolos.com
everything is explained here.
http://www.2diabolos.com/blog/2007/04/06/nouveau-plugin-setcookieparams/
BUT I have a problem :
on my local server (for tests), I tried my plugin.
it works … for bbPress front-page and admin page, but not for topics and other “deeper” pages.
I put “cookie domain == false” (because cookie must not have domain when you are a “local server”, that what I understood from the standard)
I don’t understand why the frontpage appears nicely, and why, when I try to go into a topic, Firefox tells me that the server redirects the request in way that can’t go nowhere. And IE does not achieve anything (I prefer Firefox, it better for debugging…)
Firefox tells it can be a problem with cookie acceptance or desactivation.
I feel that bbPress is making a round (infinite) redirection ….
Topic: A needed improvement ASAP
Moodle, the open source Course Management System (http://www.moodle.org) has put together a package that contains all components needed for a Windows localhost installation (including Apache, MySQL and PHP). The only problem is that it is semi-manual. It would be nice if they would develop an installer that uses, for example, InstallShield, and makes the process automatic. I believe it would be very welcome and helpful for most users if WordPress would do the same for WP and bb and include both packages in the installer with checkboxes to select to install one or the other or both (under a Custom Install option).
BTW will anyone at WordPress see this?
Topic: “Last poster” as key master
I just recently installed bbpress integrating it into my wordpress website, and I noticed that, being the key master, I never appear as Last poster in a topic I just added a message too, nor my posts are counted in the totals of the main forums summary page.
Is this intended? And if so, any way to change this behaviour?
Thanks all :>
Topic: WP-Ads
I use a plugin on my WP site called WP-Ads, which allows me to rotate custom built ads in various places throughout my site. It is very easy to use, but also very robust in what it allows you to do.
Does anyone know of anything similar for bbp? I know how to ad Adsense or something similar, but I need to serve up my own custom built ads for people/companies who have sponsored the site.
Any ideas?
Topic: reply and add new topic
where can i change this forms? how can i add panels, like on the wordpress.org forums (Allowed markup: a blockquote br etc, but in buttons)?
Topic: Latest Discussion Error
Hey Community,
I am starting up another site, and I am setting up the Latest Discussions Plugin. I have installed and integrated WP & BB. Once I activate the plugin and use the call for the latest discussion on the wordpress page I am given this error:
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
SELECT * FROM topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMITAny ideas what might be going on here?
Thanks,
Orion
Topic: Upgrade gone awry
I recently upgraded to the latest bbPress version. I was using a plugin which integrated my users with Worpdress previously (and would like to continue to do so).
Something went terribly wrong though on the upgrade. This version is now looking for users in the table bb_users, and it should be looking at the WordPress table. So now I cannot login even as admin because there’s nothing in the bb_users table! I’ve fine working in SQL, and I think all I need to do is add/modify some fields in the bb_users table.
So here’s my question? How can I upgrade the status of a user to administrator in phpMyAdmin? After I login, I can activate the WordPress integration plugin an be all set.
Hi,
As I mentioned in the title I’m a novice to bbPress, but I love WordPress and have been using it for a while now, I’m a total enthousiast when it comes to webdesign and programming (to say I’m not great at it), just the other day I installed the bbPress on the my sub.domain.com and followed the instructions and changed the config files as recommended installed the WP & bb Plugins so that both sites could work seamlessly, somehow somewhere something went wrong, I do see the front page, I do see my WP users in the admin (and I only get there through a admin/meta link if I try to login through bbPress form fields I get an error), I do not see the topics, posts & plugins (even though I have couple of them in my-plugins folder) in the administration and when I click on anything on my front page I get an error like this :
// this one being for forum
“The requested URL /forum/1 was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.”
Did anyone experienced similar, or if not does anyone knows how to deal with this ???
Oh yes, in case you would like to have a look;
Any input will be great,
Thank you, Daddo
Well WP has it here:
http://wordpress.org/extend/ideas/
Can we get this as a plugin aswell? Would be very handy

Null
I have WordPress 2.1.2 and BBPress 0.8.1. They are (mostly) integrated. BBPress claims that
<br>tags should work but they don’t. They are immediately converted to special characters and show up in the post as they were coded, i.e. “br” inside the brackets.Also
<li>atrributes (type=disk, circle, blah blah) don’t work. Same problem as above. Any clues?