Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,251 through 59,275 (of 64,515 total)
  • Author
    Search Results
  • #61745

    In reply to: 1970 issue

    livibetter
    Member

    This is quite old (check this diff)

    <?php echo date(__('F j, Y, h:i A'), bb_get_post_time()); ?>

    replace it with

    <?php bb_post_time( __('F j, Y, h:i A') ); ?>

    You are using 0.8.3, right? You should use an updated theme.

    #61744

    In reply to: 1970 issue

    Hey.

    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 endif; ?>

    <?php if ( $titles ) : ?>

    <h2><?php _e(‘Thread title matches’)?></h2>

      <?php

      foreach ( $titles as $topic ) :

      $count = $topic->topic_posts;

      ?>

    1. <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>

    2. <?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

#61742

In reply to: 1970 issue

chrishajer
Participant

I reported a similar problem for the bbPress plugin forum about 6 weeks ago, but there is no action on the ticket.

https://trac.bbpress.org/ticket/753

My guess is the template is calling the wrong time/timestamp function since it doesn’t happen with the stock kakumei theme.

#57152
chrishajer
Participant

AndrewMac, did you try the test in this post:

https://bbpress.org/forums/topic/registration-email-not-being-sent-new-issue?replies=15#post-6931

That will confirm if you can send mail from your server. It’s odd that WordPress works but bbPress does not. Is it possible the $bb->admin_email needs to be a real email address for the mails to be sent by your host? Is that a real email account?

Also, are there any mail logs or error logs? Maybe that would provide a clue.

#57151
AndrewMac
Member

The irony is that I’m using WP on same site (integrated with BBpress) and the WP side of it works fine. At any rate, thanks for the feedback!

#2651

Topic: Information

in forum Troubleshooting
adrio
Member

To install my bbpress do i need to create a new database?

I would integrate in my wordpress using same users.

#57150
livibetter
Member

@Trent, this is nice post!

@AndrewMac, why don’t you just ask Dreamhost’s support? You know, your hosting fee includes getting support from them. Although, sometimes, finding a solution on our own is faster then counting on them. But. who knows? maybe they already manage a solution for bbPress? If so, please must post the solution!

#57149
Trent Adams
Member

I can’t see how bbPress would be any different than wordpress in terms of the mail usage, so:

Emailed passwords not received

Description: When users try to register with your blog or change their passwords by entering their username and email, WordPress says that their password has been emailed to them, but it’s never received.

Reason and Solution: WordPress uses the standard php mail function, which uses sendmail. No account information is needed. This is not generally a problem if you’re using a hosting service, but if you’re using your own box and don’t have an SMTP server, the mail won’t ever send. If you’re using a *NIX box, you should have either postfix or sendmail on your machine; you’ll just need to set them up (google for how-to’s). If you don’t want to go through setting up a complete mail server on you *NIX box you may find ssmtp (http://packages.debian.org/stable/mail/ssmtp) useful – it provides “A secure, effective and simple way of getting mail off a system to your mail hub”. On a Windows machine, try a sendmail emulator like Glob SendMail (http://glob.com.au/sendmail/).

More help can be found on the forums at: https://wordpress.org/support/topic.php?id=24981

Translation, there are posts in the normal wordpress.org forums as well that even dreamhost for whatever reason doesn’t send the passwords out through sendmail. I would look in the dreamhost support as well, maybe an answer is right there for you to grab ;)

Trent

#61611
chrishajer
Participant

We should probably start a new thread to talk about themes, but there is a nice showcase here:

http://bbshowcase.org/forums/view/available-themes

And searching the forum tag “theme” or “themes” turns up a lot (in addition to theme problems.) Now, good and simple are subjective, but these are as simple as they come:

http://bbpressraw.com/bbpress_blank_themes/

#61730
livibetter
Member

@Trent and everyone, this plugin intercept login process, if the logging user hasn’t activated the account, then it will be redirect to bb-activate.php. After successful activation, the user will be redirect to bb-login.php.

And when new user is registering, this plugin doesn’t interfere the normal registering process but add an additional usermeta and send the activation code right after bbPress send the password mail.

So, there is no way this plugin will break the password being sent.

