Forum Replies Created
-
In reply to: How to remove elements from the registration page…
Maybe I will add this plugin to the repository but I don’t want to flood the plugin area with all my works. I think that I will load this plugin in my sites too. A registration form _must_ be simple.
Check the tables of your database. Maybe the bbPress tables are in latin1.
Open up phpmyadmin and make sure that the collation of tables is
utf8_unicode_ci
.Do you want to modify a WordPress page or a bbPress one? Yes that is the function but keep in mind that if you are working outsite bbPress you need to load bbPress.
In reply to: How to remove elements from the registration page…I have written a little plugin for you. It filters away the useless form fields from the registration page. Only email and username fields remains. Grab it here: zaerl Simple Registration. Isn’t it funny?
Check the tables of your database. Maybe the bbPress tables are in latin1. On the file
bb-config.php
tell me what is written at this line:/** Database Charset to use in creating database tables. */
define( 'BBDB_CHARSET', 'utf8' );it must be utf8.
In reply to: Compatibility ….bbPM works in 1.0.2
bavatar works in 1.0.2
bbSignatures works in 1.0.2
In reply to: A plugin for private/locked forums/topicsSent. The plugin is 90% finished. I’ve added a new feature that Xevo asked for and after some testing I will release it. Basically speaking is a list of users that are not affected by hide/lock rules like super users/roles but made in a per topic/forum base.
In reply to: A plugin for private/locked forums/topicsAdded.
In reply to: How do I get the post form on every page of a topic?https://bbpress.org/plugins/topic/easy-mentions/faq/
I use Ajaxed Quote which work without this hack.
In reply to: A plugin for private/locked forums/topicsSent.
If someone else what to partecipate to this closed beta just write here.
In reply to: 3 Issues: Page Title, Permalinks, Page Not Found2. Permalinks Problem:
In reply to: How long does it take for a plugin to be approved?For me a couple of days.
In reply to: A plugin for private/locked forums/topicsA sandbox is a local test platform that is private and have no external access. For example I use xampp for testing.
In reply to: How do I exclude a category from the front page?Try:
if ( $topics = get_latest_topics('exclude=8,7', $page) )
but I’m not sure that this will function.
In reply to: How do I exclude a category from the front page?So you must manually change the loop the you will find in the template file
front-page.php
.In reply to: How do I exclude a category from the front page?With the word “category” you mean a parent forum?
In reply to: How do I add a topic author to the front page list?You have to manually modify the template file
front-page.php
line 20.In reply to: rss feed for topic first post (topic-post) only ?All the variations, as far as I know, can be extrapolated from rss.php line 5 -> 57. There are very interesting RSS.
In reply to: rss feed for topic first post (topic-post) only ?xxx.com/rss/topics
In reply to: No formatting bar for users?bbPress isn’t shipped with a toolbar but just a textarea but there are some plugins that add what you want. You can try mine or others.
In reply to: User and Cookie Integration FAILSo I give up. I cannot help you more without direct access to your files/databases.
In reply to: User and Cookie Integration FAILthe problem still exists?
In reply to: User and Cookie Integration FAILin your bb-config.php:
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’);
In reply to: User and Cookie Integration FAILIs 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_';In reply to: User and Cookie Integration FAILI accept your opinion but at least in one case I discovered that the only way to achieve that result is to chmod 777 during the installation/integration/whatever and then switching back to 755 (on a very crap host). So I said what I said cause I tought that it can be a good hint. Apparently it is not (and it seems that my words are even funny) and it’s ok. Maybe it was a combination of factors and the 777 was completely useless.
I’m not a bbPress expert cause I have started to use this software a couple of weeks ago. I’m just trying to learn, help those who encountered my same problems and sharing my code.
Regards.