Mark Winiarski
Forum Replies Created
-
Hi,
I was able to find the solution. As I mentioned, I was using REST API using Application Password, and WordFence by default have enabled option to block using Application Passwords in Brute Force Protection section. Disabling this option solve my issue.Thanks for your help, have a good day!
Hi,
thank you for your help. I sent the diagnostics as suggested.Thank you.
Mark.Hi,
thank you for feedback and proposition, unfortunately it is not working for me. If I set this like you proposed, or set no limit, or even disable whole Rate Limiting still have the same result.Case is, that no matter how I set up WordFence I have this issue. Even if I disable all features that I can disable, the issue is still there, but if I disable WordFence as a plugin, all issues are gone and everything is working like it should.
I didn’t have anything like this before, and completely not understand this, as when I will disable all features WordFence have, this should have similar effect to disabling plugin, right?
It is a standard WordPress REST API endpoint. Nothing special about that. I authenticate it by capability and application password. Capability and role are custom one.
The issue occurs not only for me, but for the few of our clients, where the pattern is the same. No matter how they configure, WordFence request is blocked. If they temporarily disable WordFence, the API is working.
Thanks again for your help,
Mark.Hi,
yes, we tried that. This is the image of log in Live Traffic:
https://a.tmp.ninja/lmlNWAVO.pngForum: Plugins
In reply to: [Social Sharing Plugin - Kiwi] Facebook Scrap after migration to httpsHi,
I made a little investigation with my server provider. Scraping failed because there was a connection timeout. Unfortunately, this timeout was caused by your plugin. My page was loading 22 seconds. When I changed Kiwi to Sassy Social Share loading time was reduced to 6 seconds.I’m not sure why loading time was so long.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] ModulesHi,
you can download those add-ons (and much more) from GitHub:
https://github.com/simpliko/wpadverts-snippets
At the end of the list, you have search-by-category and search-by-price.You can save the whole directory in wp-content / plugins and use as a new plugin. Another option is to remove plugin header from the file and copy the code to functions.php.
Hi,
WPAdverts have 3 step adding system:
1) Creating: You have form and you can create your ad
2) Preview: You can check how your ad will be visible
3) Save: Ad is actually saved.Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Uploading image not working on mobile phoneHi,
do you have this issue each time you upload the file? Also if this is happening only on mobile?Please note, that there are several factors that upload speed depends on:
– Your internet connection speed (Wi-Fi signal strength, mobile phone signal strength, actual upload speed for your network, even weather conditions can slow down your wireless connection).
– Our server efficiency – many users can test their own demo at once, so we can allow one user to use all server transfer.
– Random connection issues – sometimes every server and internet provider can have a bad day with some kind of issues when all network work slower.We can only tell, that we do not receive this kind of bug reports for our customers. Also, the plugin is for free, so you can check it on your actual server.
Hope that helps.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Future Development RequestsHi,
thank you for your propositions. We definitely consider them.Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Urgent problem with pluginHi,
please try to refresh your permalinks. To do this:
1) Go to: wp-admin -> Settings -> Permalinks
2) Click “Save”.In most cases this help with redirect issues.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] optional adverts_emailHi,
I understand the first part. You want to have optional email field, and you achieved it using custom fields. But I do not understand the second issue. Could you help me to understand what you trying to achieve?Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Image SizeHi,
you can always use @media screen param for your CSS to change width for mobiles:/*-------------------------------------------------------------- 2.1 - MAXIMUM width of 720 pixels (phones landscape) --------------------------------------------------------------*/ @media screen and (max-width: 720px) { }/* don't delete this closing bracket */ /*-------------------------------------------------------------- 2.2 - MAXIMUM width of 350 pixels (phones portrait) --------------------------------------------------------------*/ @media screen and (max-width: 350px) { }/* don't delete this closing bracket */ /*-------------------------------------------------------------- 2.3 - MINIMUM width of 721 pixels (tablets+) --------------------------------------------------------------*/ @media screen and (min-width: 721px) { }/* don't delete this closing bracket */ /*-------------------------------------------------------------- 2.4 - MINIMUM width of 1040 pixels (desktops and laptops) --------------------------------------------------------------*/ @media screen and (min-width: 1040px) { }/* don't delete this closing bracket */ /*-------------------------------------------------------------- 2.5 - MINIMUM width of 1540 pixels (desktops and laptops) --------------------------------------------------------------*/ @media screen and (min-width: 1540px) { }/* don't delete this closing bracket */
Also, you can try to use this code:
width: 100%; max-widths: 1100px; box-sizing: border-box;
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Redirect to Login PageHi,
this code should do the trick:add_filter("adverts_action_", "adverts_action_block"); add_filter("adverts_action_preview", "adverts_action_block"); add_filter("adverts_action_save", "adverts_action_block"); function adverts_action_block($content) { if(!get_current_user_id()) { wp_enqueue_style( 'adverts-frontend' ); wp_enqueue_style( 'adverts-icons' ); ob_start(); $permalink = get_permalink(); $message = __('Only logged in users can access this page. <a href="%1$s">Login</a> or <a href="%2$s">Register</a>.', "adverts"); $parsed = sprintf($message, wp_login_url( $permalink ), wp_registration_url( $permalink ) ); adverts_flash( array( "error" => array( $parsed ) ) ); $content = ob_get_clean(); } return $content; }
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Maps not showingHi,
unfortunately, Greg is on vacation till 2.06. This is maybe downloading or license bug, but only Greg has access to licenses, so we can’t help you without him. Please contact us on 2.06 and he will help you.My apologies for the inconvenience. Also, thank you for your patience.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Reorganize category listHi,
I’m afraid that is not possible right now. We maybe include this feature in one of the next versions.