Search Results for 'code'
-
AuthorSearch Results
-
December 4, 2007 at 10:50 pm #61819
In reply to: Cannot select DB error!
pwdrskier4
MemberSUCCESS!!!
It was the changes to bb-settings.php that did it, the 757 patch: https://trac.bbpress.org/ticket/757
Thanks for all the help chrishajer and livibetter. I could still be staring at my password wondering why it won’t work.
So now I have reinstalled again (to get rid of any bad changes I made while trying to figure this out) and we are good to go.
And yes, this was a “all of the sudden” problem, don’t know how, don’t know why. I have some other similar sites running the same code/settings and they still work fine without the patch even though they too have the host: ‘localhost:/tmp/mysql5.sock’
Also, yes, I am on 0.8.3 and was before the issue – if you were still curious.
December 4, 2007 at 9:21 pm #61818In reply to: Cannot select DB error!
livibetter
MemberAre you using 0.8.3?
Try to patch with https://trac.bbpress.org/ticket/757
or
modify https://trac.bbpress.org/browser/trunk/bb-includes/db-mysqli.php#L56
to be
$this->$dbhname = @mysqli_connect( $server->host, $server->user, $server->pass, null, null, $server->port );
December 4, 2007 at 6:25 pm #61809In reply to: Documentation
jwagener
MemberOk, thanks for the link. I have fixed the error with my blog. Thanks for notifying me.
December 4, 2007 at 1:24 pm #61808In reply to: Documentation
livibetter
MemberThe best way to work with bbPress is reading the source, currently. Unfortunately, not everyone can code.
Btw, your Programming page of blog has an error.
December 4, 2007 at 6:34 am #61589In reply to: How Do I Do This?
chrishajer
ParticipantI’m not sure which version of front-page.php you’re using (couldn’t make my site look like yours using the last front-page.php code that was posted) but I THINK all you need to do is change the line that looks like this:
<table id="forumlist">
to this:
<table id="forumlist-<?php forum_id(); ?>">
That just adds a dash and the forum number to the table id. That should validate. But I think that will affect the CSS in a bad way. There will no longer be an id of “forumlist”, they’ll all be “forumlist-something” which the CSS will have trouble with.
Maybe it would be better to do something like this:
<table class="forumlist" id="forumlist-<?php forum_id(); ?>">
Then you would need to change your style.css to make any references to #forumlist look like .forumlist (change from applying the forumlist styling to ids and make it apply to classes.)
That’s a lot of work, but ids are supposed to be unique on a page, where classes are not. This is actually a better application of a class since all the tables should look the same and use the same styling. You’re not referencing them with javascript or something where the ids matter.
I just tried this and it worked on mine and validated properly. There were 6 instances of #forumlist that needed to be changed to .forumlist in my style.css
Hopefully that will work for you.
December 4, 2007 at 12:29 am #53606In reply to: Add a “page” to my template
ralev-dot-com
MemberI’m using this method here: http://desbar.eu/
check the ABOUT page, for example
it works for me.
Keep in mind there are a lot of ways to make a static page.
1. The most simple is to create some about.php file.
It should looks like livibetter says:
<?php bb_get_header(); ?>
The static content here.
<?php bb_get_footer(); ?>
2. put this about.php in the root directory ( e.g. – the URL should be something like youbbPressSite.com/about.php )
3. Then call this URL from somewhere ( e.g. – put a link in the Header.php )
that’s it.
PS: I’ve just been curious about the method above (livibetter version) – that’s why I used it
looks smoother at first site.
December 1, 2007 at 6:56 pm #61799In reply to: Front page stickies on forum pages?
livibetter
MemberNo ideas. But it has something to do with
bb_index.php_pre_db
( https://trac.bbpress.org/browser/trunk/index.php ) orbb_forum.php_pre_db
actions. So I just left it unchanged.December 1, 2007 at 5:56 pm #61797In reply to: Front page stickies on forum pages?
livibetter
MemberThis should work:
<?php
if ( !$bb_db_override ) :
$super_stickies = get_sticky_topics();
endif;
?>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><small><?php topic_time(); ?></small></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>December 1, 2007 at 4:20 am #61748In reply to: 1970 issue
chrishajer
ParticipantNow the plugin browser theme just needs to be fixed
November 30, 2007 at 9:10 pm #61747In reply to: 1970 issue
livibetter
MemberI see.
There are some useless code in
search.php
, like $users and $titles. They are not used in 0.8.3. If you can’t switch to an updated template, then you should diff to find out what has been changed.November 30, 2007 at 8:55 pm #61745In reply to: 1970 issue
livibetter
MemberThis 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.
November 30, 2007 at 8:53 pm #61744In reply to: 1970 issue
electroniques
MemberHey.
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
November 30, 2007 at 8:48 pm #61375In reply to: Agregar nueva categoría de temas
spanish4practice
MemberGo to Content > Forums and “Add Forum” there. That will give you another “category” (actually another forum) to post in.
Esta bien, voy a explicarse lo que él dijo en el español
. Vaya usted al Content>Forums, y clicka ¨Crear Forum¨, y se puede crear un catagoría con el nuevo foro
. Hay un opción
. Espero que usted sepa ahora
.
November 30, 2007 at 8:21 pm #61743In reply to: 1970 issue
livibetter
MemberCould you post the
search.php
in your template? and check database to ensure the time is correct in database.November 30, 2007 at 2:38 pm #61796In reply to: Information
chrishajer
ParticipantUse the same database and just use the
$bb_table_prefix = bb_
table prefix as suggested in the config.php. No need for a whole new database just for a few new tables.November 30, 2007 at 2:36 pm #57152In reply to: Registration Email Not Being Sent – new issue
chrishajer
ParticipantAndrewMac, 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.
November 30, 2007 at 6:37 am #57149In reply to: Registration Email Not Being Sent – new issue
Trent Adams
MemberI 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
November 30, 2007 at 5:40 am #61730In reply to: Plugin: Enhanced Registration
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 tobb-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.
November 30, 2007 at 5:39 am #61793In reply to: Search function
Trent Adams
MemberShould work with:
<?php search_form( $q ); ?>
Trent
November 30, 2007 at 5:35 am #61729In reply to: Plugin: Enhanced Registration
livibetter
MemberDid you mean password or activation code? Your forum is quite new, so I guess that your server can’t send any mail for your forum. And this isn’t a plugin’s problem.
Please deactivate this plugin, and register new account, then see if you can get the password mail. If you can’t, then you have to fix mail problem.
November 30, 2007 at 5:34 am #61728In reply to: Plugin: Enhanced Registration
Trent Adams
MemberIf the plugin is disabled does this work because for the first part of the registration, the plugin really doesn’t do anything (at least I don’t think). The user gets their password by email, they head to the login page, put in username and password, get another screen (bb-activate.php) which then asks for the “activation” code emailed to them in a second email. So I am wondering if users are getting the password emails with the plugin disabled first I guess!
Trent
November 30, 2007 at 3:51 am #2650Topic: Search function
in forum Themeselectroniques
MemberHey.
I would like to insert a Search Function into my theme, but I couldn’t find the right code anywhere.
Does anyone know the php-call to insert into my template?
November 30, 2007 at 3:12 am #61786In reply to: Can’t login
chrishajer
ParticipantMaybe there are problems with the mod_rewrite rules with your forum? If this line is set to true, or slugs, try setting it to false in your config.php
$bb->mod_rewrite = false;
As for the other sites, I have no clue. Let’s fix your site.
November 30, 2007 at 2:07 am #50390In reply to: Slashes being added in front of apostrophes
Beau Lebens
ParticipantAny updates on this being handled “properly” to avoid having to hack core code (or add filters just to do “normal” stuff)?
I’m still seeing it in 0.8.3 with WP (MU) integration.
November 29, 2007 at 11:57 pm #2648Topic: Can’t login
in forum TroubleshootingBen L.
MemberI can’t seem to log in to my forums or blog. What troubles me is that another blog on a different domain refuses to let me log in also, and all three of them are on the same server.
When I click the register link, it tells me that I’m already logged in.
Edit: I seem to be logged in when I use a page that has a php extention.
-
AuthorSearch Results