Search Results for 'bbpress'
-
AuthorSearch Results
-
April 14, 2010 at 6:34 am #86770
In reply to: bbPress as standalone project (as fork)
johnhiler
MemberWhy do we need to bother Matt again? We have everything we need to get the next version out the door… the cavalry isn’t coming to save us, but I think that’s ok.
Chris is doing a great job managing trac, and we’re making steady progress til the next version! Once that comes out, maybe we can pull up then?
April 14, 2010 at 6:30 am #86769In reply to: bbPress as standalone project (as fork)
jurasiks
Participantwe’ve got 1 open ticket till 1.0.3 on trac?
sent another message to Matt, spam his Facebook page…
is he ignoring us?
April 14, 2010 at 2:19 am #69807In reply to: phpbb3 -> bbpress converter
psycheangels
Memberfix post position
function fix_post_position() {
global $bbdb;
$get_topics = $bbdb->get_results("SELECT * FROM $bbdb->topics ORDER BY topic_start_time ASC");
foreach( $get_topics as $get_topic ) {
$get_posttopic = $get_topic->topic_id;
$postorder = 1;
$get_posts = $bbdb->get_results("SELECT * FROM $bbdb->posts WHERE topic_id = '$get_posttopic' AND post_position = '1' ORDER BY post_time ASC");
foreach( $get_posts as $get_post ) {
echo "UPDATE bb_posts SET post_position = ";
echo $postorder++;
echo " WHERE topic_id = ";
echo $get_post->topic_id;
echo " AND post_id = ";
echo $get_post->post_id;
echo " ;";
echo '<br/>';
}
} }echo fix_post_position in your template file and copy the sql query to your database
April 13, 2010 at 11:51 pm #86853gerikg
Memberwhat is the name of your hosting company?
April 13, 2010 at 11:20 pm #86852robynh
MemberYeah. It uses php5. What do you have to do, exactly?
April 13, 2010 at 10:34 pm #86829In reply to: User and Cookie Integration FAIL
robalan
MemberVersion 2.9.2, and yes all keys are defined in both files, with BB_ prepending the bb-config items.
@gerikg – thanks, I have updated wp-config.
Still no shared cookie, still no users showing up in bbPress.
April 13, 2010 at 8:57 pm #86851gerikg
MemberDoes your server use php5? I use 1and1 hosting and I have to put a line in the htaccess or I get the same thing.
April 13, 2010 at 7:32 pm #33990robynh
MemberI think I might have broken something when setting up bbPress. I wanted it integrated with my wordpress site. While installing, when it asked for the username for the “Key Master” I put in Murgy, which is my WordPress admin name. Anyway, I went through the rest of the installation, integrations, etc. But now, when I log into WordPress, it logs me out of bbPress, and when I log into bbPress it logs me out of WordPress, so… I’m thinking that naming the initial Key Master the same as my WP admin name maybe wasn’t the smartest idea.
But anyway. Is there any way to fix this, or should I reinstall or something?
April 13, 2010 at 5:46 pm #86849In reply to: bbPress post -> WordPress
Anonymous User
InactiveHi Rabbitdk,
with manual coding it should be possible to display complete posts in wordpress.
I use the examples from https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration to display an complete list of my forums and a short list of the newest topics.
http://www.mysteria3000.de/wp/
But I think – to make an original WordPress Post out of it – is not as easy as pure displaying.
hmmm….
For the last month I use the plugin ‘WordPress-bbPress syncronization’ (http://bobrik.name/code/wordpress/wordpress-bbpress-syncronization). But these plugin does it the other way – make WordPress Post to Topics in bbPress and display answers (post in bbPress) as comments in WordPress. A skilled php developer can use this plugin and change some code to realize your idea.
Unfortunately I’m no developer
April 13, 2010 at 5:13 pm #86822In reply to: User and Cookie Integration FAIL
robalan
MemberHere are my config files, for reference:
wp-config:
<?php
// ** MySQL settings ** //
define(‘COOKIEPATH’, ‘/’);
define(‘DB_NAME’, ‘###’); // The name of the database
define(‘DB_USER’, ‘###’); // Your MySQL username
define(‘DB_PASSWORD’, ‘###’); // …and password
define(‘DB_HOST’, ‘internal-db.###.gridserver.com’); // 99% chance you won’t need to change this value
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);
define(‘WP_CACHE’, true);
define(‘SECRET_KEY’, ‘###’);
define(‘AUTH_KEY’, ‘###’);
define(‘SECURE_AUTH_KEY’, ‘###’);
define(‘LOGGED_IN_KEY’, ‘###’);
define(‘NONCE_KEY’, ‘###’);
define(‘AUTH_SALT’, ‘###’);
define(‘SECURE_AUTH_SALT’, ‘###’);
define(‘LOGGED_IN_SALT’, ‘###’);
define(‘NONCE_SALT’, ‘###’);
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ”; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);
/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>
bb-config:
<?php
/**
* The base configurations of bbPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys and bbPress Language. You can get the MySQL settings from your
* web host.
*
* This file is used by the installer during installation.
*
* @package bbPress
*/
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for bbPress */
define( ‘BBDB_NAME’, ‘###’ );
/** MySQL database username */
define( ‘BBDB_USER’, ‘###’ );
/** MySQL database password */
define( ‘BBDB_PASSWORD’, ‘###’ );
/** MySQL hostname */
define( ‘BBDB_HOST’, ‘internal-db.###.gridserver.com’ );
/** Database Charset to use in creating database tables. */
define( ‘BBDB_CHARSET’, ‘utf8’ );
/** The Database Collate type. Don’t change this if in doubt. */
define( ‘BBDB_COLLATE’, ” );
define(‘COOKIEPATH’, ‘/’);
/**#@+
* Authentication Unique Keys.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
*
* @since 1.0
*/
define(‘AUTH_KEY’, ‘###’);
define(‘SECURE_AUTH_KEY’, ‘###’);
define(‘LOGGED_IN_KEY’, ‘###’);
define(‘NONCE_KEY’, ‘###’);
define(‘AUTH_SALT’, ‘###’);
define(‘SECURE_AUTH_SALT’, ‘###’);
define(‘LOGGED_IN_SALT’, ‘###’);
define(‘NONCE_SALT’, ‘###’);/**#@-*/
/**
* bbPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$bb_table_prefix = ‘bb_’;
/**
* bbPress Localized Language, defaults to English.
*
* Change this to localize bbPress. A corresponding MO file for the chosen
* language must be installed to a directory called “my-languages” in the root
* directory of bbPress. For example, install de.mo to “my-languages” and set
* BB_LANG to ‘de’ to enable German language support.
*/
define( ‘BB_LANG’, ” );
?>
April 13, 2010 at 4:19 pm #86848In reply to: bbPress post -> WordPress
rabbitdk
MemberNo, from inside the bbpress forum, I want to send a topic to my WordPress front so it’s published like a ordinary blog post
April 13, 2010 at 4:12 pm #86847In reply to: bbPress post -> WordPress
gerikg
MemberChrishaje, I think it’s something like this https://bbpress.org/plugins/topic/bbpress-recent-replies/#post-4989
but not recent replies but new topics that was just added….?
April 13, 2010 at 4:06 pm #86846In reply to: bbPress post -> WordPress
rabbitdk
MemberNot sure that does exactly what I want, btw I am no good with codes, but that is explained pretty detailed so I could probably try it out (however, I just messed up my bbPress install while messing with permalinks
)I want the full forum post to be published as a blog entry, by the click of a button, to promote the posts as you said
April 13, 2010 at 3:45 pm #86845In reply to: bbPress post -> WordPress
chrishajer
ParticipantAdd a forum post to your WordPress front: does that mean if there is a forum post, you want to display it on your WordPress home page? As a sticky or something? You will do this manually whenever you feel like promoting a post?
April 13, 2010 at 3:41 pm #33989Topic: bbPress post -> WordPress
in forum Pluginsrabbitdk
MemberHi there!
I’ve been looking for a while now, I can’t find anything that suits me

I am looking for a plugin that easily lets me (the admin) add a forum post to my WordPress front.
I’ve tried out bbPress-WordPress syncronization, but this only syncs comments, right?
Thanks in advance
April 13, 2010 at 12:08 pm #69806In reply to: phpbb3 -> bbpress converter
psycheangels
MemberFix Topic Slug phpBB Convert bbPress
add this to function.php in your template file
function fix_topicslug() {
global $bbdb;
$get_topics = $bbdb->get_results("SELECT * FROM $bbdb->topics WHERE topic_slug='' ");
foreach( $get_topics as $get_topic ) {
$slug_fix = bb_slug_sanitize( wp_specialchars_decode($get_topic->topic_title));
$topic_id = $get_topic->topic_id;
$bbdb->query("UPDATE $bbdb->topics SET topic_slug= '$slug_fix' WHERE topic_id = '$topic_id' ;");
}
}and echo fix_topicslug in header. cek your database, and dont forget to remove the above code if you already finish.
my problem now the post_position is broken after convert to bbpress (all post is position 1) any fix ?
April 13, 2010 at 11:46 am #86818In reply to: User and Cookie Integration FAIL
zaerl
ParticipantIs it even supposed to show the WordPress users inside bbPress?
Yes it is.
I tell you what I have done. I have bbPress and WordPress on the same database and both have table prefixes. The blog is on my-domain.com/blog. The BBS is in my-domain.com/forum
On forum/bb-admin/options-wordpress.php:
1) the role map is key master, administrator, member, member, member.
2) WordPress URL is my-domain.com/blog, WordPress Blog is my-domain.com/blog.
3) Cookie salt “auth” valid, no Cookie salt “secure auth”, Cookie salt “logged in” valid.
4) AUTH_KEY <=> BB_AUTH_KEY and others set on (bb-config/wp-config).php and the NONCE_KEY <=> BB_NONCE_KEY
5) Table prefix set to the WordPress table prefix. Usually wp_
6) No advanced settings
On /blog/wp-admin/options-general.php?page=bbpress-integration-admin
1) bbPress URL = my-domain.com/forum/. Your plugin URL = nothing. WordPress type = WordPress.
2) Manual Cookie Settings tells me define( ‘COOKIEPATH’, ‘/’ ); which is defined in both config files (on top of those)
My wp-config.php:
<?php
define( 'COOKIEPATH', '/' );
define('DB_NAME', '...');
define('DB_USER', '...');
define('DB_PASSWORD', '...');
define('DB_HOST', '...');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('AUTH_KEY', '...');
define('SECURE_AUTH_KEY', '...');
define('LOGGED_IN_KEY', '...');
define('NONCE_KEY', '...');
$table_prefix = 'my_wordpress_table_prefix_';
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
require_once(ABSPATH . 'wp-settings.php'); ?>my bb-config.php:
<?php
define( 'COOKIEPATH', '/' );
define('BBDB_NAME', 'same as wordpress');
define('BBDB_USER', 'same as wordpress');
define('BBDB_PASSWORD', 'same as wordpress');
define('BBDB_HOST', 'same as wordpress');
define('BBDB_CHARSET', 'utf8');
define('BBDB_COLLATE', '');
define('BB_AUTH_KEY', 'same as wordpress');
define('BB_SECURE_AUTH_KEY', 'same as wordpress');
define('BB_LOGGED_IN_KEY', 'same as wordpress');
define('BB_NONCE_KEY', 'same as wordpress');
$table_prefix = 'my_bbpress_table_prefix_';April 13, 2010 at 10:00 am #86768In reply to: bbPress as standalone project (as fork)
jurasiks
ParticipantAutomattic is not owner.
bbPress – open-source and they just (see site): “contribute to a number of non-profit and Open Source projects”.
about style – i saw that topic long time ago, but where is Sam? you said that there are no alive admins…
April 13, 2010 at 9:57 am #86767In reply to: bbPress as standalone project (as fork)
Gautam Gupta
ParticipantAutomattic is a company which owns all these projects (WordPress etc) – http://automattic.com/
And Sam had already made a new design for this forum a while ago but has not been implemented yet – https://bbpress.org/forums/topic/sneak-peek-at-bbpressorg-20
April 13, 2010 at 9:46 am #86766In reply to: bbPress as standalone project (as fork)
jurasiks
Participanti checked 2 hours ago whois, sent message to Matt email with my question and sent message to his Facebook page.
If they don’t want to participate in developing of bbPress – they can give us (community) this opportunity.
If they don’t want that – we will just make fork.
p.s. if they give us chance – i will make new design for bbpress.org xD
April 13, 2010 at 9:32 am #86765In reply to: bbPress as standalone project (as fork)
Gautam Gupta
ParticipantApril 13, 2010 at 9:29 am #86764In reply to: bbPress as standalone project (as fork)
Gautam Gupta
ParticipantTalk practically, as if automattic would give you the passwords. By the way I think this website is owned by matt, as he said in one of the IRC chats or this forum. You can also check here – http://www.pir.org/get/whois?domain=bbpress&Submit=Search while wordpress is owned by automattic – http://www.name.com/whois_result?type=domain&domain_name=wordpress.com&submit=+Submit+
April 13, 2010 at 8:07 am #86840In reply to: What if mail() is disabled on my server?
Olaf Lederer
ParticipantI’m wondering what happens if the mail() function is disabled during the setup?
Does bbpress send the password only by mail? or is the password visible for the admin on confirmation screen?
April 13, 2010 at 6:54 am #86763In reply to: bbPress as standalone project (as fork)
jurasiks
ParticipantBetter to get FTP and DB passwords for this site, because keymasters are not a solution.
April 13, 2010 at 4:05 am #86816In reply to: User and Cookie Integration FAIL
robalan
MemberIs it even supposed to show the WordPress users inside bbPress? I don’t even know—that’s how incomplete and fragmented the frigging instructions are. What a waste of time.
-
AuthorSearch Results