Search Results for 'test'
-
AuthorSearch Results
-
December 17, 2008 at 5:03 am #70133
In reply to: bbPress 1.0-alpha-4 released
Sam Bauers
ParticipantTopic renaming fixed in trunk.
We also now have a nightly builds system courtesy of Barry at Automattic. If there is a change during the day, then a new nightly will be created and made available here:
December 17, 2008 at 3:44 am #70271In reply to: latest discussions: only new since last login
Trent Adams
MemberI am not sure if this version works on latest release, but give it a try.
https://bbpress.org/plugins/topic/limit-latest-discussions/
Trent
December 17, 2008 at 3:34 am #4452Topic: latest discussions: only new since last login
in forum Requests & Feedbackkashbah
MemberI have been looking everywhere, but couldn’t find anything related.
BBpress has a standart number of 30 “Latest Discussions” topics shown in the front page. There’s also a plugin that allow admins to set this number to whatever they wish.
But I would rather have a dynamic list only with new topics or topics with new replies since a user’s last login, listed in “latest discussions”. Currently I have the “new topics” plugin, but I feel its not quite what users want.
Any ideas how this could be done or where to start coding it?
December 17, 2008 at 1:49 am #70130In reply to: bbPress 1.0-alpha-4 released
tomwi
Memberthis is great! i had downgraded to 2.5.1 for integration.
i am using bb latest discussions to show latest bbpress posts in wordpress which I could not get to work with alpha 2. i want to move back to 2.7 and alpha 4…… does anyone know of a plugin that works in bbpress alpha wp 2.7 to pull latest bbpress posts to wordpress/wordpress sidebar?
December 16, 2008 at 10:12 pm #69122In reply to: Theme: iNove Release (v0.1)
suzkaw
Member@Umit Namli – I didn’t touch the rss feed file. So I am not sure what would be causing that. Can you try uploading an original rss2.php and see if that sorts it out? Or possibly reverting to the default theme and then testing again?
December 16, 2008 at 9:50 pm #70127In reply to: bbPress 1.0-alpha-4 released
the_Wish
MemberWhile testing bbPress 1.0 Alpha 4 I am not able to change the name of any topic —I do not know whether this is a known issue or not; the procedure just looks fine, though the title stays the same.
I’ve just tested this and it’s the same for me.
December 16, 2008 at 7:43 pm #70126In reply to: bbPress 1.0-alpha-4 released
chrishajer
ParticipantbbSync doesn’t work with the latest version of anything. What version bbPress did you install, and what version WordPress?
December 16, 2008 at 7:28 pm #69120In reply to: Theme: iNove Release (v0.1)
suzkaw
MemberThis theme has just been updated and you can get the latest version (v0.2) from here:
http://ericlbarnes.com/inove-for-bbpress/
Changes Include:
1. Moved view list to right side. (idea from _ck_)
2. Removed background image. Issue with Safari.
December 16, 2008 at 6:29 pm #67834In reply to: Get Current Forum ID?
reclaimyourskin
BlockedSorry guys, I thought my problem was resolved but it looks like i’ve spoke to soon.
The code _CK_ suggested below, worked wonders to add a new “on” class on my forum links:
<li<?php if ($current_forum_id=get_forum_id()) {echo " class='on'";} ?>>
Problem!
The trouble is that the unique “on” class is being displayed on every forum link, when I need it to only display when i’m viewing forum 2 for example. Basically, i need a unique css class and current forum marker so the user knows which forum they are currently viewing.
Below is the souce code for all of forum.php (if anyone has time to have a quick look i’d really appreciate it).
<?php bb_get_header(); ?>
<h3><?php forum_name(); ?> Forum</h3>
<ul id=”forumnav”>
<li<?php if ($current_forum_id=get_forum_id()) {echo ” class=’on'”;} ?>>” title=”Latest homepage”><span>Latest<img src=”images/white-arrow.gif” style=”padding: 0 0 3px 5px” width=”10″ height=”5″ border=”0″ /></span>
<li<?php if ($current_forum_id=get_forum_id()) {echo ” class=’on'”;} ?>>forum/forum2″ title=”Forum 2″><span>Forum 2</span>
<li<?php if ($current_forum_id=get_forum_id()) {echo ” class=’on'”;} ?>>forum/forum3″ title=”Forum 3″><span>Forum 3</span>
<li class=”<?php echo $class;?>”>forum/forum3″ title=”Forum 3″><span>Forum 3</span>
<?php if ( $topics || $stickies ) : ?>
<table id=”latest”>
<tr>
<th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $stickies ) : foreach ( $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; ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></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; ?>
</table>
<div id=”viewdiv”>
<ul id=”views”>
<li class=”view”>” class=”rss-link”><?php _e(‘<abbr title=”Really Simple Syndication”>RSS</abbr> feed for this forum’); ?>
</div>
<div class=”nav”>
<?php forum_pages(); ?>
</div>
<?php endif; ?>
<?php if ( bb_forums( $forum_id ) ) : ?>
<h2><?php _e(‘Subforums’); ?></h2>
<table id=”forumlist”>
<tr>
<th><?php _e(‘Main Theme’); ?></th>
<th><?php _e(‘Topics’); ?></th>
<th><?php _e(‘Posts’); ?></th>
</tr>
<?php while ( bb_forum() ) : ?>
<?php if (bb_get_forum_is_category()) : ?>
<tr<?php bb_forum_class(‘bb-category’); ?>>
<td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><small><?php forum_description(); ?></small><?php bb_forum_pad( ‘</div>’ ); ?></td>
</tr>
<?php continue; endif; ?>
<tr<?php bb_forum_class(); ?>>
<td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><small><?php forum_description(); ?></small><?php bb_forum_pad( ‘</div>’ ); ?></td>
<td class=”num”><?php forum_topics(); ?></td>
<td class=”num”><?php forum_posts(); ?></td>
</tr>
<?php endwhile; ?>
</table>
<?php endif; ?>
<?php post_form(); ?>
</div> <!– End Content –>
<?php bb_get_footer(); ?>
Thanks again sambauers, _CK_ and other mods – you’re doing a great job.
December 16, 2008 at 4:34 pm #70123In reply to: bbPress 1.0-alpha-4 released
lorenzocoffee
Memberhi all, hi cookye/code Godness.
I’m a small useless human with many needs,
greatest one now it is NOT to have blog users sharing login,
but it’s only and ‘simply’ to ‘automatically’ import IN BBpress
Wp’s posted articles (even not the old ones)
Would this new beta help in that,given my WP config (2.7) has not
1 or more requested ash /salt/pepper/ things?
Your…faithfully
If working solution will come up
I’ll commit to start english class too.
December 16, 2008 at 3:27 pm #70216In reply to: How to get users to be able to post in forums
chrishajer
ParticipantYour users do not need to be admin to post in your forums. I created an account in the forums and was able to make a test post. Take a look at the permissions I have there. I did not create an account on the website, just the forums.
December 16, 2008 at 3:07 pm #70121In reply to: bbPress 1.0-alpha-4 released
Matias Ventura
MemberWhile testing bbPress 1.0 Alpha 4 I am not able to change the name of any topic —I do not know whether this is a known issue or not; the procedure just looks fine, though the title stays the same. If this extends beyond me I will go to track.
December 16, 2008 at 2:35 pm #69998In reply to: Windows (Apache2/PHP/5.2.6/MySQL5.1.30)
Sam Bauers
ParticipantWell, that’s different…
But I just realised you are using bbPress 0.9 – the bb_mail() function has been replaced in 1.0-alpha with one more like wp_mail() in WordPress.
It was replaced in part because people had problems sending from Windows environments. You have probably just pinpointed the cause of that. Just a few months too late unfortunately!
For now I would just hack the core of 0.9 if I were you – it is unlikely to see any more updates. The replacement function in 1.0 should take care of this, although I would appreciate it if you could test 1.0-alpha for the same problem if you have some time.
December 16, 2008 at 2:08 pm #70228In reply to: ETA of bbPress 1.0 ?
Sam Bauers
ParticipantWell, basically I’m not sure how much more time it’s going to take to get things right for the final 1.0 release.
I could set a date, but then if it wasn’t met there’d be a whole new set of expectations and complaints to manage.
bbPress 1.0 will be released after the “1.0-rc” (release candidate) versions, which will come after the “1.0-beta” versions which will come after the current “1.0-alpha” versions.
Basically there is still very new or experimental stuff in the 1.0-alpha releases. Once that newer functionality is tied down we’ll be able to move to 1.0-beta which should only contain cosmetic changes and optimisations. Then once those are complete we’ll move to 1.0-rc, during which we will generally only do bug fixes. Once the bugs are ironed out, we’ll go to a final 1.0 release. Hopefully the minor point releases can be kept to a minimum after that.
How long is that piece of string? Maybe one maybe two months. It actually depends on people testing more than anyone coding, although if we can get more people contributing patches to core it would be great too.
December 16, 2008 at 2:05 pm #70227In reply to: ETA of bbPress 1.0 ?
Ipstenu (Mika Epstein)
ModeratorThey’re no where near the point where they want to pimp a finalized product. Personally, I’ve seen far too many projects like this fail because they promoted themselves before they were ready. Right now, even though there is a stable version, the whole site is pretty much a big public test. There’s too much going on to be able to guess a date, and based on the past, if you held a gun to my head, I’d make things up. Which is what developers do when our bosses want to know how long it will take to build the next toy for our companies. We don’t know, sometimes. Creativity (and yes, coding is just that) is hard to measure.
So. It’ll be done when it’s done. Not by years end. Hopefully us posters can help hammer out the big issues to get them to a live 1.0 version sooner, but it’ll take time
December 16, 2008 at 6:08 am #70225In reply to: ETA of bbPress 1.0 ?
John James Jacoby
KeymasterIt seems like 1.0 has really come along nicely the past month or so, with many frequent bug fixes and trac updates.
I know I’m new to the bbPress game, but I really do hope and plan to stick around as a beta tester and plug-in developer once I’m totally comfortable with what I figure out from poking around.
December 15, 2008 at 5:10 pm #70116In reply to: bbPress 1.0-alpha-4 released
ganzua
MemberHi!
I’m giving a try to a deep integration. I want to load bbpress in my wordpress theme so I have a modified bbpress kamukei where I load wp header, sidebar and footer.
I installed bbpress 1.04a, I activated the new plugin, edited wp-config.php as plugin required, I founded that all this still didn’t load wp header and I modified bbpress bb-config.php with;
define('WP_BB', true);
if ( !defined('DB_NAME') ) {
require_once( dirname(__FILE__) . '/../wp-config.php');
}Now, it seems everything works ok; bbpress loads wp-header, I have access to bbpress control panel, both, admin and users can post, I can log out… I’m going to keep my beta-testing and I’ll further report but I think Sam did it
so CONGRATULATIONS.
I’m not sure that I’ll want to load bbpress functions into wordpress so far because what I need is all the contrary; to load wordpress into bbpress so I can have a very simple and integrated forum. However, having the bbpress control panel integrated into the wordpress panel would be great.
The idea of bbpress as a plugin is very nice but Sam is totally right when he stated that we have a stronger foundation as a stand alone. Perhaps that little plugin as a “bridge” is the way to go.
December 15, 2008 at 2:31 pm #70113In reply to: bbPress 1.0-alpha-4 released
Ipstenu (Mika Epstein)
Moderatorconfigure the WordPress plugin and also follow it’s instructions to modify the wp-config.php file in WordPress.
Did that.
Further to this, you should clear out any manual settings you have made to bb-config.php in bbPress and re-check your settings in the “WordPress integration” page in bbPress admin.
Did that.
Then clear all your cookies and retest.
Did that (went in to Firefox’s cookies and after logging out, whacked everything from my domain).
Result: Login is not shared as I think it should be.
If I login on bbPress I can get into my WordPress admin area, but I do not show up as logged in on the WordPress ‘regular’ side. If I go to comment, it says I’m not logged in.
Also, if I have this line in, I can’t log in to both at the same time:
$bb->logged_in_cookie = 'wordpress_logged_in_<long string>';
I think clearly something’s wrong on my end, but damned if I can sort out what!
EDIT!
I watched my cookies as I logged into bbPress after being logged into WordPress.
WordPress makes two entries for
wordpress_logged_in_<long string>
! Both have ‘Domain’ of.domain.net
, and then path of/
and/blog/
bbPress has one entry and it has Host of
domain.net
(no leading . ) and path of/
I fixed the host/domain part by setting
$bb->cookiedomain = '.domain.net';
but I’m pretty convinced this double existence of the logged_in cookie is what’s screwing me up.December 15, 2008 at 6:42 am #70061In reply to: PLEASE Create 2 Versions of bbpress!
johnhiler
MemberHello David!
A fully integrated version of bbPress 1.0 is being tested here:
https://bbpress.org/forums/topic/bbpress-10-alpha-4-released
If you can help out with the testing, that would be great!
John
December 15, 2008 at 2:21 am #70105In reply to: bbPress 1.0-alpha-4 released
Sam Bauers
ParticipantI’ve also briefly tested the deepest integration possible with a cross include; including BBP into WP config, and WP into BBP config, thus allowing all functions in all areas.
You are a braver man than me.
December 15, 2008 at 12:16 am #70103In reply to: bbPress 1.0-alpha-4 released
John James Jacoby
KeymasterI’ve also briefly tested the deepest integration possible with a cross include; including BBP into WP config, and WP into BBP config, thus allowing all functions in all areas.
Aside from the really painful overhead and the possible plug-in conflicts, it seems to work that way also.
I do highly recommend clearing out all cookies once you’ve got everything setup.
Sam, I’ve got homework I need to do for the next few hours, but I promise by tomorrow morning I’ll have a write-up for you.
December 14, 2008 at 11:53 pm #70101In reply to: bbPress 1.0-alpha-4 released
Sam Bauers
ParticipantPeople having issues with cookies etc need to remember to configure the WordPress plugin and also follow it’s instructions to modify the wp-config.php file in WordPress.
Further to this, you should clear out any manual settings you have made to bb-config.php in bbPress and re-check your settings in the “WordPress integration” page in bbPress admin.
Then clear all your cookies and retest.
December 14, 2008 at 10:27 pm #70099In reply to: bbPress 1.0-alpha-4 released
John James Jacoby
KeymasterSam…
Logged in as KeyMaster, using the BBP1.0alpha4 (non trunk) and using the BBP Integration plugin for WP (trunk) I can confirm that all cookies, logins, logouts, and admin panels appear to be working from every direction.
WordPress installed in “ROOT/” directory.
bbPress installed in “ROOT/forums/” directory.
Pat yourself on the back soldier, we have lift-off.
Once I am comfortable with my findings and can test this more thoroughly I’ll write a detailed how-to integrate topic ASAP.
Side note: It also all appears to still work even with deep integration in the bb-config.php file. Still testing so stay tuned with that.
December 14, 2008 at 6:44 pm #70096In reply to: bbPress 1.0-alpha-4 released
Ipstenu (Mika Epstein)
ModeratorI’m not sure it fixed everything. Or at least not with root cookies.
If I log in via bbpress I’m logged into bbPress AND WordPress Admin but NOT WordPress user. If I try, subsequently, to login as WordPress user, it acts like I’m logged in, but if I go back to a regular page, it doesn’t work. If I then logout on bbPress, I can log in to WordPress. This happens in reverse as well. I can’t be logged into BOTH at once.
The ‘fix’ to that was to add this to wp-config.php
// Cookies
define('COOKIE_DOMAIN', '.domain.net');
define('COOKIEPATH', '/' );Which has the even WEIRDER side effect of logging me out between apps. Log in to bbPress, fine. Log in to WordPress, logged OUT of bbPress. Ad nasuem.
The ‘fix’ to that is to disconnect
$bb->logged_in_cookie = 'wordpress_logged_in';
Which is sooo wrong.
FWIW:
- WordPress 2.7 is installed in /blog and I’m using Giving WordPress its Own Directory While Leaving the WordPress Index File in the Root Directory
- bbPress 1.0alpha4 is installed in /forums
- I have shallow integration, where just cookies are being shared
- I have the new bbPress Integration plugin turned off (though I tested it on and off)
December 14, 2008 at 12:56 pm #67492In reply to: admin re-directs to index and unable to post.
Sam Bauers
ParticipantEven if you have integration set up perfectly, if you login from WordPress you will not get the correct cookies set to be able to access the bbPress admin area.
Also, if you are doing what johnjamesjacoby describes above you will get a similar problem as the bbPress roles will get squashed by WordPress.
There is a fix for both of these problems available, but it is only tested with WordPress 2.7
-
AuthorSearch Results