I’m using Comment Quicktags + plugin by Dan Cameron, and I’ve got it working pretty well. Except for Edit.
When you edit a post and land on edit.php, the tag buttons simply don’t appear.
The js path does appear in the source.
Any thoughts?
More issues along the same lines here:
Key master is not allowed to add forums
Can’t add additional tags to post
I can confirm that I am using the “use display name” plugin mentioned in the first thread, and deactivating it DID fix the issue.
Hello,
I’ve bbpress installed with wpmu.
Integration seems to work fine. when logged in wpmu, i’m logged in bbpress too. wonderful.
The problem come whenI try to login from bbpress header >> I type my login/pass, hit “log in” =>
– If good password : nothing happens, page just reload.
– If wrong password : redirect to error message in bb-login.php
May be I must say that I have :
wpmu in : domain.com
bpress files in : domain.com/forum
bbpress redirected to : forum.domain.com
Thanks in advance for any help.
It would be easier to do the following if you want to change your title back in config.php and then download your header.php from your template folder and do something like this:
<h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h1>
Then save the file and upload to /my-templates/ so if you make a mistake, you can delete it and bbPress will use the original!
Trent
livibetter, thank you for your help, but I still can’t get it to work. I think I’m going to do some reading up on php and try to understand the process a bit more, so I can figure out what is going on here.
I think this is related to this trac ticket:
https://trac.bbpress.org/ticket/745
There is a patch attached there:
https://trac.bbpress.org/attachment/ticket/745/745c.diff
But, read the bug report first to see if this is your problem. I think it is.
I see. Then that would be
require_once '../wp-blog-header.php';
Livibetter, thanks, but I’m still a bit confused, as that looks like what I did type. Also, I installed bbPress as a subdirectory in the WordPress folder, so it was path/to/wordpress and then path/to/wordpress/bbPress. Does this make a difference?
Hi,
Here is a quick php for it(Use this method at your own risk), you need pretty permalink to use it.
Save the following code in bbPress root folder as page.php
<?php
require_once('./bb-load.php');
if (preg_match('/.*/page/(.*)/', $_SERVER['REQUEST_URI'], $matches)) {
$file = bb_slug_sanitize($matches[1]) . '.php';
if (file_exists(bb_get_active_theme_folder() . "/static/$file")) {
bb_load_template("static/" . $file);
exit(0);
}
}
wp_redirect(bb_get_option('uri'));
?>
Put your static pages in a new static folder under your template folder, they should looks like
<?php bb_get_header(); ?>
The static content here.
<?php bb_get_footer(); ?>
Then you can access a static file. For example, access test.php(bb-templates/yourtemplate/static/test.php) at http://yoursite.com/bbpress/page/test
Remember: Use this method at your own risk
majea,
You used require_once in a wrong way. If you installed WordPress in /path/to/wordpress and bbPress in /path/to/bbpress, then you should use
require_once '../wordpress/wp-blog-header.php'.
You normally use require/include for local .php.
PS. I don’t use WordPress and bbPress together.
I am trying to integrate bbPress with WordPress. I installed it on my local test environment first, in order to work out any kinks. bbPress is in the same database as WordPress. The installation went fine, it seemed, and I ended up with a basic version of bbPress — left-aligned black font on a plain white background. Is this what I am supposed to see?
However, when I tried to point it to WordPress, using “require_once(‘http://localhost:8888/wordpress/wp-blog-header.php’);” in the config.php file, I only got a blank screen. Any idea what I’m doing wrong?
I sort of fumble my way through all this web design stuff, so there is a good chance the answer is painfully easy, but I can’t seem to find it. Thanks.
I thinking to start developping a plugin.
I’m not a real coder but i’ll try.
Anyway, I think the problem is that bbpress uses names and not levels (like wordpress) for roles, so it will be hard to do, no ?
If you have ideas, if you want to help me, please feed this threat !
http://appleswitcher.com/wp/forum/
They don’t increment (i.e. 10 repies, 1 view) any longer after I re-themed and moved my forum.
Sorry to double post, but the post I added yesterday in the Extend forum doesn’t show here.
Hello Trent, thanks for your reply.
Yeah, I’m not completely sure if the information that I put in that file is correct. Is there a specific place where I can find that MySQL information to plug in there? Thanks again.
For whatever reason, it doesn’t like the information that you put in config.php for your database. You better make sure that is 100% correct and running. Also search this forum for some localhost installs for ideas!
Trent
Hello,
I uploaded the bbpress folders and files to my server and put the MySQL information into the config file.
So now the directions say to “Load bb-admin/install.php in your web browser and do what it tells you”. So I clicked on the “bb-admin” folder, then clicked on the “index.php” file, then clicked on the url link, and my browser opened up a page that said this…
Warning: mysql_get_server_info() [function.mysql-get-server-info]: Access denied for user ‘jim1234’@’localhost’ (using password: NO) in /home/jim1234/public_html/forum/bb-includes/db.php on line 73
Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/jim1234/public_html/forum/bb-includes/db.php on line 73
Cannot select DB.
What am doing wrong?? Any help greatly appreciated.
I like this plugin the way it is! It is great! Thank you! Don’t forget to add it to the repository as well:
https://bbpress.org/plugins/add/
Trent
I’ve just been caught out by the spaces problem – I’m finding that integrating WP and bbPress is a painful experience…
The previous version of this plugin. That’s version μ instead of the latest, ν.
Oops…
I changed my mind. bbPress doesn’t check the validity of new email address and confirm the user really own that new email address.
Awesome. OK, so I removed the entry from the database and I was able to login like normal.
Then I went back and created a new post again to test if it would create a new topic in bbpress. No new topic. And it wouldn’t let me login to the backend again.
So I went back and removed the capabilites entry from the database.
I can create topics no problem in bbpress. Just doesn’t create new topics when I write posts.
I’m using the latest version of bbsync.
Now I can’t login to the bbpress backend. It’s like it doesn’t recognize the roles anymore. I can login and view my profile and such, but can’t get into the backend.
I’m going crazy trying to get this to work.
I tried
http://wordpress.org/extend/plugins/comment-quicktags/
AND
http://www.40annibuttati.it/comment-quicktags-for-bbpress/
that.
STILL no quicktags. I activate them, de-activate them, re-upload them. Everything I can think of I do.
Help!