Edit: Currently, user gets TWO mails after registration, one is for password, another is for activation code. I am not planning to merge them into one, because that would have to touch many things and I don’t like that.

Edit: I knew there are some topics about mail problem, but I can’t find them now.

#61610
viveksivaram
Member

@ chrishajer , thank you for the replies. My issues seem to be fixed now.

If only we can get some good and simple theme for bbpress.

#61727
AndrewMac
Member

Hello, first off I want to thank you for this excellent pluggin.

Nevertheless, when users register at http://uniteformike.com/forums their password is never sent to them. BB-Activate is in my root directory and activate is in my root/bb-templates/superbold-bbpress (template folder) and the EnhancedRegistration folder is in my my-plugins directory, and the plugin is activated…

I hate to be one of those people, but what the heck am I doing wrong (version 0.8.3 )?

#61607
chrishajer
Participant

I thought I heard the replies in the URL was for RSS?

If you want to get rid of it, maybe this still works?

https://bbpress.org/forums/topic/getting-rid-of-replies?replies=8

#61606
chrishajer
Participant

I just checked an example on my forum for comparison.

When I am logged in (not using permalinks at all):

http://www.riversideinfo.org/forum/topic.php?id=511&page&replies=1

When I am logged out:

http://www.riversideinfo.org/forum/topic.php?id=511&page#post-5973

Both work, neither is broken, they’re just different.

I checked it in this forum too (using slugs?)

Logged in:

https://bbpress.org/forums/topic/bbsync?replies=207

Logged out:

https://bbpress.org/forums/topic/bbsync

#61602
viveksivaram
Member

@ chrishajer

thanks for the reply.

My site url is : http://aavaas.com

My forum url is : http://aavaas.com/forums

I have created a test user : bbpresstest

Password is : test

Currently there is only 1 post in my forum – “Your first topic”

When I am logged in the url for the same is : http://aavaas.com/forums/topic/1?replies=1

When I am logged out the url is : http://aavaas.com/forums/topic/1

I believe the later is a pretty permalink whereas the first is not.

Help here is appreciated. My .htaccess is located in the root folder with the following lines:

#

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /forums/

RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forums/forum.php?id=$1&page=$2 [L,QSA]

RewriteRule ^forum/([^/]+)/?$ /forums/forum.php?id=$1 [L,QSA]

RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /forums/topic.php?id=$1&page=$2 [L,QSA]

RewriteRule ^topic/([^/]+)/?$ /forums/topic.php?id=$1 [L,QSA]

RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /forums/tags.php?tag=$1&page=$2 [L,QSA]

RewriteRule ^tags/([^/]+)/?$ /forums/tags.php?tag=$1 [L,QSA]

RewriteRule ^tags/?$ /forums/tags.php [L,QSA]

RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&page=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/?$ /forums/profile.php?id=$1&tab=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]

RewriteRule ^profile/([^/]+)/?$ /forums/profile.php?id=$1 [L,QSA]

RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /forums/view.php?view=$1&page=$2 [L,QSA]

RewriteRule ^view/([^/]+)/?$ /forums/view.php?view=$1 [L,QSA]

RewriteRule ^rss/?$ /forums/rss.php [L,QSA]

RewriteRule ^rss/forum/([^/]+)/?$ /forums/rss.php?forum=$1 [L,QSA]

RewriteRule ^rss/topic/([^/]+)/?$ /forums/rss.php?topic=$1 [L,QSA]

RewriteRule ^rss/tags/([^/]+)/?$ /forums/rss.php?tag=$1 [L,QSA]

RewriteRule ^rss/profile/([^/]+)/?$ /forums/rss.php?profile=$1 [L,QSA]

</IfModule>

#49639

In reply to: Emoticons For bbPress?

migpilot
Member

Aye, same here. All worked nice in the version previous to .3 but now nothing……

#61707
richsad
Member

