Search Results for 'test'
-
Search Results
-
I’ve gone over the configuration file, and it all looks correct. I am installing in forums.nerdgrind.com, which I gave it’s own directory, so there is no wordpress installation sharing the forums directory. I’m not sure why I keep getting this error:
bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘ ”, , ”, ‘2008-01-16 00:57:55” at line 4]
INSERT INTO bb_topics (topic_title, topic_slug, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id) VALUES (‘Your first topic’, ‘your-first-topic’, , ”, , ”, ‘2008-01-16 00:57:55’, ‘2008-01-16 00:57:55’, 1)
The database is setup, and all other tables are created except this one. I am using the latest bbPress.
This information will only affect those following the bleeding edge of bbPress and WordPress development.
bbPress now has implemented in it’s trunk both the new “phpass” hashing for passwords and the new “authcookie” cookie methods which are slated for release in WordPress 2.5
This means that if you are integrating WordPress and bbPress then you can now test out the latest versions of each.
If you have any feedback or problems with integration then post here or on the bbDev mailing list.
Topic: BBpress freelance developer
Hello,
I’m sorry if this is not the right place to post. I have a blog running latest WP version and i would like to do some work integration/customisation with BBPress. I’m looking for an experienced bbpress developer that can help on this project on an ongoing basis. If you are interested, please contact me.
Topic: Are these things possible?
Hello all,
I recently dove into the exciting world of BBPress, and in the midst of working out a custom theme (tweaking structure as well), I was wondering if the following things were even possible to do, or are they more suited to be plugin requests?
– attach forum name to latest topics of main page. ie I want to have a topic display like this:
“Plugins | Lorem ipsum dolor sit amet”
(where “Plugins” is the forum name and “Lorem ipsum dolor sit amet” is the topic, obviously.
– Within each topic, separate the original post from the comments. I guess this is similar to how a blog entry is; with the entry featured at the top, and the comments displayed below and less prominently. It seems like the way BBPress is coded they can only be stacked on top of each other and have a similar design treatment?
– Tweak post count so that if no has yet replied to a post it is “0” instead of “1”
Hopefully these are just things that are right under my nose that I haven’t been able to figure out, but let’s see…
Thanks!
Hey Everyone,
I have read through tons of posts with email problems…and I have still not been able to resolve the issue I’m having.
If you goto this URL, you will see that the mail test php file I put on my server works fine: http://www.crookedhook.net/forum/mailtest.php
I recieve the email and everything.
But when you try to reset your password (any user!) or just wait for EMAIL conformation about the forum. The email is never sent and it never reaches the clients address. JUNK MAIL folders are EMPTY, the mail is not getting caught up in that.
I had wordpress installed for this site, then we decided not to use wordpress and to go with BBPRESS. So basically I deleted the wordpress folder, and uploaded the BBPRESS Files. Put in my mySQL infor chaned a few things in config, so it has my email etc… and it worked! just the email isn’t!
Maybe I missed a setting or something in the setup?
Hopefully someone can help!?
Talk to you all soon!
CHEERS
Topic: bbPress 0.8.3.1 released
From Sam’s Post on the main bbPress blog:
Due to popular demand we have bundled a bug-fix release for bbPress. 0.8.3.1 (still called “Desmond” I believe) and it is now available for download.
This version is not the latest development release so as to remain as compatible as possible with the current version of WordPress.
The primary reason for the release is to fix some bugs in the MySQLi implementation. We anticipate that MySQLi support will be dropped in the future and to this end we have made MySQL the default extension instead of MySQLi.
A few other fixes and enhancements have also snuck in:
- Deep forum breadcrumbs with thanks to baptiste
- More consistent topic labeling methods – users of the support forum plugin will probably need to upgrade to version 2.3.3
- Some fixes to stop orphaned sub-forums from disappearing from all view
- There is now one of those fancy checkboxes to mark a user as a bozo
A couple of those changes will affect existing themes. If you have questions about adapting your theme to be compatible with the new topic labeling and forum breadcrumb features, then ask over on this forum topic.
Just curious, both in terms of registration, and posting…
I only have a small test forum up, that is integrated with my personal blog, but I was experimenting with a few ideas earlier. I go by the philosophy that layers of protection is always the way to go.
So far I’ve implemented:
1.) Visual check, pre reg form (eg. select the hamster image)
2.) Blacklisting popular spam email domains (eg. mail.ru)
3.) Hidden field trap (no javascript, just css)
4.) Maths puzzle question
5.) TanTan Spam Filter port
6.) Askimet (obviously!)
The first 4 are aimed at blocking spam bot registrations, and the final 2 at keeping posts clean. All the registration checks are core hacks (as I’m only experimenting).
Any other techniques being used successfully to ward off spammers from bbpress? Maybe something like implementing ‘Bad Behavior’ filtering for the registration process for example?
PS. Happy New Year to all!
Topic: Experimenting with bb-cache
I’ve recently enabled the hard cache, to see how it handles on a test forum with only a few users. The first problem I’ve come across has been an error with $bb_cache->get_forums() – the array it was returning when cached was 0, instead of containing the forum ids.
I fixed it by a simple reversal of the sections of code within the get_forums() function in cache.php:
$forums = (array) $bbdb->get_results("SELECT * FROM $bbdb->forums $where ORDER BY forum_order");
if ( $this->use_cache && $normal && $forums )
$this->write_cache(BBPATH . 'bb-cache/bb_forums', $forums);
$_forums = array();
foreach ( $forums as $forum )
$_forums[(int) $forum->forum_id] = $bb_forum_cache[(int) $forum->forum_id] = $forum;After reversing them (the above are their original positions), I then made sure the write cache line was using $_forums, instead of $forums.
No idea if this may have other consequences I’ve yet to unearth, but I thought it may be worth noting here.
I’ve also used the “load all options” function from wordpress as a basis for creating a global array containing all topicmeta options. By default (even with cache enabled, although maybe I’ve missed a setting), there were several calls to to topicmeta, whereas only one was really required.
How can I set the number of Latest Discussions list on the front page only, separately from the listings on the individual forum pages?
For example, I want to list 5 items on the front page, but 10 on the forum pages.
Thanks!

domainsrcct.bizwwwrootcrookedhook.netforumbb-adminplugins.php on line 7