Beej
Forum Replies Created
-
This plugin doesn’t add code. Must be another plugin that’s filtering object tags.
Forum: Plugins
In reply to: [Preserved HTML Editor Markup] Broken Shortcodes (WP 3.8)That’s not this plugin. Looks like the default behavior of the editor.
Forum: Plugins
In reply to: [Preserved HTML Editor Markup] IE10 and WordPress 3.9.1 Visual Editor ProblemYou can edit line 72 of the admin.js file to be:
if (tinymce.isIE && tinymce.addUnload) {But, this plugin has at least a couple of other bugs, the most important probably being that it can’t handle extra whitespace inside HTML tags.
Forum: Fixing WordPress
In reply to: wp-auth-check runs every 15 secondsNo, not a cron. Have only six of those. Half are once a day, and half are twice a day.
Also noticed this happening on /wp-admin/post.php and /wp-admin/post-new.php.
Forum: Plugins
In reply to: [Plugin Organizer] Plugins not disabled on admin pageI needed to have Ignore URL Arguments enabled.
This is a bit confusing because if a URL can affect its children, its query string should be dropped for comparison, but it’s not.
Also, when Ignore URL Arguments is disabled, the query vars are not checked individually, they are only checked as a string, exactly as they appear in the request. So, currently, http://www.my-site.com/wp-admin/post.php?action=edit (to filter all posts being edited) would never work, since the WP address never appears that way.
Forum: Plugins
In reply to: [WP-DBManager] Scheduling does not work any moreI’m having the same trouble. Manual backup works fine. Does not run automatically.
This is a bug in the regex in the plugin file on line 79:
/<meta property="og:description" content="(.*)">/It’s missing the trailing meta slash. It should be:
/<meta property="og:description" content="(.*)"\/>/The “Download File” link appears when MediaElement.js is not able to locate a suitable player.
The default player in IE9 should be the native HTML5 player.
I’m having trouble with MediaElement.js in IE9 also. I’m using large mp3 files. Nothing plays, except Flash, after a few hacks. And then, it doesn’t play until the whole audio file is loaded.
Forum: Fixing WordPress
In reply to: Unable to PostModSecurity for Apache checks posts for, among other things, SQL injection.
In my case, having the word “selection” in a post, followed much later by the word “from”, must have looked like SQL to mod_security. I got the “Forbidden” error for posts.php.
Apparently, my server’s installation of mod_security was compiled with the -DDISABLE_HTACCESS_CONFIG switch, so I could disable the checking of posts in a .htaccess file in the wp-admin directory with:
SecFilterScanPOST Off