Here’s where I’m at. if I modify the function get_profile_info_keys in /wpmu/bbpress/bb-includes/functions.php and change the definition of get_profile_info_keys to what I want, it’s all good. I changed the text to make it fit and apologize for poor formatting. The downside here is I am changing bbpress code, not my own template. There was no documentation indicating get_profile_info_keys is eligible for being plugged in, but it seems like it is. So I tried hardcoding first to see if this obtained the desired results. It did. The profile info prompts displayed correctly on registration page, the data was written the appropriate usermeta table, and viewing the profile displays the newly named fields and shows correct data. So far so good. Below is the code (sorry for poor formatting). Of course, the fatal flaw here is this NEEDS to be done in a plugin. So now I will tackle this. If anyone has a plugin sample for bbpress that shows modification of profile_info_keys I would be very grateful to take a peek. I believe by tomorrow I will have this hashed out and working properly as a plugin with no changes to core bbpress code. I will share that code here when I get there. In the meantime, feel free to flame, compliment, empower, disempower, or any other useful feedback! I am heading into no man’s land…

//meta_key => (required?, Label). Don’t use user_{anything} as the name of your meta_key.

function get_profile_info_keys() {

return apply_filters(

‘get_profile_info_keys’,

array(

‘user_email’ => array(1, __(‘Email’)),

‘tip’ => array(0, __(‘A tip you would like to share?’)), ‘favorite’ => array(0, __(‘Favorite products?’)),

‘more’ => array(0, __(‘How are you getting more?’)),

‘interest’ => array(0, __(‘Hobbies/interests?’))) );

/* original array follows

array(

‘user_email’ => array(1, __(‘Email’)),

‘user_url’ => array(0, __(‘Website’)),

‘from’ => array(0, __(‘Location’)),

‘occ’ => array(0, __(‘Occupation’)), ‘

interest’ => array(0, __(‘Interests’))) );

*/

What I’d love is to see someone has tread in these waters and knows how to use a plugin to implement an overridden get_profile_info_keys. I’m getting old for these all night programming marathons. It was fun the first three decades, but now the arthritis flares up and I have to break to take my Centrum Silver… So all help will result in admiration from me to you! Ships ahoy.

#61782

In reply to: Forum WIthin WordPress

Trent Adams
Member

Not sure if this still applies, but I found something in the wp.org forums and posted it at:

Adding bbPress as WP Page

Trent

#2646
kicksonfire
Member

Is there a way to have the bbpress forum show within one of the wordpress pages. I dont want my users to go from one site to another that looks different. I want them to stay on my blog yet do everything in the forum while still staying on the blog. is that possible?

#61750
Trent Adams
Member

These might give you an idea how to do it (or might just work for you).

https://bbpress.org/plugins/tags/authentication

Trent

#61774
Trent Adams
Member

From the FAQ:

Create a file called .htaccess in bbPress’ root directory. Put only the following line in that new file.
Options +MultiViews

Just upload a file like htaccess.txt with the line mentioned above and then use the FTP program to name it to .htaccess versus htaccess.txt (notice the dot before name).

WordPress is just thinking right now that you have a URL that doesn’t have an assigned page or post to it and it is getting screwed up! Try that one out!

Trent

#61773
kicksonfire
Member

What is my .htaacess file on my bbpress folder suppose to say?

And how can i create it if i have a mac?

I have my own server with theplanet.com

#61772
Trent Adams
Member

It might be that the .htaccess file of wordpress is over-writing the one that should be in the bbPress folder /beta/. I have heard this can happen. Do you have the .htaccess in the bbPress folder? What host are you running? I think (without searching) that this was something on GoDaddy, but I am not 100% sure…..

Trent

#61779

In reply to: RSS to Posts?

Trent Adams
Member

I know nothing that would do it straight to bbPress, but one could be written based on the WP plugins like WP-AutoBlog, FeedWordPress or another Maggie based plugin.

I think the best bet would be to great a WP blog (hidden) that populates using one of the mentioned plugins and then a bbPress plugin like bbSync or bbPress-Post to pull the entries from WP into bbPress as entries.

It would be better to create a plugin that does it automatically, but if you don’t want to re-invent the wheel, that is the only solution I can think of right now.

Trent

#2644
kicksonfire
Member

I have wordpress installed in my main directory kicksonfire.com

I have installed bbpress at http://kicksonfire.com/beta/

for some reason when i click anything it takes me to teh 404 error page of my wordpress blog… wat can be wrong?

Viewing 25 results - 59,251 through 59,275 (of 64,515 total)
Skip to toolbar