Search Results for 'test'
-
AuthorSearch Results
-
July 16, 2010 at 12:21 pm #91102
In reply to: forumlist table wrapping issue
pastorbobsforum
MemberOK, but it’s not working. I don’t think that the line nr matters that much, does it?
Anyway, I’ll post everything that involves my forumlist from my stylesheet here, to prove that I did exactly what you’ve suggested.
.num, #forumlist small {
font: 11px Verdana,Arial,Helvetica,sans-serif;
text-align: center;#latest td, #forumlist td, #favorites td { padding: 5px 10px; }
#forumlist tr td div.nest {
padding-left: 2.5ex;
}
#latest tr:hover, #forumlist tr:hover, #favorites tr:hover { background-color: #d8dcf2; }
#latest th, #forumlist th, #favorites th {
text-align: left;
background-color: rgb(102, 102, 102);
font: 11px Verdana,Arial,Helvetica,sans-serif;
font-weight: normal;
padding: 5px 9px;
color: rgb(255, 255, 255);
}
#latest th a, #forumlist th a, #favorites th a {
color: rgb(200, 200, 200);
font-style: italic;
}
#latest th a:hover, #forumlist th a:hover, #favorites th a:hover {
color: rgb(255, 255, 255);
}#latest, #forumlist, #favorites {<br />
background-color: #f7f7f7;<br />
margin-bottom: 3em;<br />
}</p>
<p>#latest, #forumlist {<br />
margin-top: -0.9em;<br />
padding-right: 10px;I hope that it is of some use.
Bob
July 16, 2010 at 9:51 am #91045In reply to: Latest on better editor?
Ivaylo Draganov
Memberwoot – that zaerl editor is right on the point, I hadn’t noticed it before. You could also check out this topic on how to implement markItUp as editor for bbPress:
https://bbpress.org/forums/topic/bbcode-toolbar-with-markitup-editor
The explanation is for bbCode, but it could be easily changed for HTML input.
July 16, 2010 at 7:54 am #34740Topic: forumlist table wrapping issue
in forum Themespastorbobsforum
MemberHello.
Why would one table come up ok (latest), but forumlist would look like this? http://i896.photobucket.com/albums/ac166/nobody5973/screenshot_003.png
This is what I have in style.css
#latest, #forumlist, #favorites {background-color: #f7f7f7;
margin-bottom: 3em;
width: auto;}
Isn’t the wrapper in the body supposed to *wrap* things up nicely?
#wrapper {margin: 0 0 0 0;
background: #fff;
width: 850px;
padding: 0 20px;}
I hope that people have been confronted with this issue before and successfully overcame it,
Thank you.
Bob
July 16, 2010 at 7:05 am #91061In reply to: Populate forum_slug and topic_slug fields
kevinjohngallagher
MemberGood Morning Dan,
It definately sounds like a conversion issue. It’s not one i’ve heard of before, but it shouldn’t be too hard to fix (though there is no existing pluign that I know of).
Baiscally you’re going to need a Title to Slug function, then iterate through every forum & topic and update the database accordingly
Basically, something like this:
$sql = "SELECT * from $bbdb->topics WHERE topic_slug ='' LIMIT 100";
$rows = $bbdb->get_rows($sql);
foreach($rows as $row)
{
$topic_slug = bb_sanitize_with_dashes($row['topic_title'],200);
$sql = "UPDATE $bbdb->topics SET topic_slug='". $topic_slug ."' WHERE topic_id=". $row['topic_id'] ." LIMIT 1; ";
}So i’ve not tested this code at all, just guessing at it really.
It should update 100 topics at one page load.
(I do this incase i made a horrible mistake)
Then do the same for bb_forum table.
Kev
July 16, 2010 at 1:36 am #91044In reply to: Latest on better editor?
Cooljames
Memberreally cool
July 15, 2010 at 5:37 pm #91043In reply to: Latest on better editor?
Joe Gibson
MemberMr P –
As we say in the WordPress world, woot! Zaerl Editor is absolutely perfect. I don’t want people to import pics and such — the main thing is embedded links.
Kev – Also thanks for the suggestions.
Joe
July 15, 2010 at 2:37 pm #91042In reply to: Latest on better editor?
kevinjohngallagher
MemberHi Joe,
There is (or was) a TinyMCE editor back in the day, but TinyMCE is so far from Tiny it’s unreal.
I tink you’re also giving you users too little credit. A large percentage of people who use forums are used to seeing bbCode (though they may not know it themselves), but I always like to give my users buttons to press.
Latest update on my old plugin can be seen here:
http://www.fellowshipoftheding.org/forums/topic/shammy-changes
Please excuse the awful defualt theme and Play around with the text area.It’s 2k of code, or just uner 1% of TinyMCE.
I’d also advise to stay clear of WYSIWYG editors. People like to go absolutely nuts on those things. Everything bold and red and big fonts because “the world NEEDS to hear them”

