Jon Cave
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: [wp_editor ] Distraction Free Mode Not Working CorrectlyIt looks like this it is a known limitation of the current implementation that extra editors cannot use distraction free writing, see http://core.trac.wordpress.org/ticket/17144#comment:92 and a couple of comments after it. I’ve asked someone more familiar with wp_editor() to check in here too in case they have further insight.
Forum: Plugins
In reply to: Getting different results from Exploit Scanner in two websitesThat’s really weird. If you want to find out what’s changing you could use the diff and cmp command line tools to check how the file uploaded by Transmit differs from the original. It’s might be adding whitespace character somewhere.
I’m glad you found out the cause though 🙂
Forum: Alpha/Beta/RC
In reply to: [wp_editor ] Distraction Free Mode Not Working CorrectlyUntested, but I believe you have to explicitly pass in the distraction free writing setting as true:
$settings = array( 'dfw' => true, ); wp_editor( 'foo', 'bar', $settings );Just to double check, by default is the standard TinyMCE fullscreen effect being used, or do you see no fullscreen at all?
Forum: Alpha/Beta/RC
In reply to: Changed permalink slug not savedCould give us an example post’s title, old slug and slug you’re trying to update to? Thanks.
Forum: Alpha/Beta/RC
In reply to: Changed permalink slug not savedSeems to work for me.
Have you tried disabling the plugins you have installed? There could be a javascript error stopping it from working properly. Also check your browser’s console for any reported errors (F12 in Chrome and Firefox if using Firebug).
If that all seems okay could you list the exact steps, e.g. click “Edit” next to the permalink, edit it and click “Ok”, finally click “Updated”.
Forum: Plugins
In reply to: Getting different results from Exploit Scanner in two websitesI’m pretty sure the file count is the same in both installations
Sorry I didn’t make it clear enough so you didn’t understand. The core files only get scanned (and so only show up in the numbers) if they have been modified*. This would explain why some core files are showing up as potentially ‘malicious’ and why the numbers of files scanned changes. It’s the simplest explanation which is why I think it’s correct.
Are you 100% sure there are no “Modified core file” entries under Warnings?
* Modified meaning the md5 doesn’t match the known one hardcoded into the plugin. So it could also mean the file is from a different version of WP than given by $wp_version, or the plugin hasn’t been updated.
Forum: Plugins
In reply to: Getting different results from Exploit Scanner in two websitesIt sounds like the one with extra results has differences to the WordPress core files. This would explain why some core files are being matched as having ‘severe’ problems and why extra files are being scanned.
Are you sure you copied over wp-admin/wp-includes with the correct version of WordPress? Have you checked the “See what has been modified” link for one of the modified core files?
Forum: Alpha/Beta/RC
In reply to: jQuery UI no longer working in WP 3.3 beta 4Works for me in a quick test.
Could you give some more context to your enqueue code? What hook your function is running on when it calls
wp_enqueue_script, etc. Maybe a link to a pastebin site.Forum: Alpha/Beta/RC
In reply to: turn off Allow comments not working on edit post pageI think this is fixed in current trunk, but was present in beta 4. See http://core.trac.wordpress.org/ticket/13473 and http://core.trac.wordpress.org/ticket/19349.
Forum: Alpha/Beta/RC
In reply to: Edit Image Dialogue/Media Uploader Not Appearing (Chrome)All plugins disabled.
Did you also switch to the default theme (Twenty Eleven)?
And IE gives the following: Error: ‘html() is null or not an object.
Could you get a file and line number for that? Check Chrome web inspector console (F12) too; it might give a better message.
WordPress Importer (unlike other plugins) bugs can be reported on http://core.trac.wordpress.org/ under the Import component.
Forum: Alpha/Beta/RC
In reply to: More Fields (2.1) incompatible with v3.3 beta3Thank you for your report. Trac ticket #19230 has been opened in response and is currently marked as a blocker for the release of 3.3.
Forum: Alpha/Beta/RC
In reply to: Edit Image Dialogue/Media Uploader Not Appearing (Chrome)Have you tried flushing your browser’s cache, restarting it and retrying? Preferences > Under the Hood > Clear browsing data in Chrome.
X-ref to similar report from an Opera user which fixed itself after a browser restart.
Forum: Alpha/Beta/RC
In reply to: Get_currentuserinfo alternative in 3.3 beta 3?Thanks for the report. I have created a ticket for this to be fixed before the final release of 3.3 at http://core.trac.wordpress.org/ticket/19265.
However, as suggested by the two other replies you should update your code use roles and capabilities rather than user levels as that is the correct method for determining privileges.
Forum: Alpha/Beta/RC
In reply to: Still Getting Verbose Page RulesThe use_verbose_page_rules property of WP_Rewrite will still be set to true, but WordPress will not create several rewrite rules specific to each page any more. I’m not familiar with the AskApache RewriteRules Viewer plugin, but you should be able to see the full set of rewrite rules and you will notice that they do not contain things like:
(sample-page)(/[0-9]+)?/?$ => index.php?pagename=$matches[1]&page=$matches[2]
but instead uses a catchall to map to the
pagenamequery var.