klantomo
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Docs] Organize in folders?David, I am aware of this. I am using Docs 1.9 and I created a group to test this feature. However, I don’t see any option for folders. Where can I add a folder?
Forum: Plugins
In reply to: [BuddyPress Docs] Organize in folders?I don’t see the Folders interface. Do I have to enable this feature?
Found the log folder now: /wp-content/cache/log/
It would be helpful to add this information to the emails or even better add the new error messages.Anyway, great plugin! Thanks!
Alimir, thanks for the reply. So there is no way to delete likes from user?
Forum: Plugins
In reply to: [bbPress Enable TinyMCE Visual Tab] No longer works with WordPress 3.9.1Sorry for my late reply. For some reason it works now. I guess there was a conflict with another plugin. I wish WordPress had a feature that allows us to troubleshoot plugin conflicts.
Thanks for the reply!
I wonder if we face the same problem? Capabilities on our installation automatically reset to the default settings after some time. Did you experience the same?
I just posted something about it: https://www.ads-software.com/support/topic/capabilities-reset-automatically-to-default-after-some-days?replies=1#post-5509081
I have worked with countless applications that support plugins including web applications, but I have never had so many problems as with WordPress. Instead of adding new features the WordPress team should get the plugin system right. Auto updates are a good thing for end users, but for businesses updating without testing is very unprofessional. You usually don’t hear of these problems because many site owners notice it only months later that an update broke a plugin.
Well, in that case WordPress is probably poorly designed. Funny thing is that WordPress 3.7 will make things even worse. Imagine all the sites that will go down because of untested updates (some hopelessly optimistic people call it automatic updates) will lead to more plugin conflicts.
Yeah, it could be a conflict with another plugin. I am not a developer, but I really wonder why WordPress doesn’t prevent such conflicts.
It is just strange that it works fine in Opera. I will try to find out what other plugin is the culprit as soon as I have more time (have to launch a test server for this.)
I just discovered that I can add new series in all browsers on the Manage Series screen in the Posts menu. For now this workaround is good enough for me.
Anyway, thanks for the reply.
Here is a screenshot
There should be a form field for a new series title at the top, but it is missing in Chrome.
Forum: Fixing WordPress
In reply to: How to disable automatic thumbnail creationMy bad. The culprit wasn’t WordPress but the GD bbPress Attachments plugin. It not only creates thumbnails for bbPress attachments but also for pictures in blog posts. To get rid of the thumbnails you have to set the thumbnail size to 0x0. You should also disable “display of image attachments”. Otherwise the attachments will be displayed in the original size.
Forum: Plugins
In reply to: [bbPress Enable TinyMCE Visual Tab] An error occurred in the uploadThanks!
Forum: Plugins
In reply to: [bbPress Enable TinyMCE Visual Tab] An error occurred in the uploadI don’t think that the issue is resolved. SSL is essential on a site where people log on with passwords. I also think that many webmasters will waste a lot of time with finding the bug. Therefore I think the plugin should not only enable TinyMCE but also fix the SSL bug. I guess it has a reason that this feature is currently disabled in bbpress. At least you should mention in the plugin description that it doesn’t work with SSL.
Forum: Plugins
In reply to: [bbPress Enable TinyMCE Visual Tab] An error occurred in the uploadI am a bit closer to the problem now. It is not a database issue as I first thought.
The problem is related to SSL. If I login without SSL the upload works, if I login through SSL the upload fails. In the latter case I am automatically logged out after I tried to upload a file.
If I access the forum page through SLL after an SSL login, the upload works as well. Thus the combination SSL login plus http upload doesn’t work.
It doesn’t matter if you force login through SSL in wp-config.php with define(‘FORCE_SSL_ADMIN’, true); or define(‘FORCE_SSL_LOGIN’, true);
Forum: Plugins
In reply to: [bbPress Enable TinyMCE Visual Tab] An error occurred in the uploadThanks a lot for trying it!
It appears to be a database issue. I tried it now with a new WordPress database and it works.
The plugins only seems to activate bbpress functionality. Adding this to my functions.php has essentially the same effect.
function bbp_enable_visual_editor( $args = array() ) {
$args[‘tinymce’] = true;
$args[‘media_buttons’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );File uploads still don’t work.
It is interesting to note that I can upload files to forum posts through the WordPress admin interface. Therefore I assume that the bug is in the bbpress code.
Is there any chance that media uploads will be enabled by default in a future bbpress version? I guess then I won’t be the only one with this problem.