and then ofcourse someone responds…
July 15, 2010 at 2:07 pm #91041In reply to: Latest on better editor?
mr_pelle
ParticipantHi Joe! I’m using this plugin by Zaerl and I’m pretty happy with it!
July 15, 2010 at 2:04 pm #34734Topic: Latest on better editor?
in forum TroubleshootingJoe Gibson
MemberGreeings, all –
First off, I installed bbPress yesterday and I admit I’m impressed. A very well-thought-out piece of work. It dovetailed perfectly with WP without a hitch.
The one thing it obviously needs is a slightly better editor. Asking the readers to use actual code to italicize or bold a word is decidedly old-world.
I’ve just spent an hour on Google (and here) searching for relevant terms, such as ‘WYSIWYG’ and ‘TinyMCE’, and while there seems to be lots of chatter about the subject, I haven’t found anyone with a definitive “Do this, this and this” page that’ll replace the stock editor with something like TinyMCE Advanced or NICEdit.
Anyone know what the latest scoop is?
Thanks,
JoeJuly 15, 2010 at 12:28 pm #90996ColinBradbury
Member<?php bb_get_header(); ?></p>
<p><div class="bbcrumb"><a>"><?php bb_option('name'); ?></a><?php bb_forum_bread_crumb(); ?></div>
<div class="infobox" role="main"></p>
<p><div id="topic-info">
<span id="topic_labels"><?php bb_topic_labels(); ?></span>
<h2<?php topic_class( 'topictitle' ); ?>><?php topic_title(); ?></h2>
<span id="topic_posts">(<?php topic_posts_link(); ?>)</span>
<span id="topic_voices">(<?php printf( _n( '%s voice', '%s voices', bb_get_topic_voices() ), bb_get_topic_voices() ); ?>)</span></p>
<p><ul class="topicmeta"></p>
<li><?php printf(__('Started %1$s ago by %2$s'), get_topic_start_time(), get_topic_author()) ?></li>
<p><?php if ( 1 < get_topic_posts() ) : ?></p>
<li><?php printf(__('<a href="%1$s">Latest reply</a> from %2$s'), esc_attr( get_topic_last_post_link() ), get_topic_last_poster()) ?></li>
<p><?php endif; ?>
<?php if ( bb_is_user_logged_in() ) : ?>
<li<?php echo $class;?> id="favorite-toggle"><?php user_favorites_link(); ?>
<?php endif; do_action('topicmeta'); ?></p>
<p></div></p>
<p><?php topic_tags(); ?></p>
<p><?php do_action('under_title'); ?>
<?php if ($posts) : ?>
<?php topic_pages( array( 'before' => '<div class="nav">', 'after' => '</div>' ) ); ?></p>
<p><ol id="thread" class="list:post"></p>
<p><?php foreach ($posts as $bb_post) : $del_class = post_del_class(); ?>
<li id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>
<?php bb_post_template(); ?></p>
<p><?php endforeach; ?></p>
<p><div class="clearit"><br style=" clear: both;" /></div>
<p class="rss-link"><a>" class="rss-link"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for this topic') ?></a></p>
<?php topic_pages( array( 'before' => '<div class="nav">', 'after' => '</div>' ) ); ?>
<?php endif; ?>
<?php if ( topic_is_open( $bb_post->topic_id ) ) : ?>
<?php post_form(); ?>
<?php else : ?>
<h2><?php _e('Topic Closed') ?></h2>
<p><?php _e('This topic has been closed to new replies.') ?></p>
<?php endif; ?>
<?php if ( bb_current_user_can( 'delete_topic', get_topic_id() ) || bb_current_user_can( 'close_topic', get_topic_id() ) || bb_current_user_can( 'stick_topic', get_topic_id() ) || bb_current_user_can( 'move_topic', get_topic_id() ) ) : ?></p>
<p><div class="admin">
<?php bb_topic_admin(); ?>
</div></p>
<p><?php endif; ?>
<?php bb_get_footer(); ?>I think my problem is somewhere in here… if that helps…
July 15, 2010 at 9:26 am #90908In reply to: bbPress Plugin is Born
kevinjohngallagher
MemberI think what I might be confused about, is if bbPress as it is today is close to exactly what it should be, what would you want it to do 2 years from now that wouldn’t add more bloat or slow it down?
bbPress0.9 is as good as any forum software out there, save for 2 things. Moderation and the Admin section. It’s crazily fast, secure, and extentable. It’s let down by lack of actions/filters, default theme and documentation.
bbpress1.0 is 50% slower and breaks alot of plugins but has some more hooks and an Admin section. Moderation is still the big thing, as is the default theme.
A clear out (archiving) and rethink of the plugin section and the creation of a new theme would make it very very useable.
Additionally both have also been let down by the layout/use of this forum, which makes finding information difficult; and a plugin section that doesn’t work.
Basically, all the feature requests we recieve, all go over the same ground – and can be covered by plugins. Most are covered by plugins (in a 90%) sort of way. With everything in Limbo there is no need to take things to the n-th degree.
From an honest to goodness Project management point of view, bbPress can be where we need it to be within 9 month – a year. But that time grows as we add more features (that we already have as plugins grrr) and less bug fixes.
So yeah we could fork it as is. But given Matt’s current desire to berate us (both the people here and the software) in public at Wordcamps, and his latest more… evangelistic approach to publicly taking umbridge at anyone he doesn’t like or disagrees with him; he makes the envornment out there relatively difficult to consider moving into, while intentionally hampering our efforts here.
If today, it’s good; then let’s fix up what we have to put out a solid 1.1 stand-alone, and when shift gears to focus on 1.2 as the plugin milestone.
Dude, we’re trying.
I mean, i know you know that

