Search Results for 'test'
-
Search Results
-
Topic: Flickr on sidebar
Until now, I never had problems with Flickr rss (I mean these cool latest 75×75 images) because I was using WordPress plugins. But now, I have no idea how to put latest images from Flickr group in my bbPress. I was reading API docs for two days now, and I don’t understand it completely
.Can anybody help? Or more, anyone have proper plugin?
.
Topic: Adding bbPress to WordPress
I know this is on the forum but for the life of me i just cannot find it. But I need to show the latest threads on my wordpress site.
I remember there was something like adding one line to the wp config file or something like that. does anyone know how to go about doing this and show the latest threads?
thanks
Topic: Show (gr)avatar on frontpage
Hello,
does anyone know how to show the gravatars of the Latest and Original poster on the front page, if so what/where would be the parameters for there dimensions of the image.
I just need to show a 50×50 gravatar of the latest poster on the front page next to the username of the latest poster in the “Latest Poster” column of each topic.
AND
A 50×50 gravatar of the original poster and the username of the original poster right next to the link of the topic, on each row.
Note: http://emptees.com/talk – has a similar thing to what i need, they have the author post avatar on there front page.
Thanks for any help
ok, so I added
require_once('path/to/bbpress/bb-config.php');to my wp-config.php file. I then added the bbpress discussions code:<table id="latest">
<tr>
<th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:
<table id="latest">
<tr>
<th>Movie — Add New »
</th>
<th>Posts</th>
<th>Last Poster</th>
<th>Freshness</th>
</tr>
</table>
Obviously, there is something wrong. Does anyone know what?
Topic: Where are the user comments?
Hi there,
I’ve been using bbpress for a while but I recently updated my servers and switched all the sites over to it. Much to my frustration I am experiencing infinite loops when attempting to edit or view any profiles or topics. Thus making a rather rubbish forum!
Admin pages work fine, WP integration went through perfectly, topics can be posted BUT not viewed.
Right so heres the spec:
Windows Server 2008
IIS7
PHP 5.2.6
MySQL 5.1.25
Both the latest versions of WP and BBpress, WP is installed absolutely fine.
With debug activated I get the following:
REQUEST_URI: string(31) “/journal/messageboard/topic.php”
should be: string(37) “/journal/messageboard/topic.php?id=39”
full permalink: string(64) “http://www.XXXXX.com/journal/messageboard/topic.php?id=39”
PATH_INFO: NULL
If anyone can help me out I would actually love them a great, great deal…..
I found this thread, which is quite old:
http://comox.textdrive.com/pipermail/bbdev/2005-July/000206.html
But the fixes suggested there are in the settings file already.
Help would be appreciated and thanks in advance
M.A
I have successfully merged bbpress with my website and it works fine sharing user data and logging in/out… very almost.
When a user first moves to the forum it shows them as not logged in, though if they click a forum link or refresh the page they are then shown as logged in.
I only modified pluggable.php a little to make the cookie easier to handle and I’ve tried adding a function (below) in index.php and template header. Very crude , checking a cookie is set and calling the login function, but it’s just a test:
if (isset($_COOKIE[bbpres...]) && isset($_COOKIE[IHuser...]) && isset($_COOKIE[IHpass...])){
$login = decode($_COOKIE[IHuser...]);
$password = decode($_COOKIE[IHpass...]);
bb_login($login, $password, $remember = false);
}Really I’m looking for where bbpress first checks to see if a user is logged in and sets headers but so far I’m out of luck. Where do I need to put my function so a user will be shown as logged in as soon as the navigate to the forum?
P.S. I will build a more solid function so a users password isn’t in a cookie, like I say – just a test!
(my site is
For more than a week I am fighting with bbPress and the latest WordPress version.
My problem is that user comments don’t appear. Well, I can see them in the Administration area in WP but not in the forum. Users already move away because they think I blocked their comments.
I actually installed bbpress because I wanted users to discuss on my page but now no one can discuss anymore lol.
My WP installation is at http://www.webserver.com and I installed bbpress on http://www.mywebserver/forum (example addresses)
I installed the WP plugin “bbPress Post” and filled out all the details. Also I installed bbSync.
At least when I write a new post the post title appears in the forum. So one good thing. But that’s all. How do users comment from my blog? I don’t want to put a link on every post “go to the forum and post there”.
I do have a custom theme by the way.
Actually I am not an idiot but now I’m just freaking out with bbPress because it’s so complicated and most of the how-to’s don’t work or are just bad explained. Here’s an example:
“Want a link back to the blog post? ” it days in the bbSync settings.
Well, what can I do there? There’s a field. Do I have to write YES or a special tag?
Absolutely no explaination.