Forum Replies Created
-
In reply to: Umlaut in member name
Ensure that your forum’s encoding is utf-8
In reply to: Ping Gautam: Revisiting bb-attachmentsIn the bb Attachments FAQ, it is written:
if you get
error: denied mime
on every upload,mime_content_type function
orshell access
must exist to verify mime types – otherwise you can force all types to be allowed by editingbb-attachments.php
and adding'application/octet-stream'
to each of the$bb_attachments['allowed']['mime_types']
And as I can see in the dump you pasted, neither
mime_content_type
is enabled, norshell access
, so you would need to add'application/octet-stream'
to each of the$bb_attachments['allowed']['mime_types']
inbb-attachments.php
.In reply to: Ping Gautam: Revisiting bb-attachmentsSorry Steven, but I am not getting much time to work on it.
Just a quick question, what do you see when you go to http://www.winextra.com/forums/?bb_attachments_diagnostic after being logged in as the keymaster? Is something being shown as disabled or any function that does not exist?
1) Yes, you’ve heard correct that project is almost dead as no development is taking place for weeks. Also, more chances are that it will be converted into a WordPress plugin (but some methods might be made available to transfer your data from the bbPress install to the plugin).
2) bbPress 1.0 was almost a rewrite of 0.9, so a lot of code changed and the plugins became incompatible. _ck_, a major plugin developer and contributor to the project left because the project was not getting attention from months. You can check her website – http://bbshowcase.com
3) Can’t say anything about the timings….
4) That has been reported in #1181
In reply to: bbPress as a WordPress Plugin – ThoughtsChrishajer, how can I contact you?
In reply to: Ping Gautam: Revisiting bb-attachmentsHmm.. I will take a look into this and probably come up with a new version (with an admin page).
In reply to: Welcome Note should be hide after loginWhere you have added that message, just before that add this:
<?php if ( !bb_is_user_logged_in() ) { ?>
And just after the message, add this:
<?php } ?>
In reply to: BuddyPress Default Theme for bbPress?If you have BuddyPress installed on WordPress, then just install the bbPress component. BP would automatically handle everything.