But in order for that to happen, we need the head honcho or “he who wont talk to us, only about us in keynote speeches”. All Keymasters, all of those who package things up and can edit the website… AutoMattic. The same folks who’re scrapping us for you.
I hate this looking like an US vs. THEM scenario, it just polarises people, and looks childish. But in honesty, “we” didn’t put ourselves in this holding pattern.
Additionally, putting out a solid 1.1 standalone will be tough and time consuming. We’ve 13 months of bugs, we’ve 13 months of backPress changes and potential changes in 3 releases of WordPress to contend with; there is going to be alot of bugs found in testing – and with Jane telling people that bbPress in its current implementation isn’t going to even work the WordPress.org forums and Matt telling people not to use the software we’re are hemmoraging people.
July 15, 2010 at 8:22 am #90906In reply to: bbPress Plugin is Born
Rich Pedley
Memberapart from when plugins are taken on board and integrated into the core.
I for one would hope that the ability to skip akismet is built into akismet for bbPress at some point in the future – retrieved from akismet is quite common here, and on the WordPress forums – enough to warrant it being added to the core. I know that is a plugin – but it is a slightly different case.
I may not be able to help to much with the coding, but testing wise, and perhaps even accessibility wise I would be able to help.
Would now be a good time to start a new section on here for discussion related to this new version?
July 14, 2010 at 2:09 pm #90964In reply to: Quick redirect to wordpress
kevinjohngallagher
MemberThe answer is both simple and not so simple.
You’re basically taking advantage of how modern browsers will give you wiggle room on your code. For example you’ve set your header to height 200px, and thus the background will only ever be 200px, even though your header is about 350px long (the content doesn’t start for 205px).
What I suggest is this:
– Remove the hight property from your header.
– Add a padding to your header of 205px to put all header content starting below your image.
– add a clearing div after every section of Floats. (above the closing tag of the header div for example).
One of the things IE6-8 does really well, is that it wraps everything in the code you put it in, which was in the original specification for HTML and CSS (IE was the first browser to support CSS, some 2 years before any other after all).
“modern” browsers won’t consider anything with a float to belong to the parent, so as your form and link are floated although in the header, they won’t ever be wrapped by it.
This is a good example, and I cant wait for some folks to read this, where testing in IE6 is brilliant. It would have caught these v early – as its unforgiving.
EDIT: Actually Pastor Bob, why not copy over the header of your WordPress site. It’s very nicely made.
Kev
July 14, 2010 at 1:21 pm #90979In reply to: Locking forum and hiding from websearches
pedagog
MemberHello zaerl
Thank you for responding. At the moment I am unable to test your plugin. However, I think I may be able to test it in a few days.
Could you provide me with code so I could code it directly without using a plugin? I would prefer to use coding myself if possible to give me a better understanding of what I am doing.
Many thanks
July 14, 2010 at 1:03 pm #90977In reply to: Locking forum and hiding from websearches
pedagog
MemberOnce again, thank you Mr Pelle. That worked fine. I will have to try zaerl-visibility when I get my production online for testing.
Thanks for all your very useful input
July 14, 2010 at 10:30 am #34725Topic: bbCode toolbar with markItUp! editor
in forum ThemesIvaylo Draganov
MemberSome time ago I came across markItUp! – a markup editor written as a jQuery plugin. It can be attached to any textarea, providing editing interface to it. The best thing is that it that interface can be totaly customized and there are many sets that are ready to be downloaded, among which is a bbCode set.
I’ve been using _ck_’s bbCode toolbar plugin but it lacked buttons for adding colors and changing font-size, so I decided to swap it for markItUp. It turned up quite nicely and the code is dead simple. Here it goes:
First, download markiItUp, along with the necessery bbCode set
http://markitup.jaysalvat.com/downloads/download.php?id=releases/latest
http://markitup.jaysalvat.com/downloads/download.php?id=markupsets/bbcode
http://markitup.jaysalvat.com/downloads/download.php?id=addons/bbcode/colors
* the color set is seperate by default, so you’d have to merge it to the bbCode set later
Upload the downloaded files to a directory on your server (my choice was
my-plugins/scripts) and include them in your template. You can do that usingbb_headinfunctions.phpof the theme (bbPress 1.x) or as a mini plugin (bbPress 0.9.x)/*
Plugin Name: markItUp! for post form
*/
function mark_it_up_init() {
echo '
<!-- markItUp! scripts -->
<script type="text/javascript" src="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/sets/bbcode/set.js"></script>
<script type="text/javascript" >
jQuery(document).ready(function() {
jQuery("#post_content").markItUp(mySettings);
});
</script>
<!-- markItUp! stylesheets -->
<link rel="stylesheet" type="text/css" href="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/skins/simple/style.css" />
<link rel="stylesheet" type="text/css" href="' . bb_get_option('uri') . 'my-plugins/scripts/markitup/sets/bbcode/style.css" />';
}
add_action('bb_head','mark_it_up_init');* Or you could just add that code to your
header.php(without the PHP function wrap-up).And last but most important – include jQuery before markItUp! in your template. That is best done using
<?php bb_enqueue_script('jquery'); ?>You can see it in action on the forum that I manage:
http://comicsbistro.net/forum/?new=1
Hope that this will be useful to someone
Cheers!
July 14, 2010 at 9:20 am #90885In reply to: bbPress Plugin is Born
John James Jacoby
KeymasterThey will if they came here for a stand alone software (or if they don’t use the latest version of WordPress).
If they’ve never used bbPress before, then they will come here not knowing it was ever standalone, and won’t have any issues installing a plugin, and turning it on.
This is the end of the line for the current implementation of bbPress.
Yes. Just like 2.9.2 was the end of the road for the 2.9 branch of WordPress when 3.0 came along. I understand the obvious differences, but at the end of the day, it’s just another day.
This entire support forum and plugin section for bbPress will have ZERO meaning for the plugin and will only serve to confuse people.
All the years of advice here for the two major versions of the standalone version will be useless for the plugin version.
It will have meaning for supporting legacy code, which happens all the time when something gets refactored in WordPress. Get it working in it’s current incarnation, then ensure backwards compatibility with existing installations that are already integrated with WordPress.
bbPress 1.0.3, and bbPress 1.1, are still being actively developed. Once those versions are available, what /more/ would you want bbPress to do on its own?
The *plan* is for everything to stay how it is, with no loss of data on bbPress.org, or anywhere else.
The bbPress extend section doesn’t include half of the things the WordPress.org section does now, in terms of compatibility checks, etc… By having bbPress as a plugin, we inherit that too.
I know that there’s broken spirits, and I don’t want it to be this way, but I can’t say anything any more clear to ease anyone’s anxiety about it.
Btw, the first commit is in. As you can all see, there’s plenty of work to do, so you’ll have nothing to worry about for a while.
July 14, 2010 at 8:44 am #90882In reply to: bbPress Plugin is Born
kevinjohngallagher
MemberAh, see this is the issue mate, and I hate that I look pedantic.
My point is that 99% of people won’t know the difference.
They will if they came here for a stand alone software (or if they don’t use the latest version of WordPress).
The ability to be standalone software is being removed, without anyone actually saying so. I know it’s not underhanded or Machevelian in any way; but it’s difficult when people skirt around an issue (unintentionally).
This is the end of the line for the current implementation of bbPress.
Thats not me being all doom and gloom, your plug-in will rock, but lets manage expectations a little and tell people who use bbPress as a standalone that their days are up (btw, that covers roughly 60-70% of our support queries).
July 14, 2010 at 6:00 am #90876In reply to: bbPress Plugin is Born
John James Jacoby
KeymasterSo bbPress1.0.3 isn’t going to be released? What of 1.1?
My involvement in the 1.0.x/1.1 branches is limited, but if I had to guess (without checking) 1.0.3 will happen if there’s anything important to push out or there’s some kind of delay with 1.1, and 1.1 will happen before it’s a plugin for sure.
Who makes these decisions?
Honestly, whomever is in charge of the project sets the roadmap. If there’s no lead developer, then there’s no release schedule, because everything is just stagnant. I recently said something similar over on the BuddyPress blog regarding activity and how it only serves to perpetually foster more activity. Ultimately, I defer any major decisions about bbPress back to Matt, if anything simply because numero uno through numero un hundred are almost all his. If someone comes along and starts ripping up the trac and contributing patches and just overall making bbPress (the plugin) awesome, and for whatever reason I’m unable to continue to fulfill my responsibility, I’ll kindly step down and let someone else grab the reigns.
Leadership on an open source project is weird to be honest. The real world doesn’t usually work this way, but I think it’d be better off if it did sometimes. I like to refer to the Ubuntu leadership code of conduct because I think it makes a lot of sense, even if not everything directly relates. Also, leadership isn’t normally even an issue until it feels like there is no leader. If the leader is a total jerk, then chances are the platform would just die because people didn’t like that person. If there’s no leader at all, well… then you just feel abandoned and weird about it, like you should try to help, but don’t know who to ask or what to do. It’s like getting broken up with out of the blue… You’re unprepared and it sucks and you’re sad and bleh… No good.
1) None of us are worried about the name from a personal view point, it could all could be renamed Bob’s Super Duper Forum for all we care ;-] , only form the perspective of not confusing users.
Then bbPress it is.

