Search Results for 'test'
-
Search Results
-
Greetings,
I just installed BBPress today and was totally psyched because I have heard such great things about the WordPress products.
But . . . I am having major problems:
– New user testing – password doesn’t work. Login failed.
– I created forums and when I select the topic I get a “The requested document was not found on this server.” error.
– When I select a user profile (including mine) I get the same error.
– This is where it is strange and makes me think that maybe I need to reinstall the whole thing. I can’t create a new post. Nowhere does it say “Create post” on the forums.
I did install the Approve User Registration plugin by Aditya Naik, but I deactivated it and I am still having the above problems.
Thoughts?
thanks in advance,
Jeff
Just made a query in my forum functions.php to display the 5 latest stories from WordPress. Pretty basic but it may help someone:
// get WP news
function wpnews() {
global $bbdb;
$stories = $bbdb->get_results("SELECT post_title, guid, post_date_gmt FROM wp_posts WHERE post_type='post' AND post_status='publish' ORDER BY post_date_gmt DESC LIMIT 0,4");
foreach ($stories as $story) {
if ($i <= 4) {
echo '<li><a href="' . $story->guid . '">' .$story->post_title . '</a></li>';
$i++;
}
}
}then call it on your forum with <?php wpnews() ?> and style to suit.
Topic: Instant Password
Hey All,
I posted this here…
http://bbpress.org/plugins/topic/instant-password/
but was wondering if anyone else had the same problem. I set up the instant password plugin and tried to set up a test accound but kept on getting a ‘password is too short’ message – no matter what I type in.
Thanks!
I’ve got this plugin up to something testable and releaseable. v0.21
Description
Enable BuddyPress group forum features in bbPress.
BuddyPress has three types of groups. Public, Private and Hidden. In all three cases users must be members of a group to participate in group forum conversations.
These two plugins modify a standard bbPress forum installation to allow BuddyPress group members to carry on discussions in bbPress.
BuddyPress public groups will be read only in bbPress. Anyone wishing to participate in a public group discussion must be a member of that group in bp.
BuddyPress private and hidden groups will be hidden in bbPress. Only members of these groups will see the forums and be able to participate.
BuddyPress group admins and mods have moderator privileges in bbPress. The moderator role is restricted to their group forum.
Read more and download:
http://code.ourcommoninterest.org/2009/02/14/buddypress-group-forums-for-bbpress/
Hi all
After upgrading:
WP2.5 -> 2.7
BBPress 0.9.4 -> 1.0 alpha 6
WP is running badly.
In order to get access to functions of BBPress, I have these lines at the end of wp-config.php:
if ( !defined('BBDB_NAME') )require_once(ABSPATH.'forum/bb-load.php');
Into the index.php of my WP theme, I wish to display the last topics of the forums, by doing:
<?php$forums = get_forums();
$topics = get_latest_topics();
$super_stickies = get_sticky_topics();
for ($i=0;$i<3;$i++){
$topic = $topics[$i];
?>
" title="See the message of <?php topic_author();?>"><?php topic_title();
<?php } ?>
The display of the latest messages was working well and still working well after the upgrade, BUT WORDPRESS GETS INTO TROUBLE:
– the css style for the back admin of WP is not working
– the hooks into the plugins are not called anymore (add_action(‘wp_head’, ‘init_js’); where init_js() is never run)
– custom query vars are not detected into the url
Well, when I remove the require_once into the wp-config.php (see below), the trouble disappear.
//if ( !defined('BBDB_NAME') )//require_once(ABSPATH.'forum/bb-load.php');
How to get it working with the bbpress function without trouble in WP ?
I think this is a very important point for the BBPress integration in WordPress
Thanks
Topic: Databose functions
Ok, i have a mysql database and i added a karma section to users but no matter what i try i can’t get it to print. i do $karma = $bbdb -> get_results(then the tested normally sql select code here) then i put echo $karma->karma. but it prints nothing
Hey guys,
I’ve been trying to fix this for 3 days now… however I am sure it is no longer a configuration issue as I went up and down with it for the past 6 hours. I’ve just deleted and installed the latest WordPress MU and started fresh, but before I started integrating I wanted to make sure the cookies were working as intended.
When I check the cookies using Firefox’s Privacy option and my own Web Designer Plugin and viewing the cookies… I notice that all of them have a blank hash at the end…
so for example, where others mentioned it should appear as
wordpress_logged_in_(hash)
mine appears as
wordpress_logged_in_
Why is this happening on a brand new installation? I also deleted the pre-existing Hash keys and let wordpress generate it’s own and put that in the config, and still the same…
I know this ain’t the forums for it, but im sure someone has come across this.
I would like to download Alpha 5 instead of 6, since various cK plugins seem to work on the older version. Where can I download it? “Latest alpha” currently downloads Alpha 6.
I am the keymaster for my bbpress forum, and I want to change my email address, but it won’t let me.
When I am logged in as the keymaster, in the front end, when I go to “View your profile!”, the edit link is “http://blueleafcanada.ca/forums/profile//edit” and if you click on that you get the error “User not found.”
Also, if I go to the admin area and click on Users, and then click Edit for the keymaster there, it also says User not found. (And the link there is http://blueleafcanada.ca/forums/profile//edit too)
For a normal user test account I made, the link is “http://blueleafcanada.ca/forums/profile/test/edit” and when you click it it lets you edit the profile.
Even if I type in the URL manually, filling in the keymaster’s username instead of test, it still says user not found.
Is this normal?

