Niklas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What are my choices for verbose logging?Some data is not being written to wp_options, wp_posts, wp_links, and wp_postmeta that causes the entire table to require repairs.
The only thing I have glanced so far is that WordPress (core) does not close the mysql connections properly and leaves them open once everything is finished, but that is probably only tangential.
Forum: Fixing WordPress
In reply to: What are my choices for verbose logging?Because I got nothing usable from maximum logging of PHP+MySQL and I want to get to the source, rather than the symptom.
Forum: Fixing WordPress
In reply to: What are my choices for verbose logging?I am more than willing to accept a huge performance hit, I am also very willing to get huge amount of data to delve into (manually if needed).
Forum: Fixing WordPress
In reply to: What are my choices for verbose logging?Are those my only choices when it comes to logging? Preferably I’d like to get at least a row in the log every single time WordPress reads or writes to the database.
@evster
I have noticed this bug in Chrome, IE and Safari with the latest WP 3.3 where this code would not always work and theme_advanced_styleselect would sometimes revert to the initial state without showing my custom style:function mytheme_custom_tinymce($init) { $init['theme_advanced_styleselect'] = 'Ingress=ingress'; return $init; } add_filter('tiny_mce_before_init', 'mytheme_custom_tinymce');But thanks to you I found the solution with Advanced TinyMCE Configuration.
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3Thank you Dion Hulse, suddenly things make more sense.
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3I gave up trying to load the stylesheet via the normal wp_register_style and wp_enqueue_style and just hardcoded <link rel=”stylesheet” … into the html.
Forum: Alpha/Beta/RC
In reply to: Welcome PanelCan I jump into this discussion and ask if there is a way to automatically disable the New Install Welcome Box for new sites in a multisite install?
I suppose it should be update_usermeta($user_id, ‘show_welcome_panel’, 0); but this does only seem to work on the primary site so I tried this but without any luck:
$user_blogs = get_blogs_of_user($user_id); foreach ($user_blogs as $blog) { switch_to_blog($blog->userblog_id); update_usermeta($user_id, 'show_welcome_panel', 0); restore_current_blog(); }Edit: should say that the above code is run on add_action(‘user_register’, “my_custom_user_settings”);
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3I am preventing TinyMCE from loading in WORDPRESS’ core files (not in any plugin). If I edit edit.php and post-new.php TinyMCE stops loading and the odd quicktags disappear.
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3Ipstenu, I think these extra toolbars are caused by some server-side thing since they show up even if I disable JavaScript in the browser. If I prevent TinyMCE from being loaded in the core files, they do not show up.
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3Thanks esmi, it says “Updated quicktags.js (HTML editor)” but nothing more, guess I will have to wait until more information is available.
Forum: Alpha/Beta/RC
In reply to: Two questions regarding the changes in 3.3Where can I find a list of API changes? If I disable TinyMCE through the complete installation the QT fields disappear.
Forum: Plugins
In reply to: [HungryFEED] [Plugin: HungryFEED] Change the TinyMCE iconI had guessed as much, thanks!
Forum: Networking WordPress
In reply to: .htaccess and permalinks clashesMultisite is part of the default WordPress install and documented on Codex. Where does it say that it is only semi-functional?
Forum: Networking WordPress
In reply to: .htaccess and permalinks clashesTrue that Andrea_r, we discovered so during the research phase, this is why we only use WordPress core functionality for subsites.