Search Results for 'test'
-
Search Results
-
I tested Vanilla for a while, and liked its simplicity, as do one group I’ve set up a forum for. One neat thing Vanilla has is a Sticky Order plugin. It allows you to drag-move sticky topics in Admin, so that important ones stay where you want them. I can’t find anything like this for bbPress. Is anyone up to creating it? (Hey, _ck_!)
Vanilla’s plugin modifies the sticky db field from 0/1 to 0-9, then uses the value in outputting sticky topics. I’m not up to coding it, but I’m sure many would find it very useful.
I’m interested in anti-spam measures that the moment, with just setting up two forums. I use Akismet and the Human Test plugin. I guess this berk was human (almost), but Akismet hasn’t flagged it as spam and removed it. I get the impression from their site that it should. If it doesn’t flag it, does an admin have to mark it as spam and delete it..?
Hi guys,
This is my first post here, but I’ve been building an wp/bb integrated site for a few weeks now, and I’ve come to the point where I think it’s time to write my first plugin. I want this plugin to redirect users to my WordPress login page if they are not logged in. It is important that the forums remain private and also that there is only one point of entry to the site for users, so as to avoid any confusion.
I have _ck_’s Hidden Forums plugin set up to control access to forums, and that’s working fine, but I need some advice on how to handle an issue or two in the code I’ve written so far. Now, I don’t do a ton of programming, and this is my first attempt at anything like this, so bear with me if I’ve committed any cardinal sins.
<?
add_action('bb_init','login_redirect_init',300);
function login_redirect_init()
{
global $bb_current_user;
$id = (!empty($bb_current_user)) ? intval($bb_current_user->ID) : 0;
if( $id < 1 )
{
$redirection = 'http://'.$_SERVER['SERVER_NAME'].'/caa/wp-login.php?redirect_to='.$_SERVER['REQUEST_URI'];
if (function_exists('status_header'))
status_header( 302 );
header("HTTP/1.1 302 Temporary Redirect");
header("Location:".$redirection);
exit();
}
}
?>As it is now, accessing bbPress redirects to wp-login with the proper redirection URL (I’m using the WP Members Only plugin), but then logging in from there kicks me back to the wp-login page again. I’m thinking that perhaps
bb_init
is not the hook for me, as it appears that the login process is not getting a chance to do its thing, and thus I’m getting booted out. As a test, I tried bb_head, but of course the headers have been sent by then, and the redirect does not work.So, if this is in fact the issue, what hook should be using? Or am I going about this all wrong? I’d really appreciate any and all input into this. Thanks, guys.
and BBPress Latest Discussions. It says someone posting and there name and then their name and post is not appearing inside the topic. In BBPress Latest Discussion will say last post by So and So and then that persons post does not appear and a different topic will then be displayed. Also the number of posts is incorrect. I am not sure if this means that Database is corrupted. Also reputation cannot be fixed unable to have it take away reputation points.
Anyone able to look into this offer solutions. I need this on a emergency basis. Thanks
Hello,
I’ve been running 0.9.4 for about six months now without major problems but today something happened. No new posts can be made and the following error displays:
bbPress database error: [Duplicate entry '7582' for key 1]
INSERT INTO bb_posts (<code>topic_id</code>,<code>post_text</code>,<code>post_time</code>,<code>poster_id</code>,<code>poster_ip</code>,<code>post_status</code>,<code>post_position</code>,<code>forum_id</code>) VALUES ('6','
test post text text text text
','2009-05-25 11:56:28','3','88.222.104.78','0','121','8')
Warning: Cannot modify header information - headers already sent by (output started at /path-to-bbpress/bb-includes/db-mysql.php:130) in /path-to-bbpress/bb-includes/pluggable.php on line 232New posts get registered in the latest-discussions list but the link to them is “#post-0” and they don’t display in the actual topic, nor in the admin panels. They actually don’t exist in the DB.
The last existing post in bb_posts is with post_id of 7581
Luckily I have a working backup before the error occurred but I want to know what might have caused it.
Topic: If I integrate …
.. the latest bbpress with the latest wordpress. Could I use the bbPress forum list loop on the frontpage of my wordpress theme? so i can show all the latest discussions.. this wont be on a sidebar, so i dont want a plugin to do this, I just want to use the same code bbPress uses but on WordPress to show the forum topics?
is this possible.? thanks in advanced.
Hi, I have installed wpmu2.7.1, BuddyPress 1.0 and bbpress “Brubeck” version 0.9.0.4.
I installed wpmu first all good
I installed buddy press all good
I installed bbpress all good
I added a few bbpress plugins for groups , comminuty blogs and another for fbconnect all good
Then i read about intergrating the logins and was linked to the screen cast step by step…even tho is said basic wp install i noticed the tag was MU so i continued.
I got to the bit where you generate the secret keys I did this grabbed the 4 keys pasted into wp-config, i left the salt and other keys in tact. Saved and uploaded the file.
Then the video said check you can login…i checked but i canont login to WPMU I get no error only a white screen, this is for admin and member logins.
Any idea what to do if the login test in the video fails?
There are no errors in the error log, there is no error on screen, only a white blank page.
I now cannot install the plugin mentioned above as i have no access to the dashboard.
How can i get the original auth/secret keys back?
Or how can i fix it, i don’t reallly want to start again as i have spent days on other tweaks and skinning and such that would be painful to lose.
I can still login to bbpress fine.
Thanks in advance for any pointers…
I dunno if my post gets deleted, but I posted this twice already and can’t find it, so here another try.
I tried installing the latest version of the social network from buddypress two days ago, but I fear it isn’t working properly. Whenever I click on a link, be it a member, blog, post, groups, create groups, etc I get redirected back to my homepage where my blog is. Is there a plugin that I am missing or do I have to set up sth?
Thanks.