Forum Replies Created
-
In reply to: What do you consider an “important action”?
- I have not programmed a logging function for topic moving and deleting. I’ll make that right now. Edit: There are no hooks in the functions to move topics, so there’s no way I can make a log for it. However, I have programmed the topic deletion log.
- https://bbpress.org/plugins/topic/bbpress-moderation-suite/faq/ will help you.
In reply to: Installed: Try logging in, does nothingDo you have https://bbpress.org/plugins/topic/freshly-baked-cookies/ installed?
In reply to: What do you consider an “important action”?If you downloaded the development version before this post, re-download it. I have now fixed compatibility with 0.9 for the Report section of the plugin.
In reply to: Installed: Try logging in, does nothingWhere is the forum located?
In reply to: HELP?There are installation guides on most of the plugins. I didn’t find any by the names of “My Avatars” or “Upload Photos”, so I can’t help you. Sorry.
In reply to: Sub subforum – Change CSSWith that code, the last sub forum already has
bb-last-child
, and if you change<td colspan="3">
to<td colspan="3" class="subsubforum">
, subsubforums have a class.In reply to: What do you consider an “important action”?Okay, I’ve done the first pass at compatibility. If you feel ambitious, you can download the Development Version. If not, you can wait until the next alpha.
In reply to: What do you consider an “important action”?I’ll work on getting it compatible with 0.9, but it might take a while.
In reply to: What do you consider an “important action”?Unfortunately, there are a lot of functions in the code that are 1.0-specific.
Fortunately, WordPress 2.8 is being released in May, and I can’t see bbPress 1.0 being far behind.
In reply to: Error when deleting a topicOkay, I’ve found the problem.
Go to line
634
(it should sayfunction bb_attachments_recount($post_id=0) { // update topic icon flag and sync attachment count for topic given a post_id
)Right under that, add
global $bb_attachments;
on a new line.In reply to: What do you consider an “important action”?Thanks for your suggestions! I’ve added them in.
In reply to: BBPRESS Maybe great software but my experience isFrom my point of view, bbPress is easier to use than other (more popular) forum software.
For example, in phpBB, plugin installation is measured in minutes. In bbPress, plugins get dropped into a folder and that’s it.
In reply to: Profile PictureWould any of https://bbpress.org/plugins/tags/avatar help you?
You could also look at http://gravatar.com/.
In reply to: diagnosing sql connections spikeIt looks like other people have had problems with your host as well: http://www.mywot.com/en/scorecard/interland.net
First of all, if you already had members on the forum that aren’t on the blog, integration will lose them.
I suggest going into your database and running
DELETE FROM bb_topicmeta WHERE meta_key=wp_table_prefix LIMIT 1
to remove the integration.In reply to: Error when deleting a topicWhat’s your MySQL version?
In reply to: Sub subforum – Change CSSI only partially understand the question. Do you want to add a
last
class to the last forum on the page?In reply to: (request) remember me plugins?Delete the plugin, just put
<input name="remember" type="hidden" id="quick_remember" value="1" />
in yourlogin-form.php
file.In reply to: Get Current Forum ID?The problem is quite simple, really.
<li<?php if ($current_forum_id=get_forum_id()) {echo " class='on'";} ?>>
just needs to be changed to<li<?php if ($current_forum_id==get_forum_id()) {echo " class='on'";} ?>>
(Can you spot the difference?)
In reply to: I Need Your Help In Creating This PluginYou need to have the capitalization of your username correct.
That’s what caught me, at least.
In reply to: Change Post Order Question@Fender:
You would need to have the link put into the post at the time of display, not at the time of posting. I already emailed you the plugin you asked for.
In reply to: Recommendation to Plugin Authors (and sam?)Or, even better, use the database prefix.
In reply to: Un-Banning people bug – a BIG one!Blocking a user “breaks” their password. Unblocking them is supposed to remove the gibberish from the password field in the database. “Inactivating” a user does not break their password.
With that said, blocking/unblocking works on my test forum, so I have no idea why it wouldn’t on yours.
In reply to: BBpress Alpha 1.6 problems with localizationWhat is the .mo file named?
In reply to: Can’t access AdminWordPress needs a plugin to allow you into admin on bbPress. Just search “bbPress Integration” in the plugin search.