Forum Replies Created
-
In reply to: Generating secret keys
I almost forgot…
If you have an urge to hard code the secret salts in there as well then you can go here:
https://api.wordpress.org/secret-key/1.1/salt/bbpress/salt/
The salts are usually generated for you and stored in the database. Few people have to add them manually to the file.
In reply to: New forum layoutI believe it’s not a registered trademark. The small caps style is to match WordPress. I’m going to have to consult with Matt Thomas (Automattic Designer) at some stage.
In reply to: The english language fileThat’s generally OK as long as you are clearly saying that you aren’t the official site.
In reply to: The english language fileIt is that one, but be aware that the trunk is changing quite a lot at the moment.
You can start with that, but you should re-visit it when we release 1.0
In reply to: New forum layoutAre blockquotes styled differently now?
Yep!
In reply to: 1.0a2 + 2.6x cookies: so close!Changes are in trunk of WPMU to help sort out the cookie sharing problem there.
https://trac.mu.wordpress.org/ticket/809
A lot of the use of config settings in all these solutions are a bit heavy handed, most of these settings are done automatically and you only need to copy them to your bb-config file once you are happy with them.
In reply to: Remove ‘dash’ from forum descriptionLooks to me like it should accept what chrishajer put in there, as well as an array (that’s what wp_parse_args is for).
I’ll make sure it isn’t broken somehow.
In reply to: Fail to make BBpress Live workingThe standalone functions in bbPress Live don’t print anything to the screen, they return an array. You need to do something like this:
<?php
$bbl_topics = bbpress_live_get_topics();
foreach ($bbl_topics as $bbl_topic) {
echo '<a href="' . $bbl_topic['topic_uri'] . '">' . $bbl_topic['topic_title'] . '</a>';
}
?>In reply to: Show off your Forum !!Awesome to see bbPress Live in use.
The post to a forum stuff is coming really soon. It may require you to update bbPress to the latest Trunk though…
Automattic generally don’t have a problem with this sort of thing at all unless of course you were using it to pretend to be WordPress.org or WordPress.com in some sort of deceptive way. Which of course you aren’t.
In reply to: WPMU 2.6.1 Integration Success with 1.0-alhpa-2@buzz_lighty
Yes, integration you describe is possible. The only problem is if you try to load WordPress inside bbPress
As above. All the issues are being compiled on a single Trac ticket:
In reply to: TalkPressIt is safe to use the stable version of 0.9.0.2
In reply to: Removing Borders/Padding in KakumeiTry:
foo {
border-collapse: collapse;
}.
Where foo is what you are trying to affect.
In reply to: 1.0 alpha 2 parse url errorThere was a syntax error in the code you copied from the other topic. I’ve edited it there if you want to grab it again.
There is a problem with cookie sharing mainly in that WordPress fails to (because it doesn’t know it has to) set a cookie required for access to the bbPress admin area.
I’m pretty sure that the only way to fix this is with a plugin for WordPress. I’ll have to work one up. When I do I’ll post it to the WordPress plugin repository and announce it on the forum here.
In reply to: Variables Available for bb_new_topicbb_new_topic() just calls bb_insert_topic(), at the end of bb_insert_topic() is a do_action() call called ‘bb_insert_topic’ which has available to it all the information you need. The only thing you need to remember to do is differentiate between new and edited topics as both are handled by that function.
In reply to: Profile Change resets User PWI just retested on my local copy.
Neither editing my own or anyone else’s profile causes a problem. No matter who I am logged in as.
It has to be something local to your setup.
In reply to: Please HELP me and also a word on BBPRESSThe required contents of your htaccess file should be here…
http://www.midnightedition.com/buzz/bb-admin/rewrite-rules.php
In reply to: Profile Change resets User PWIs there anything unusual in your config file?
In reply to: Problem with rss/topicsI just get 404 errors when I try to retrieve your feeds using curl.
I suspect it has something to do with a bad translation string. Try switching your forum to english to test if that fixes it, if so then it is a problem with the language file you are using.
It also may be a problem with the date or time format in your settings.
In reply to: Fail to make BBpress Live workingRead the faq I pointed to, it contains the arguments you can use with the functions.
The functions return arrays, so you need to loop through those to get the data out. If you don’t know how to do that, then you need to learn some rudimentary PHP first : )
The sidebar widgets were created for people without PHP knowledge.
In reply to: bbPress 1.0-alpha-2 releasedThe installation bug is now fixed in the release packages on the download page.
In reply to: 1.0 Alpha 2 install issueThe release on the download page is now updated, use that instead.
In reply to: Fail to make BBpress Live workingIn reply to: WP + bbPress Cookies not recognizedDid you try the advice here?
https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101