Kirr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New unauthorized admin accounts created in backend dailyHi @egoruk
Just to share some humble experience.
Some days ago I’ve experienced something similar on my site.
I used disable_password_reset snippet from this advice https://www.isitwp.com/disable-the-allow_password_reset-feature/ to disable password reset feature (I didn’t use second ‘cosmetic’ snippet to hide text).
Additionally I used WPS Hide Login plugin https://www.ads-software.com/plugins/wps-hide-login/ to change login page URL into something random.
Since that the ubnormal login activity seems to be stopped.Forum: Plugins
In reply to: [WP Shortcode Highlighter] Kills the national symbolsWell… I’ve managed this.
(warning: I’m not a php dev!)The culprit was following line in
wp-shortcode-highlighter.php
:
$dom->loadHTML('<div>' . utf8_decode(stripslashes($data['post_content'])) . '</div>');
utf8_decode
function converts text into Latin-1 encoding.To avoid the using of utf8_decode I patch the code with snippet from here: https://stackoverflow.com/questions/8218230/php-domdocument-loadhtml-not-encoding-utf-8-correctly/8218649#8218649
$dom->loadHTML('<?xml encoding="utf-8" ?>' . '<div>' . stripslashes($data['post_content']) . '</div>');
I’m not sure about reliability of this solution but it works for me now.
- This reply was modified 6 years, 8 months ago by Kirr.
Forum: Plugins
In reply to: [Div Shortcode] Class for created divsI’ve just slightly tweaked plugin’s php for myself with this:
$return = '<div class="div-shortcode '; if ( !empty( $atts['class'] ) ) $return .= esc_attr( $atts['class'] ); $return .= '"';
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] is it possible to work in siteOrigin editorThis is an issue with buttons not showing up in the editor bar, correct?
The HTML Editor Syntax Highlighter doesn’t appear at all in code editor inside “SiteOrigin editor” widget.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] is it possible to work in siteOrigin editorI’m looking for this too.
Are there any news?Forum: Plugins
In reply to: [Plugin Manager] suggest filter to exclude, alsoDouble it!
Additionally an option to show plugins which are not in any group would be very handy.
Forum: Plugins
In reply to: [Plugin Manager] My experience share =)Hi sujin2f!
Err… I didn’t understand you. (( My post here isn’t about problem. It is just an experience share. =)
Maybe your reply is concerning that my report? https://www.ads-software.com/support/topic/plugins-which-have-updates-arent-displaying-in-group
Forum: Plugins
In reply to: [Plugin Manager] Plugins which have updates aren't displaying in groupUPD:
Seems like non-displaying of plugins with updates is not a stable behaviour.Forum: Plugins
In reply to: [Plugin Manager] Error when activating the pluginUpdate to version 3.0.3 fixed the bug.
Thank you!Forum: Plugins
In reply to: [Plugin Manager] Error when activating the pluginWell… =)
I changed
$plugins_ =[];
to old fashioned
$plugins_ = array();
in that line 295 and it began to work! ??Forum: Plugins
In reply to: [Plugin Manager] Error when activating the pluginSeem like the culprit is a pretty old PHP on my hosting which doesn’t support the short syntax for arrays.
The problem is that I hardly can enforce my hoster to upgrade PHP in the near future. And there is fact that I have over 30 plugins on my WP and they don’t suffer from that error. So I hope there can be an update for the plugin to make it work on old PHPs. =)
Forum: Plugins
In reply to: [Plugin Manager] Error when activating the pluginJust updated plugin to new version 3.0.2.
Things became slightly different though still with no luck. =(
I’ve got this when activating the plugin:
——-
Plugin could not be activated because it triggered a fatal error.Parse error: syntax error, unexpected ‘[‘ in /…SKIP…/wp-content/plugins/plugin-grouper/classes/Group.php on line 295
——-Forum: Plugins
In reply to: [Plugin Manager] Error when activating the pluginUPD:
PHP version is 5.3.29Forum: Reviews
In reply to: [Menubar] Looks very coolOops… What a shame… I tried all templates except these. ??
Thank you for your help!Forum: Reviews
In reply to: [Easy Wysiwyg Style] Works well!