Search Results for 'test'
-
Search Results
-
Topic: bb-avatars (gr)avatar plugin
I’ve made a plugin that lets you set your own default gravatar.
You can also choose to use Identicons, Wavatar or monsterID as the default gravatar.
You set the size and the rating you want.
This plugin overrides the built in Gravatar function, but you still have to choose to show the avatars in the standard options page, but all other gravatar options from that page is ignored.
I’ve tested it on bbPress 0.9.0.2 and 1.0-dev (from trunk), but it should work on all 0.9.x versions.
You can download the plugin from here.
I’ve also submitted it to the plugins list here on bbpress.org, and will (hopefully) show up there to
—
RG
Topic: Troubleshoot integration
I’m using the latest versions of bbpress and WordPress. I intalled bbpress to be integrated with WP. however, when I click over from the WordPress site to the bbpress site I am not already logged in. Is there a list to troubleshoot to see why this happening? I have done as much as I can do so far (eg checking secret words etc).
More irritatingly I find that I’ve been logged out of the WP site when I go back.
Thx.
Hi folks, there seem to be many people out there having similar issues, but I’ve spent all evening looking through for a solution and still no luck.
I’m trying to do a full integration of bbPress 0.219 and WordPress 2.51, full integration meaning that bbPress should load WordPress functions and vice versa.
WordPress appears to be playing very nicely and loading bbPress template tags with no problems at all. I’ve done this using
//BBPress Integration
if ( !defined('BBDB_NAME') )
require_once(ABSPATH.'forum/bb-load.php');
at the very end of my wp-config.php file, as per the tutorial at
http://www.adityanaik.com/integratepress-part-i/ . As I say, no problem so far.
It’s when I try to load WP functions into bbPress that I run into trouble. When I’ve attempted either of the following two mods to bb-config.php, it has disabled user login, as well as blocking me from /bb-admin (which re-directs straight back to home). The two mods to bb-config.php I have tried are:
// WordPress Integration //
define('WP_BB', true);
if ( !defined('DB_NAME') ) {
require_once( dirname(__FILE__) . '/../wp-config.php');
}
// **Wordpress Variables ** //
$bb->wp_table_prefix = 'wp_'; // your wordpress db prefix is
$bb->wp_home = 'http://localhost/bloomag';
$bb->wp_siteurl = 'http://localhost/bloomag';
or simply
require_once( 'C:testingserverwwwbloomagwp-blog-header.php');
With both these mods, the bbPress page loads up with no problems but, as I say, both /bb-admin and any attempt to log-in give no response and just redirect to the hompage.
Has anyone got any suggestions for what might be going wrong and the correct method to call WP functions into bbPress?
Thanks a lot,
>Ben
Topic: No SECRET_KEY in WPMU
I’m using WPMU 1.3.1 and the latest version of bbPress. There is no SECRET_KEY in the config file for WPMU and I don’t think WPMU 1.3.1 uses the latest WP cookie encryption of WP2.5. I’ve tried mouldy cookies plugin and I can’t get it to work. I’ve got the usernames integrated with the blog, but I can’t pass login credentials (cookies) between WPMU and bbPress.
Any suggestions?
Topic: Plugin localization?
Hi there!
Why don’t use plugin authors gettext localization as bbPress itself does?!
I start testing plugins for the german community at bbpress.de and find out that absolutely NO plugin could be used without direct translation. That’s a pitty and I really wonder about this situation
Regards
Jörg
bbPress 0.9 renamed the critical system email address that several plugins rely on (“admin_email” became “from_email”)
Unfortunately many plugin authors aren’t aware of this and the old setting is completely deleted from the database, which makes any older plugin that looks for “admin_email” fail and get a blank address and don’t anticipate/test for a blank. So they blindly insert the blank address into emails which causes the emailer to either fail or bounce the message.
A few of my plugins were affected, I just found another tonight, and there are several third-party ones still unpatched.
You can work around this problem by putting this into your
bb-config.php
(anywhere on a new line)$bb->admin_email = 'email@your-forum.com';
where
email@your-forum.com
is the same email address you use inside bbPress onbb-admin/options-general.php
This won’t hurt anything, causes no extra load of any kind and simply allows older plugins to work without additional edits until the authors get a chance to upgrade them.
(Just remember you “hard coded” this address if you ever change the main one for any reason. You can delete it after 1.0 is out and all plugins have upgraded. In fact the old email address will become unused after all the plugin upgrade anyway so this can’t hurt anything in practice.)
Topic: Howto get time in plugin ?
I’m trying to make a additional view in the plugin “my-views”, where I show “new post since last logout”. Inorder to do this I have added a new column to the online tabel from plugin “simpel onlinelist” inwhich I put the time when the user logoff.
I use the time from onlinelist :
$now = bb_current_time(‘mysql’);
but it look as if the time is 10 min to late!
So if I logoff and then logon again I may get some post which are to old.
In order to compare I made a small test where I made a new post and the logged out. Time on the post say 2008-04-22 11:44:07 and on the logout 2008-04-22 11:34:49.
Can anyone tell me how the time on the posts are made ?
or how the bb_current_time() works ?
Topic: Integration?
I have everything installed, Fixed the 404 errors.
Now I cant get wp and bb talking. In the integration section it already is done but. My plug ins bbpress post, BBpress Latest Discussions arent working Fatal error every time I activate.
Also the bb video installed correctly but If I click on it from the admin area it takes me to my homepage?
Topic: Can I get a theme review?