2) How are we going to differentiate this to the current “bbPress Plugin” (we already get quite a few support requests for it)?
The goal is that no one will have to. If people want bbPress today, they download the current stable version same as always. When the plugin becomes available, it’s up to us to make a great UX that helps existing bbPress users through the update, and makes sure new users aren’t smacked with tons of legacy overhead. BuddyPress was able to get bbPress installed with a 1 click install; our goal should be the same.
3) How are we going to differentiate this from a “bbPress Plugin” that actually plugs in to bbPress?
A plugin is a plugin, but there is no such thing as a “plugin dependency” like there is for enqueuing CSS and JS in WordPress. The way we tackled that problem in BuddyPress is similar to what I’d like to do with bbPress, but obviously much lighter and built in from the start.
4) Are we confident this is crystal clear to those who aren’t native Engligh speakers?
Since I only speak English, I can’t answer this confidently. I’d like to hope we do a good enough job preparing everyone for this going forward, that anyone that cares enough to contribute does so and stays on top of things.
I’m not looking to back you into a corner with this bro, but an update on the terminology we should “try” and use so we don’t confuse our already dwingling audience would be real helpful at some stage in the future.
No worries
There will be better communication all around going forward to help ease peoples minds.I think alot of us can see and understand this. What would be great though, again at some stage, is if we were allowed some visability on what those advantages and disadvantages were (at a high level).
None of us were involved in nor had any visability of the decision, or conversation even, about bbPress becoming a plugin; so it’s a tad of a shell shock as to how this has come about. You’re a few steps ahead of us because of that, so any resistance you’re feeling isn’t actually against the project or yourself/Pete

