DrDaveHPP
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Auto-update has installed nightly build instead of WP3.9.1Nope – turned out there was a problem with the en-GB translation. They had to pull the download file and rebuild it correctly (which they’ve now done). After that it’s simply a matter of editing the version number in /wp-includes/version.php and then updating from within the WP admin panel.
Edit: see discussion here – http://ww.wp.xz.cn/support/topic/accidentally-upgraded-to-40-alpha
Forum: Fixing WordPress
In reply to: permalinks exclusion using .htaccess mod_rewriteI’m getting the same problem – did you ever find out a solution? If so, I’m sure you’d make a lot of people very happy if you shared it with us.
The infuriating thing is that I’ve got another domain on the same server where it all works fine – and I can’t work out where the difference lies.
Forum: Fixing WordPress
In reply to: HTML editor corrupts JavascriptSorted it with a tweak to the /wp-includes/formatting.php file.
Adjust the end of existing Line 61:
... } elseif (strpos($curl, '<code') !== false || strpos($curl, '<kbd') !== false || strpos($curl, '<style') !== false || strpos($curl, '<script') !== false) {so that it ends:
... || strpos($curl, '<script') !== false || strpos($curl, 'ript>') !== false || strpos($curl, '//') !== false) {Other similar tweaks would no doubt cure other similar problems with overzealous reformatting.
Forum: Fixing WordPress
In reply to: HTML editor corrupts JavascriptSorry, the last line but one didn’t come out as I intended – I intended to emphasise the character between the two “strong” tags, which gets rendered as & 8 2 1 6 ;
Forum: Fixing WordPress
In reply to: Incoming Links Is Buggy?Just what I needed. Thanks, Brad/jeffr0!