Česlav Przywara
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Image Widget] What's new in 4.4.0?Thanks Brady! I guess this the reason.
@mahieddineakeo Please, do not hijack the thread – if you want to report a different problem, create a new thread for that. Make it easier for devs to find and fix problems with the plugin 😉
@storm10 Try to deactivate the plugin (as explained here): https://www.tipsandtricks-hq.com/deactivate-wordpress-plugins-without-logging-into-wp-admin-video-tutorial-4375
I checked your site and the following rule from ACSF ruleset is probably causing your problems (it blocks all forum pages that are served via
forumdisplay.php):RedirectMatch 403 display\.
If you can edit your
.htaccess, try to comment out the line with this rule and see if it helps. However, be aware that as soon as you re-save AIOWPSF firewall settings, your change will be lost.Better solution would be to disable ACSF and paste all ACSF rules but this one into Custom Rules, but Custom Rules have an issue with backslashes in the moment…
Hi,
What do you mean by “can’t access”? Is every page of the forum being blocked, including the homepage at forum.xxxxxx.com? Can you include an example of (real) URL being blocked? There has to be some part in it that triggers block rule from Advanced Character String Filter.
Anyway, Advanced Character String Filter should not prevent anyone from accessing your WordPress login page, so there should be no corellation between ACSF being disabled and increased number of lockouts. In other words, even if you have ACSF enabled, you should get the same number of lockouts.
Cheers,
ČeslavForum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Crawler spam prevention?Hi,
Try to add the following snippet to Custom Rules under Firewall menu:
# Block referral spam <IfModule mod_rewrite.c> RewriteCond %{HTTP_REFERER} (keywords-monitoring-your-success.com|free-video-tool.com) [NC] RewriteRule .* - [F] </IfModule>If you need to block more domains, just add them to the list, but do not forget to separate them with “|” and include them within round brackets.
Warning: if you add “spam.com” to the list, any domain that has “spam.com” in it will be blocked, for example: “how-to-prevent-spam.com” etc. I suggest to avoid adding too generic domain names to the list.
Cheers,
ČeslavForum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] 6G firewall@mountainguy2 I’m not sure what you’re aiming at with your comment? Are you asking for help? If G5/G6 firewall rules are too strict for you, just turn them off. If you’d like to keep them active and only remove bits that cause issues on your website, then you have to let us know at least some URLs that are blocked by the rules.
Forum: Plugins
In reply to: [Polylang] language switcher does not point to correct urlHi,
Does the same problem occur, if you switch to default theme (Twenty Sixteen for example)?
Cheers,
ČeslavForum: Plugins
In reply to: [Polylang] Redirect to wrong specific post or frontpageHi,
If you want to erase all Polylang related data when unistalling it, make sure you have the option “Remove all Polylang data when using the “Delete” link on the plugins screen” checked in Settings > Languages > Settings > Tools.
If you still have the issue after re-install, try to reproduce it with default theme (like Twenty Sixteen) and all other plugins deactivated. Often the problem is caused by another theme/plugin incompability.
Cheers,
ČeslavForum: Plugins
In reply to: [Polylang] Language switch back while opening a new pageHi,
What theme are you using? Does the problem occur if you switch to default theme (like twentysixteen)? Does the problem occur if you disable all other plugins?
Cheers,
ČeslavForum: Plugins
In reply to: [Polylang] flags not siplaying in header.phpAlso, you might be interested in other parameters of pll_the_languages function. Note that if paramater is not explicitly specified, the default value is applied. Because
'show_flags'has default value 0 (ie. false), you have to explicitly specify it, if you want to have flags displayed by the function.Forum: Plugins
In reply to: [Polylang] flags not siplaying in header.phpHi,
You might need to add
'show_flags'parameter to your code:<?php pll_the_languages(array('show_flags' => 1)); ?>Cheers,
ČeslavForum: Plugins
In reply to: [Polylang] How to change posts set to a wrong default language?Hi,
Your best option is to bulk-edit all the posts that you have in wrong language and fix their language.
Cheers,
ČeslavForum: Plugins
In reply to: [Polylang] Remove subfolder for default languageHi,
Go to plugin settings, open “URL modifications” tab and activate “Hide URL language information for default language” checkbox.
Cheers,
ČeslavHi,
Any content between “
# BEGIN WordPress” and “# END WordPress” in .htaccess file is maintained by WordPress core, so the changes you are experiencing are caused by WordPress itself, not by the plugin!You should add your custom rules outside this block. Given that you want force SSL on your site, then I would recommend to put them above “
# BEGIN WordPress” line.Cheers,
Česlav