Search Results for 'test'
-
AuthorSearch Results
-
February 4, 2007 at 3:48 pm #51968
In reply to: Latest bbPress Posts In WordPress
Trent Adams
MemberIt is pretty simple to just copy the bbPress tables into the WordPress database. If you use a mySQL export script, it will actually create the tables syntax and install it perferctly! It is way easier on many integration plugins (not just this one) when they are in the same database!
Trent
February 4, 2007 at 3:27 pm #51967In reply to: Latest bbPress Posts In WordPress
baptiste
Memberccmve,
It is – and it will make your life a lot easier. Makes your config simpler too.
February 4, 2007 at 5:55 am #54013In reply to: Send Post takes 45 seconds
chrishajer
ParticipantIs anyone else having a similar problem? Or, alternatively, does anyone in the know have an idea of how I can troubleshoot this? It’s painful to make a post with the way things are now.
Still using .73 and using the following plugins:
allow-images.php
bb-limit-latest-discussion.php
bb-memberlist.php
bbpress_sitemap.php
notification.php
onlinelist.php
Thanks.
February 3, 2007 at 7:53 pm #49493In reply to: Are there any localization files?
altmejd
MemberI did that too, then I started to worry that perhaps the .po file i downloaded wasn’t the latest one. It was linked to from a rather old post..
For now i’ll just stick to the one i downloaded.
How much have you translated?
February 3, 2007 at 7:39 pm #52434In reply to: Plugin Request: Forum Categories..
spencerp
MemberJust to update everyone on this.. I’ve upgraded the forums to the very Latest SVN files for .80alpha, and the latest file changes for the Forum Categories enhancement by SamBauers..
I plan to tweak some more things though, and also release the “Gathering” theme for bbPress then. It’s still on my To-Do list, and it will get done then folks!
spencerp
February 2, 2007 at 4:34 pm #53980In reply to: Plugin: bbMenu 0.1 beta
Null
MemberHi,
Thanks for the suggestion. I will look into this and take out the cleaner div and look at the page in IE again. If it’s still not there, then it’s not the div. I’ll post my findings here as soon as I have tested this.
Thx
ps. I have no idea if there are any toolbars like FF, sorry.
February 1, 2007 at 11:49 pm #53978In reply to: Plugin: bbMenu 0.1 beta
Null
MemberSame problem in IE 7, no underline there either. It only effects IE as far as I know…
Got it running on my testsite:
February 1, 2007 at 10:38 am #53003In reply to: Request: Posts since last visit
davidbessler
MemberProblem: With forum restriction, I use the following code to filter topics with the default views:
function forum_restriction_list_of_allowed_forums($user) {
global $forum_restriction_allowed_in_forum,$bb_current_user;
foreach ($forum_restriction_allowed_in_forum as $forum_number => $forum_memberlist){
if (ereg(get_user_name($user),$forum_memberlist) || $forum_memberlist ==''){
$list_of_allowed_forums .= "'".$forum_number."',";
}
}
$list_of_allowed_forums = rtrim($list_of_allowed_forums,",");
return $list_of_allowed_forums;
}
// FILTER TOPICS
function forum_restriction_get_latest_topics_where( $where ) {
if (bb_is_user_logged_in()) {
global $bb_current_user;
$list_of_allowed_forums = forum_restriction_list_of_allowed_forums($bb_current_user->ID);
$where .= " AND forum_id IN ($list_of_allowed_forums) ";
echo "where is set to: $where";
return $where;
} else {
return $where;
}
}
add_filter ( 'get_latest_topics_where', 'forum_restriction_get_latest_topics_where' );
The problem is this doesn’t work with bb_custom_views used by since-last-visit.php. It seems the plugin changes the $where AFTER forum-restriction has already tried to filter the $where.
How do I get forum_restriction_get_latest_topic_where to add ” AND forum_id IN ($list_of_allowed_forums) ” to $where AFTER since-last-post sets $where?
Kapish?
January 31, 2007 at 7:24 pm #51966In reply to: Latest bbPress Posts In WordPress
ccmve
MemberIs it true that the ‘standard’ thing to do is install WP and BBP in the same database? If so, I’m going to take bbolman’s recommendation and copy my BBP tables into my WP database. Is it safe to copy these directly, or are the some alterations that need to be made first?
January 31, 2007 at 11:55 am #51965In reply to: Latest bbPress Posts In WordPress
mitoskalandiel
Memberlo all, I have the same problem as Staffan, when I use this fine plugin, I get no name name displayed, I have just installed the 0.75 of BBPress, and I do not have any option in my profile to enter a nicename at all, hence why the assigned database entry (‘user_nicename’) doesn’t hold a Nicename 😮
Well I could enter a Nicename via phpMyAdmin, but that’s surely not the way to work that out, because tbh I am way too lazy, to do that for every future user registering with the forum
==edit==
Nevermind my post above, just sorted it out, it works, IF you install BBP with the database tables from WP in the config.php, but NOT IF you install BBP without these information
So the nicename from the WP user-table is being used, also means, users have to enter their WP profile to change that, as this is NOT possible via BBP profile
Thx anyways
==end edit==
Anyhow, a pretty nice plugin, keep up the good work Atsutane
January 31, 2007 at 10:37 am #53582In reply to: Pretty URLs have “replies” argument?
Michael Adams (mdawaffe)
MemberThe only reason the replies argument is there is for CSS: a quick and dirty way of differentiating between topics you’re up to date on and those you’re not (via a:visited { … }).
We should probably make sure we always 301 redirect to the latest URL.
Oh, and PS: Posts do have their own URL. This one’s is
January 31, 2007 at 9:04 am #53581In reply to: Pretty URLs have “replies” argument?
breakaway
MemberI just downloaded and installed the latest version and also have this “issue”..
Is there already a solution for this?
January 31, 2007 at 3:38 am #51964In reply to: Latest bbPress Posts In WordPress
bbolman
ParticipantI think the easiest thing to do would be to just move over your bbpress install into the same database as your blog. I’m sure somebody here could probably help you modifying that plugin, but I feel like just moving would be much simpler.
January 31, 2007 at 12:59 am #51963In reply to: Latest bbPress Posts In WordPress
ccmve
MemberThat’s right Trent — I’m using 2 databases. I’ve been looking for a way to modify this plugin to get it look in the bbpress database, but I’m afraid my PHP skills aren’t quite up to it. Do you know of any other workarounds?
January 30, 2007 at 11:15 pm #51962In reply to: Latest bbPress Posts In WordPress
Trent Adams
MemberI think the plugin is designed to work when you have both wordpress and bbPress in the same database. You are using 2 different databases I would imagine then? If that is the case, then this plugin will not work for you.
Trent
January 30, 2007 at 9:24 pm #51961In reply to: Latest bbPress Posts In WordPress
ccmve
MemberI’m getting this error in WP2.1:
WordPress database error: [Table ‘wordpress.bb_topics’ doesn’t exist]
SELECT * FROM bb_topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT 10
—-
The table wordpress.bb_topics doesn’t exist because my bbpress database is named bbpress. So the proper database place to look would be bbpress.bb_topics
Any way to fix this issue?
January 30, 2007 at 7:18 pm #1328Topic: Missing Template Function ?
in forum Themeslinickx
ParticipantHi
Probably me being blind, but I could find a function that returned the post authors website url.
In my theme I didn’t want the username to be a hyperlink (in post.php), I wanted to add buttons, for profile, website, & PM.
I wrote one to get my tests working.. but is there an “official” way ?
function post_author_url() {
if ( get_user_link( get_post_author_id() ) ) {
echo get_user_link( get_post_author_id() ) ;
} else {
bb_get_option('uri');
}
}
January 30, 2007 at 4:58 pm #53001In reply to: Request: Posts since last visit
Trent Adams
MemberI will test this out for sure and get back to you later on when I get a chance! Looks good so far! Just need to test out the new features!
Trent
January 30, 2007 at 2:19 pm #53000In reply to: Request: Posts since last visit
thomasklaiber
MemberDownload the updated beta version here:
https://plugins-dev.bbpress.org/browser/posts-since-last-visit/trunk/since-last-visit.php?format=raw
Demo here:
http://la-school.com/bbpress/ (Test/test)
It requires Onlinelist 1.4 to work!!
As requested in another thread here, If you want to indicate new posts with an icon next to the topic do it this way:
<?php if ($topic->topic_time > view_since_last_visit_user()) : ?>
DISPLAY IF NEW
<?php else : ?>
DISPLAY IF NOT NEW
<?php endif; ?>
add this in front of you topic title.
At the moment the topic still stay “new” even if you’ve already seen it, till the next visit. Gonna fix this in next version.
Any Feedback?
January 29, 2007 at 11:49 pm #53946In reply to: redirection error
chrishajer
ParticipantDonHarry – what was the debug information? Maybe someone else can help? I see your server is Apache 2.2.3 and the PHP version is 5.2.0. I don’t think any of the earlier solutions will apply, especially if you are using the latest 0.75 version.
Maybe you can post your config.php with the tasty portions replaced with xxx (be careful not to change any quotations, slashes or semicolons). Maybe you have a problem there.
mrpapasworld
Membercool… will stand by… havent dug into writing plugins for bbpress yet… happy to help test if for ya too…
January 29, 2007 at 7:03 pm #53943In reply to: redirection error
donharry
MemberI just installed today, so it should be the latest version. but i’ll try what they r saying in the other post.
January 29, 2007 at 6:36 pm #53942In reply to: redirection error
chrishajer
ParticipantWhat version is installed? This problem has come up a couple times before, and I thought it was fixed in the latest .75 version, at least.
If you’re not using .75, I would start there. Here are some forum posts that dealt with the redirect issue before .75 came out:
January 29, 2007 at 12:52 pm #53140In reply to: Links in posts lose href information (0.75)
Trent Adams
MemberI have a fresh install of 0.75 and the latest TRAC version and I can’t replicate this. Anyone else having this problem?
Trent
January 29, 2007 at 10:31 am #53056In reply to: Plugin: Private Forums v 2.1
drtech
ParticipantI have posted this in two topics, forum-restriction and private-forums.
RSS will display the restricted information. The latest posts.
-
AuthorSearch Results