Forum Replies Created
-
In reply to: Plugin: Avatar Upload
If you have access to php or apache errors, or can display errors, I think it will be clear what the error is. Sounds like some image processing function is not available, so the unsharpmask.php file generates an error and that goes to the browser, before the regular output. Then the output comes, but the “headers were already sent” and it can’t continue.
So what is the actual error message that is displayed, the full message?
In reply to: I want to use bbPress function on WordPressI’m not aware of a comparison table like that. Hopefully someone who knows of one will post a link to it here.
In reply to: Want to remove “forum” from permalinksIn general, I don’t think it’s possible, from what I’ve read here.
I’ve read here in the past that the reason for the additional forum in there is that bbPress would have no idea if the slug referred to a topic or forum, hence the need for the second ‘forum’ in the URL. The first one just happens to be the name of the subdirectory you installed bbPress into.
There was this plugin, but I’m not certain if it will work with your version:
https://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done
Also, Sam Bauers talked about this recently, but I think it was something that would be possible in the future.
https://bbpress.org/forums/topic/important-notice-about-10-alpha-7-and-_ck_-plugins#post-23813
In reply to: I want to use bbPress function on WordPressI haven’t seen an answer to that question yet. There are issues with integration and the alpha versions (and to be fair, it is alpha software which no one has recommended we use.)
In reply to: Translations not running goodWhat version of bbPress did you install, and which translation?
In reply to: I want to use bbPress function on WordPressNot sure why, but it has happened before:
https://bbpress.org/forums/topic/using-bbpress-functions-from-the-wordpress-theme#post-23944
In reply to: I want to use bbPress function on WordPressAt least the system can find the file now.
The
Cannot redeclare
errors are usually because a function of the same name has already been declared, thus it can’t be redeclared.What versions did you integrate?
In reply to: I want to use bbPress function on WordPressTry using the file path to the file rather than a relative path. The system is telling you it can’t find the file in that location. Try this:
require_once('/home/eraxeco1/public_html/massbase.com/community/bb-load.php');
This?
https://bbpress.org/forums/topic/i-want-to-use-bbpress-function-on-wordpress
Most of the posts I’ve seen have been old regarding including bbPress inside WordPress.
There is this for the newer alpha versions, but it only does a couple things:
In reply to: Using BB Press functions in WordPress?Sorry, I deleted the first one as a dupe of this by mistake. Should have undeleted it. My mistake.
In reply to: no email and no runTo find the admin area, you need to log in as keymaster and then next to your name will be an “Admin” link – click that to get to your admin area, then follow the instructions.
In reply to: no email and no runWhat type of servers are you talking about?
And, you might want to turn off permalinks until you’ve set them up. That might be your 404 error:
In reply to: How to delete threads from the adminAre you talking about permanently deleting threads from the admin, once they’ve been deleted from view o the front end by regular members? I haven’t seen a good way to do that yet, other than manually with something like phpMyAdmin.
In reply to: bbPress Integration Plugin ExamplesThe reason the language does not match up is because .0.9.04 is not cookie compatible with WordPress 2.7.1. That’s why the keys are named differently.
To integrate those two versions, there are a couple solutions:
https://bbpress.org/plugins/topic/freshly-baked-cookies/
https://bbpress.org/forums/topic/bayanimecom-wp26-and-bbpress-09-complete-cookie-integration
https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101#post-17409 (the bold parts)
In reply to: Pluggin/theme for posting banner adsI don’t know of a theme, but there have been a few discussions about it.
In reply to: I got me a fatal error on good ol’ line 72In the alpha version I have installed, once you activate the Akismet plugin, you get a menu option “Akismet Configuration” and that is where you put the key. Before you activate the plugin, you can’t see the Akismet Configuration tab to even enter the key. I seem to recall the 0.9 version acting the same way (you need to activate the plugin before you can even enter the key.)
When you say “went to activate it”: what is it?
What versions did you integrate?
In reply to: error when logging outIt seems it should be pretty easy to modify the plugin. Just change the references to the table bb_online to the proper $bbdb->online and I think it should be fine. Or, for yourself, you could just hard-code the table prefix for your installation, but I would say that’s bad form and not portable.
In reply to: Functions.php came with unexpected t stringCan you make sure that the uploaded version is identical to the one here:
http://svn.automattic.com/bbpress/
Just pick your version.
If you haven’t gotten through the installation, and you didn’t do anything else yet, maybe you just have a bad copy. Why not check at least this file, or just download the package again and reupload it? That error does not exist in the files that are normally distributed.
In reply to: Functions.php came with unexpected t stringWhat are you doing when you get that error? Are you integrated with WordPress? What version of bbPress did you install? Are you using a language other than the default?
Can you compare the version of bb-admin/functions.php to the default one for whatever version you’re using (to make sure the whole thing was uploaded properly)?
Do your secret keys have any weird characters in them (things that work properly in WordPress have created problems in bbPress before. Things like ‘ / > <.)
Can you post what you were trying to do and the whole error message?
I think this is because the server is using PHP4 and you have an integrated installation.
https://bbpress.org/forums/tags/mbcs
http://www.google.com/search?q=site%3Abbpress.org%2Fforums%2F+MBCS
In reply to: Delete a topichttps://bbpress.org/forums/tags/delete
There was a post from _ck_ somewhere in here that described the other things you needed to do when you deleted a post, but I can’t seem to find it right now.
In reply to: deleting one word from forum category titleIn reply to: FooterIn the directory of your current template, you want to add it to the file called footer.php. Just put it right after this line:
<?php printf(__('%1$s is proudly powered by bbPress.'), bb_option('name'), "http://bbpress.org") ?>
Before the closing </div>.
In reply to: What’s the state of WordPress theme integration?There is no simple theme integration solution that I am aware of. Because bbPress is in a state of flux, many people are saving their energy for developing for it once 1.0 stable comes out.