Search Results for '\"wordpress\'
-
Search Results
-
Hello to developers,
I really love bbPress! Simple and fast! Integration options to WordPress is good way but I really love a idea about stand alone forum solution. Before that, there is few things that should be consideret to next release.
Unread post/topics – Is it really hard to made this? This is main problem of all lightweight forums scripts – no marknig of unread post and parent topics. Just put that to the core and give options to admin. If they are interested about that fetahure they’ll enable it. Or just give us some up-to-date plugins that works and are supported by official dev team.
Quoating and Posting reply – Light weight doesnt mean “no bbcode” or another nice code like !Texy. But please, no HTML or worst – XHTML STRONG tag as formating for messages! I really like simple way to add comments but i cant stay manual formatin of text with HTML. Its such waste of our time!
And where is Quoting support like WP has?
Allowed quicktags – Please, give me options set allowed tags from admin. Or just give better documentation! WordPress is the best because good documentation! I cant spend all day looking for right file just because its not at documentation and sometimes its impossible find some reasonable answers on google.
Automatic tags – This is not serious problem. Just consider…
Slug – Slug like WP. I miss this feathure. Its hard to fix slug problem if i cant directly acces to that from admin. Only way i can do it is mysql.
Thats it! Nothing more. I am new here and i dont follow main goals of project but this is my opinion why is bbPress so uncomfortable to me and my friends.
Its just my opinion and I hope you will consider make some serious progress on it.
Sorry for my english.
Thanks
PS: I hope there will be more good ideas. Topics like this should be general, sticked.
I’m relatively new to this, so bare with me…
I’ve got a WordPress site integrated with a BB Press forum (one login for both) and I have created a my-plugins directory in my base directory and the permissions on it is 755 numerically. Even though I believe everything is set up correctly, and the forum itself works absolutely perfect, a total of 0 of my installed plugins show up on the administrative plugins list (default ones show up still). If I am not mistaken, someone mentioned that BB Press is not a plugin in itself, but the directory is in fact in my plugins folder.
In other words, I install my BB plugins to:
ftp and website address stuff…/wp-content/plugins/bbpress/my-plugins
Every file in my-plugins is 755, and no one else seems to have this exact problem when they use plugins. So does anyone know what exactly is going on?
WordPress version is the most up to date one, I’m using the default green theme (for the forum), and these should easily be compatible plugins.
I use on my WordPress function ´<?php if (is_home()) { echo ” – My blog slogan”;} ?>´ on index.php.
But now i’m back to bbPress. Nothing in SMF or phpBB to me, try it and forget it… Install 1.0.2 and now i need slogan to just index.php.
Thank you.
Topic: The cost of Deep Integration
I’ve spent the last week working with a client on a rather large WP/bbP setup. One of the real joys of this project is that it’s large enough for me to get some time in for more than asthetics and QA. Hence, a few more posts her this last week and some code, and some BackPress help.
Anyway, one of my junior developers came up with an interesting stat the other day that I’ve been looking into, namely Deep Integration and it’s hit/performance. I’m sure almost all of this will be obvious to a great many of you, but I thought I’d throw out some figures.
Single Loading of software after install
WordPress2.9.2 16 database queries
WordPress30 19 database queries
bbPress0.9 09 database queries
bbPress1.0.2 16 database quieresSingle Loading of software after setup
WordPress2.9.2 19 database queries
WordPress30 23 database queries ***1
bbPress0.9 10 database queries
bbPress1.0.2 18 database quieresNow the first thing I noticed is that WP3.0 took a leap in queries. Once it takes you 20+ queries to load a simple homepage with no plugins my spider sense is tingling. Turns out that WP3.0 is somewhat sruggling with it’s new menu system. ***1 It takes 6 queries minimum, plus 1 query for each taxonomy type used in the new menu (apart from hardcoded links with don’t get an additional query). That’s a heck of a leap for something as simple as a menu. I mean, menu’s are rarely dynamic – they don’t change that often. For this particular website, as will probably be the way for the others I’ve moved to WP3.0, I’m looking at a minimum of 8 database queries simply to load the data needed to display the name and link in a menu. To be clear, that’s over 30% of database queries on a clean install of WordPress that are being called by this.
As cool as the drag/drop facility is, make every menu item a custom link and you’ll save a minimum of 2 db calls per page load.
Even better, hardcode the actual menu and save yourself 8 database calls per page load (you can hardcode an array for the walker class to iterate through and produce the same result)
Single loading of software after basic/core plugins:
Now, I believe that no WordPress (nor bbPress) install can run as expected these days without certain plugins. Your thoughts on this may vary ofcourse but I find that I need a minimum of WP-Super-cache, XML-sitemaps, WP-security-scan, wp-pagenavi, headspace/All-in-one, WP-stats, and probably a few others that I can’t remember off the top of my head. Oddly for bbPress I need more plugins.
WordPress2.9.2 23 database queries
WordPress30 27 database queries ***1
bbPress0.9 18 database queries
bbPress1.0.2 29 database quieresThat’s quite a leap. But I’m confident that I could bring down the bbPress Queries with some time spent considerably, and I could enable caching from WordPress. I’m not posting this data in itself as definative stats for everyone, so there could be optomization made for sure.
Deep Integration of WP3.0 and bbPress1.0.2:
WP3 & bbP1 56 database quieres56! With virtually no caching availible (as a plugin, for the average user with no .ini or shell access).
56! On every page (+/- a few queries).
Deep Integration of WP3.0 and bbPress1.0.2 – after first pass:
WP3 & bbP1 43 database quieresOk some quick theme changes and delayed/circumvented loading of certain things and I’ve brought it down considerably.
But the fact still remains that this is a truly crazy amount of database queries per page load.
Anyway, after presenting this (in a better looking format) to the IT director of the client, I’ve managed to re-assign myself 2 weeks to come up with a planB. We want something that allows us the functionality of Deep Integration, but without the MASSIVE overhead. I have an idea down on paper, but right now I just wanted to post a few figures and give folks a heads up.
==================================================================================
Edit: If you want to see something fun, try this:
Add to your bb-config.php and your wp-config.php
In bb-config.php and wp-config.php add the following line:
define('SAVEQUERIES', true);Then add the following code to your footer.php in your theme (right at the bottom)
wordpress footer
global $wpdb;
echo "[pre]";
print_r($wpdb->queries);
echo "[/pre]";bbpress footer
global $bbdb;
echo "[pre]";
print_r($bbdb->queries);
echo "[/pre]";*** replace the square brackets [] html brackets (they’re not showing up correctly)