VolkerHarz
Forum Replies Created
-
The default ban list can of course stay activated.
The solution is, to simply add a User-Agent to the header of the call.Commenting out the line and leaving the default-ban list activated won’t work as it will be overwritten again by iThemes.
+++++ To prevent any confusion, neither am I iThemes +++++ ??
Hi @nlpro you’re awesome! Thank you!
Most likely the API Calls HTTP_USER_AGENT is empty which triggers the RewriteRule.(RewriteCond %{HTTP_USER_AGENT} “^$” [NC,OR]).
Totally makes sense now. Thanks.
Edit: Seems i have to a deactive the default ban list as ithemes keeps overwriting .htaccess.
- This reply was modified 2 years ago by VolkerHarz.
- This reply was modified 2 years ago by VolkerHarz.
I made some more tests and I’ve noticed that the issue is only on elementor popups.
On the regular pages it works fine.Forum: Fixing WordPress
In reply to: Registration fields prefilled with URL parametersThanks t-p. But I’m trying to pass the parameters to a wordpress registration form not a cf7 form. In that link they used a cf7 form as an example to fill out forms with JS by selecting the input ID.
Btw, here is another method I tried (without luck):
<script type="text/javascript"> var query = window.location.search.substring(1); //alert(query); var paramList = query.split('&'); for (var i=0; i < paramList.length; i++) { var param = paramList[i].split('='); //alert (param[0] + ' - ' + param[1]); //change this to name of your URL variable if(param[0] == 'email') { //change this to ID of target element var element = document.getElementById('user_email'); if (element) { for (var j=0; j < element.options.length; j++) { //alert('option ' + j + "; " + element.options[j].text); if (element.options[j].text == decodeURIComponent(param[1]) { //alert(element.options[j].text); element.options[j].selected = true; break; } } } } } </script>
- This reply was modified 2 years, 2 months ago by VolkerHarz. Reason: added source
Wait, you are suggesting to deactivate and delete the plugin??
How will I be able to clean up the categories issue when the plugin is deactivated and deleted? It leaves the database stuffed with 5000 catagories… and I need to find an alternative solution to check order value per user role.Ok got it… incompatible with the “invisible recaptcha”-plugin.
Quick and dirty solution is additionally installing “Theme My Login”-plugin. Then the login works fine again. But either switching to another recaptcha plugin or making UAM support “invisible recaptcha” would be preferred from my side.
Forum: Plugins
In reply to: [WP Post to PDF Enhanced] Auto generate new PDF whenever content is updatedHey Lewis, thanks for the reply and tip for workaround.
Currently I “Save and reset pdf cache” but a button in the editor would be awesome!! Keep up the great work! thx…Forum: Plugins
In reply to: [Immocaster Wordpress Plugin] Probleme mit Javascript“Javascript ist definitiv eingeschaltet.”
ist bei mir auch der fall und bekomme auch die Fehlermeldung.Forum: Reviews
In reply to: [Recommend to a friend] Bad formatting of widget titlehe has updated. have u tried it again?
Forum: Plugins
In reply to: [YOP Poll] %POLL-ANSWER-RESULT-VOTES% not showing upHi YourOwnProgrammer, shame on me… thanks! works very perfectly!
Great Plugin!
the plugin site is offline ?? I cannot update
If you install ” facebook-comments-for-wordpress” plugin you have to look for “facebook-comments-display.php” and remove text “Comments Closed”
Forum: Plugins
In reply to: Simple plugin to auto post to Google ?bump!
Forum: Plugins
In reply to: [Visitor Maps and Who's Online] Error when updating other pluginssolved the problem by following these instructions from here https://www.ads-software.com/support/topic/plugin-upgrade-failing-cannot-remove-old-plugin?replies=25#post-1303436
1. Make sure your wp-config.php file is chmodded to 0644.
2. Also make sure your .htaccess file is protecting the wp-config file using these lines:
<Files wp-config.php>
order allow,deny
deny from all
</Files>3. Backup your wp-config.php file.
4. Edit your wp-config.php file putting these lines in underneath <?php:
define(‘FS_METHOD’, ‘ftpsockets’);
define(‘FTP_BASE’, ‘/path/to/wordpress/’);
define(‘FTP_CONTENT_DIR’, ‘/path/to/wordpress/wp-content/’);
define(‘FTP_PLUGIN_DIR ‘, ‘/path/to/wordpress/wp-content/plugins/’);
define(‘FTP_USER’, ‘username’);
define(‘FTP_PASS’, ‘password’);
define(‘FTP_HOST’, ‘ftp.example.org’);————
I had to enter full path like this
define(‘FTP_BASE’, ‘/var/www/vhosts/MYWEBSITE/httpdocs/’);
define(‘FTP_CONTENT_DIR’, ‘/var/www/vhosts/MYWEBSITE/httpdocs/wp-content/’);
define(‘FTP_PLUGIN_DIR ‘, ‘/var/www/vhosts/MYWEBSITE/httpdocs/wp-content/plugins/’);works again also with visitor-maps active!
Forum: Plugins
In reply to: [Visitor Maps and Who's Online] Error when updating other pluginsPush! Same problem here. really getting on my nerves…