dries863
Forum Replies Created
-
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?Thanks :+1:
Hi Taco,
The bug is fixed for a while now. But it took you guys very very long…
Cheers,
Koen
Forum: Plugins
In reply to: [wpMandrill] PHP 7 Errors: safe_mode, set_magic_quotes_runtimeThis fixes it (change code from line 543-551):
if ( version_compare(PHP_VERSION, '5.3.0', '<') ) { $magic_quotes = get_magic_quotes_runtime(); set_magic_quotes_runtime(0); } $file_buffer = file_get_contents($path); $file_buffer = chunk_split(base64_encode($file_buffer), 76, "\n"); if ( version_compare(PHP_VERSION, '5.3.0', '<') ) set_magic_quotes_runtime($magic_quotes);
I guess the version check in the if did not work properly, so I changed that.
Forum: Plugins
In reply to: [wpMandrill] PHP 7 Errors: safe_mode, set_magic_quotes_runtimeI’ve got the same error. Please update this plugin.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?My fix didn’t work in the end…
I tried @imjusti’s solution. But where did you remove the “wp_enqueue_script ( ‘jquery-ui-datepicker’);”. I can’t find the jquery-ui-datepicker in the plugin code…
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?I did some debugging. This is only happening when the Toolset Types plugin is enabled. Do you have the Types plugin enable too imjusti?
I’ll try to debug the collision some more, but I’m not if I’m skilled enough for that ??
edit: I’ve made a dirty fix if(typeof(x) !=== “undefined”) and it works again.
Can you please install the Types plugin and add a fix for the next release? Thanks ??
- This reply was modified 8 years ago by dries863.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?The newest chrome. I tested it on multiple pc’s.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?More people having this problem?
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Not compatible with WordPress 4.6?I get this error: hesh.min.js?ver=1.7.2:2 Uncaught TypeError: Cannot read property ‘switchto’ of undefined
I get it when I switch from “Visual” to “Text”. When “Text” is open and I refresh it works. However when I switch, it breaks again.
Thx for your quick reply!
For now I’ve added this code to my own style sheet:
.no-ext-icon .wpel-icon{ display: none; }
However I think this should be fixed server side.
V2 also ads external icons to the admin bar. Can you please remove them?
Thanks for fixing it!
Now I know what is happening. It seems like that your plugin crashes when there is a “&” in the anchor text.
Can you test if this also happens in your environment?
I now see that the plugin is returning a warning:
[Mon Jun 06 17:23:46 2016] [error] [client 192.168.178.25] PHP Warning: FWP_DOM_Element_1x0x0::setContent(): unterminated entity reference Preise \xc2\xbb in /var/www/wordpress/wp-content/plugins/wp-external-links/libs/fwp/class-fwp-dom-element.php on line 60
I” try to dig deeper into this.