Forum Replies Created
-
In reply to: 1970 issue
Hey.
Yes, that’s it.
Works like a charm now!
And yes again, I’m using 0.8.3, but switching to a different theme is close to impossible since I have modified it so heavily to match my WordPress-Blog.
Thanks a lot!
In reply to: 1970 issueHey.
I checked the Database time and it is correct.
So it must be some theme/bbpress related error.
Here’s my search.php:
<?php bb_get_header(); ?>
<h3 class=”bbcrumb”>“><?php option(‘name’); ?> » <?php _e(‘Search’)?></h3>
<?php search_form( $q ); ?>
<?php if ( !empty ( $q ) ) : ?>
<h2><?php _e(‘Search for’)?> “<?php echo wp_specialchars($q); ?>”</h2>
<?php endif; ?>
<?php if ( $users ) : ?>
<h2><?php _e(‘Users’)?></h2>
-
<?php foreach ( $users as $user ) : ?>
- ID); ?>”><?php echo get_user_name( $user->ID ); ?>
<?php endforeach; ?>
<?php endif; ?>
<?php if ( $titles ) : ?>
<h2><?php _e(‘Thread title matches’)?></h2>
-
<?php
- <h4>“><?php topic_title(); ?></h4>
<small><?php printf(__(‘ %1$d replies — Last reply: %2$s’), $count, get_topic_date(__(‘F j, Y’), $topic->topic_id) ) ?> </small>
foreach ( $titles as $topic ) :
$count = $topic->topic_posts;
?>
<?php endforeach; ?>
<?php endif; ?>
<?php if ( $recent ) : ?>
<h2><?php _e(‘Recent Posts’)?></h2>
<ol class=”results”>
<?php foreach ( $recent as $bb_post ) : ?>
- <h4>“><?php topic_title($bb_post->topic_id); ?></h4>
<p><?php echo show_context($q, $bb_post->post_text); ?></p>
<p><small><?php _e(‘Posted’) ?> <?php echo date(__(‘F j, Y, h:i A’), bb_get_post_time()); ?></small></p>
<?php endforeach; ?>
<?php endif; ?>
<?php if ( $relevant ) : ?>
<h2><?php _e(‘Relevant posts’)?></h2>
<ol class=”results”>
<?php foreach ( $relevant as $bb_post ) : ?>
- <h4>“><?php topic_title($bb_post->topic_id); ?></h4>
<p><?php echo show_context($q, $bb_post->post_text); ?></p>
<p><small><?php _e(‘Posted’) ?> <?php echo date(__(‘F j, Y, h:i A’), bb_get_post_time()); ?></small></p>
<?php endforeach; ?>
<?php endif; ?>
<?php if ( !$topics && !$recent && !$relevant && !users) : ?>
<p><?php _e(‘No results found.’) ?></p>
<?php endif; ?>
<p><?php printf(__(‘You may also try your search at Google‘), bb_get_option(‘uri’), urlencode($q)) ?></p>
<?php bb_get_footer(); ?>
</code
In reply to: Search functionHey.
That’s it. It worked just fine.
Thanks a lot!
In reply to: WordPress/bbpress – users are known but not loggd inHey.
I solved it myself.
As a matter of fact it was a http://www./no-www issue.
In WordPress my Blog-URL was http://cmscentral.de and after I changed it to http://www.cmscentral.de everything worked just fine.
In reply to: WordPress/bbpress – users are known but not loggd inMy Blog’s address is: http://www.cmscentral.de/index.php
Installed in subfolder /content/
My forum’s address is: http://www.cmscentral.de/content/forum
I installed bbpress in my Blog’s/WP’s subfolder, because that supposedly should automatically have the right cookie settings.
Could this be a www/no-www issue?
In reply to: drupal integrationHey.
I totally agree.
We really need some kind of drupal integration.
Anybody workign on this already??