bbPress, is always bbPress, and it’s up to the project leaders/managers/grand facilitators to be the guiding light. If that’s Matt, or Automattic, or whomever doesn’t really matter. Again, if it’s a matter of authority, then to me Matt is the authority. But, again, if someone starts ripping through code and contributing tons of patches, there’s plenty of room for advancement if you’re willing to put forth the effort into the core project.
It would be really great to see the requirement gathering, and weighing up of pros/cons etc. Especially after Jane’s famous https://wordpress.org/news/2009/12/setting-scope/ post about how more standard/practical/tangable/visable methodology would be used for these decisions.
That would really help us in terms of seeing where things are going; and help us get behind you and Pete on this project

Can’t speak for Jane, and not sure how famous the blog post is, but this is the beginning of that for bbPress. bbPress just has less eyes on it, so it suffers the same way BuddyPress does; passionate userbase, very little action taking place. bbPress development will start gaining speed in the coming days and weeks, and all of those blanks will start getting slowly filled in. If you or anyone else wants to start talking about how to fill those blanks in, start up dedicated topics in the forums so we can sticky them and go over it all.
You’ve a lot of goodwill from those of us who’ve seen your work and great attitude in these last 2 years mate. Sadly, there’s not alot left in the tank of most folks in regards to bbPress itself after Matt’s “We’ve done this before.” and then bolting for the door.
https://bbpress.org/forums/topic/whats-happening-with-bbpress/page/5#post-64410
This is only compunded by Jane announcing that bbpress would no longer be used for the WordPress forums before telling anyone involved. Not quite as bad as Matt telling people in his KeyNote speech that the community was “rough” and to use “differnt software instead of bbpress”, but not helpful either.
bbPress will still power the forums, just not as a standalone piece of software anymore once this is ready.
The trust is gone. But you’re definately the man to regain it

Cheers mate, much appreciated

As an aside, bbPress has always been the forum software for enthusiasts. It’s edgy, and sleek, and when you tell people what software is powering your forums and say “bbPress” you just kind of feel like a bad ass. I think that’s part of where the apprehension to adapt to it being a plugin comes from, because plugins by their general nature aren’t usually trusted to do what they should, the way they should. Also, because bbPress is such a niche project, we’re all used to living on the latest SVN revision, salivating at the prospect of waking up the next day and seeing all the neat new little things that changed since the night before.
The reality is that most normal people don’t do that, and that’s the person we need to cater to first and foremost.
bbPress (the plugin) should be considered toxic and unstable until we say go. Not unlike WordPressMU, it was forked out of WordPress, honed, and then merged back in. bbPress (the plugin) is a separate branch of code that does not intersect the existing code in anyway. Once it’s fully refactored and stable, we incorporate all the legacy bits that we need back in with a conditional to not require it if you’re not upgrading, and Bob’s your uncle.
At least, that’s the plan.
July 13, 2010 at 11:02 pm #87867In reply to: Whoa! (bbPress.org 2.0 is live)
kevinjohngallagher
MemberProfiles are no longer showing posts in the Recent Replies in the corect order. Or actually in any order. Do people actually test this before /after they push it live?
July 13, 2010 at 9:19 pm #90870In reply to: bbPress Plugin is Born
Rich Pedley
MemberKevin has a point about naming. bbPress as a standalone sounds fine, but using the same name for a WP plugin – which will be a totally different entity – is perhaps wrong and confusing. Don’t get me wrong, because I for one am looking forward to testing and using it.
So should we be suggesting new names for the WP plugin version?
July 13, 2010 at 4:32 pm #90844In reply to: How Can I Fix a Slow Queries Problem ?
kevinjohngallagher
MemberHi Scott,
Just been through this with my WorldCup Fansite Forum after the final on Sunday night, so I’ve a few things to throw your way. I’m sorry about the slow and pedantic manner of this post too; but if it’s this or close yoru forum, we’ll just get through it!
My gut feeling is that this is a plugin and/or host issue. So lets see what we can do here:
First, lots of boring questions I’m afraid:
Is your website using WordPress at all?
If so, have you set up “deep integration”?
Did you do the installing/setup yourself?
Second, ask your host if they’re intentionally throttling you or if it’s automatic?
If it’s happening, ask them what the issue is (I doubt they’ll give you a huge run down but might find a specific issue you didn’t know was the ‘biggie’)
Third, Make backups
Copy a back up of every plugin and your theme on your hardrive somewhere, then log into bbpress and deactivate them all (apart from akismet) and change to the normal default theme.
Fourth, delete all of the plugins and themes.
Fifth, Tell your users
Write a post (then sticky to font) about how your website is going through an “upgrade” and in order to get the latest most secure most awesome software installed you’re having to accept the default theme for half a day.
Sixth, Lets have a look at those SQL queries.
Open up your bb-config.php file and add the following line before the database connection stuff (at around line 33):
define('SAVEQUERIES', true);Seventh, edit your footer
open up your footer.php in (my-templates/kakumei/) and add this to the very bottom:
if (bb_current_user_can('administrate'))
{
global $bbdb;
print_r($bbdb->queries);
}Apologies for this, but that last line is going to have something that looks like “->” in it. Please, make this into “-” and then a right arrow (usually shift+period). It’s a bug here on this forum – should be fixed soon.
Eight, load your forum.
At the bottom of your homepage you should see a big list of stuff, which will have lots of SQL commands.
This is a list of all the SQL commands that load, in order, along with the time taken to execute.
Do any of them look to be taking longer than the others?
Copy and paste this list into a text file and save on your desktop (there will be about 15 SQL commands with a few lines around them).
Nine, recount.
Log into your admin area and go to Tools.
Select ONE checkbox at a time and hit “RECOUNT ITEMS”.
Do this for all checkboxes going down the list.
Ten, load your forum (again).
Repeat Step 8.
Compare the results betwen the two text files.
Have any of the “times” come down?
Are any of them above 0.1 seconds?
Are any of them betwen 0.5 and 1 second?
July 13, 2010 at 12:03 pm #57172In reply to: Registration Email Not Being Sent – new issue
Sunnichka
MemberYeah, I know that this topic is old, a pity it’s not very busy here
Well, I wanted to use bbPress registration because there are more fields in it and i dnt want to mess up installing extra-plugins to WP to get all necessary datas from users when I could get all needed from bbPress.All changes i was trying to do in class.mailer.php is to put registered email to $Sender end played with $Host because it’s not localhost at godaddy hosting.
It didnt work with WordPress before I started to change anything anyway.
Sorry, I’m not a hardcoder and this bloody thing causes me headache already a week. Didnt happen on testhosting

But thank you for reply!!!
July 13, 2010 at 11:39 am #57171In reply to: Registration Email Not Being Sent – new issue
kevinjohngallagher
MemberThat makes sense.
You shouldn’t really need to change anything, thats the joy of the default mail() function. I’m not sure what drove you to make the changes in the first place (this 3+ year old thread isn’t the best place to get data, alot has changed since 2006).
I’d get rid of whatever changes you made, and then test on WordPress.
If that fails, then it’s off to the WordPress support forum for some help.
host said that it’s a script error and they can’t help
Did they happen to give you the error? that will help the WordPress folks sort it quicker
July 13, 2010 at 10:19 am #57169In reply to: Registration Email Not Being Sent – new issue
kevinjohngallagher
MemberHi Sunnie,
The first thing to check is if WordPress can send registration emails.
If it can, then we have a bbPress issue.
If it can’t then it’s a server issue, and the quickest resolution is to contact your hosts and use the WordPress support forum (as there are more people on there).
Test and let us know
-
AuthorSearch Results